@seamapi/types 1.600.0 → 1.602.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 +88 -22
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +493 -77
- package/dist/index.cjs +88 -22
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +30 -0
- package/lib/seam/connect/models/action-attempts/encode-credential.d.ts +15 -0
- package/lib/seam/connect/models/action-attempts/encode-credential.js +11 -0
- package/lib/seam/connect/models/action-attempts/encode-credential.js.map +1 -1
- package/lib/seam/connect/models/action-attempts/scan-credential.d.ts +15 -0
- package/lib/seam/connect/models/action-attempts/scan-credential.js +11 -0
- package/lib/seam/connect/models/action-attempts/scan-credential.js.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +174 -35
- package/lib/seam/connect/models/devices/device-metadata.d.ts +5 -0
- package/lib/seam/connect/models/devices/device-metadata.js +3 -2
- package/lib/seam/connect/models/devices/device-metadata.js.map +1 -1
- package/lib/seam/connect/models/devices/device-type.d.ts +1 -0
- package/lib/seam/connect/models/devices/device-type.js +1 -0
- package/lib/seam/connect/models/devices/device-type.js.map +1 -1
- package/lib/seam/connect/models/devices/device.d.ts +10 -3
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +8 -3
- package/lib/seam/connect/openapi.d.ts +4 -0
- package/lib/seam/connect/openapi.js +53 -3
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +375 -61
- package/package.json +1 -1
- package/src/lib/seam/connect/models/action-attempts/encode-credential.ts +14 -0
- package/src/lib/seam/connect/models/action-attempts/scan-credential.ts +14 -0
- package/src/lib/seam/connect/models/devices/device-metadata.ts +4 -2
- package/src/lib/seam/connect/models/devices/device-type.ts +1 -0
- package/src/lib/seam/connect/openapi.ts +59 -3
- package/src/lib/seam/connect/route-types.ts +431 -34
|
@@ -1624,6 +1624,15 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
1624
1624
|
}, {
|
|
1625
1625
|
message: string;
|
|
1626
1626
|
type: "no_credential_on_encoder";
|
|
1627
|
+
}>, z.ZodObject<{
|
|
1628
|
+
type: z.ZodLiteral<"no_card_on_encoder">;
|
|
1629
|
+
message: z.ZodString;
|
|
1630
|
+
}, "strip", z.ZodTypeAny, {
|
|
1631
|
+
message: string;
|
|
1632
|
+
type: "no_card_on_encoder";
|
|
1633
|
+
}, {
|
|
1634
|
+
message: string;
|
|
1635
|
+
type: "no_card_on_encoder";
|
|
1627
1636
|
}>]>;
|
|
1628
1637
|
}, "strip", z.ZodTypeAny, {
|
|
1629
1638
|
status: "error";
|
|
@@ -1637,6 +1646,9 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
1637
1646
|
} | {
|
|
1638
1647
|
message: string;
|
|
1639
1648
|
type: "no_credential_on_encoder";
|
|
1649
|
+
} | {
|
|
1650
|
+
message: string;
|
|
1651
|
+
type: "no_card_on_encoder";
|
|
1640
1652
|
};
|
|
1641
1653
|
result: null;
|
|
1642
1654
|
action_type: "SCAN_CREDENTIAL";
|
|
@@ -1652,6 +1664,9 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
1652
1664
|
} | {
|
|
1653
1665
|
message: string;
|
|
1654
1666
|
type: "no_credential_on_encoder";
|
|
1667
|
+
} | {
|
|
1668
|
+
message: string;
|
|
1669
|
+
type: "no_card_on_encoder";
|
|
1655
1670
|
};
|
|
1656
1671
|
result: null;
|
|
1657
1672
|
action_type: "SCAN_CREDENTIAL";
|
|
@@ -2653,6 +2668,15 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
2653
2668
|
}, {
|
|
2654
2669
|
message: string;
|
|
2655
2670
|
type: "credential_cannot_be_reissued";
|
|
2671
|
+
}>, z.ZodObject<{
|
|
2672
|
+
type: z.ZodLiteral<"no_card_on_encoder">;
|
|
2673
|
+
message: z.ZodString;
|
|
2674
|
+
}, "strip", z.ZodTypeAny, {
|
|
2675
|
+
message: string;
|
|
2676
|
+
type: "no_card_on_encoder";
|
|
2677
|
+
}, {
|
|
2678
|
+
message: string;
|
|
2679
|
+
type: "no_card_on_encoder";
|
|
2656
2680
|
}>]>;
|
|
2657
2681
|
}, "strip", z.ZodTypeAny, {
|
|
2658
2682
|
status: "error";
|
|
@@ -2672,6 +2696,9 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
2672
2696
|
} | {
|
|
2673
2697
|
message: string;
|
|
2674
2698
|
type: "credential_cannot_be_reissued";
|
|
2699
|
+
} | {
|
|
2700
|
+
message: string;
|
|
2701
|
+
type: "no_card_on_encoder";
|
|
2675
2702
|
};
|
|
2676
2703
|
result: null;
|
|
2677
2704
|
action_type: "ENCODE_CREDENTIAL";
|
|
@@ -2693,6 +2720,9 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
2693
2720
|
} | {
|
|
2694
2721
|
message: string;
|
|
2695
2722
|
type: "credential_cannot_be_reissued";
|
|
2723
|
+
} | {
|
|
2724
|
+
message: string;
|
|
2725
|
+
type: "no_card_on_encoder";
|
|
2696
2726
|
};
|
|
2697
2727
|
result: null;
|
|
2698
2728
|
action_type: "ENCODE_CREDENTIAL";
|
|
@@ -997,6 +997,15 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
|
|
|
997
997
|
}, {
|
|
998
998
|
message: string;
|
|
999
999
|
type: "credential_cannot_be_reissued";
|
|
1000
|
+
}>, z.ZodObject<{
|
|
1001
|
+
type: z.ZodLiteral<"no_card_on_encoder">;
|
|
1002
|
+
message: z.ZodString;
|
|
1003
|
+
}, "strip", z.ZodTypeAny, {
|
|
1004
|
+
message: string;
|
|
1005
|
+
type: "no_card_on_encoder";
|
|
1006
|
+
}, {
|
|
1007
|
+
message: string;
|
|
1008
|
+
type: "no_card_on_encoder";
|
|
1000
1009
|
}>]>;
|
|
1001
1010
|
}, "strip", z.ZodTypeAny, {
|
|
1002
1011
|
status: "error";
|
|
@@ -1016,6 +1025,9 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
|
|
|
1016
1025
|
} | {
|
|
1017
1026
|
message: string;
|
|
1018
1027
|
type: "credential_cannot_be_reissued";
|
|
1028
|
+
} | {
|
|
1029
|
+
message: string;
|
|
1030
|
+
type: "no_card_on_encoder";
|
|
1019
1031
|
};
|
|
1020
1032
|
result: null;
|
|
1021
1033
|
action_type: "ENCODE_CREDENTIAL";
|
|
@@ -1037,6 +1049,9 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
|
|
|
1037
1049
|
} | {
|
|
1038
1050
|
message: string;
|
|
1039
1051
|
type: "credential_cannot_be_reissued";
|
|
1052
|
+
} | {
|
|
1053
|
+
message: string;
|
|
1054
|
+
type: "no_card_on_encoder";
|
|
1040
1055
|
};
|
|
1041
1056
|
result: null;
|
|
1042
1057
|
action_type: "ENCODE_CREDENTIAL";
|
|
@@ -34,11 +34,22 @@ const credential_cannot_be_reissued = z
|
|
|
34
34
|
.describe('Detailed description of the error. Provides insights into the issue and potentially how to rectify it.'),
|
|
35
35
|
})
|
|
36
36
|
.describe('Error to indicate that the affected credential cannot be reissued.');
|
|
37
|
+
const no_card_on_encoder_error = z
|
|
38
|
+
.object({
|
|
39
|
+
type: z
|
|
40
|
+
.literal('no_card_on_encoder')
|
|
41
|
+
.describe('Error type to indicate that there is no card on the encoder.'),
|
|
42
|
+
message: z
|
|
43
|
+
.string()
|
|
44
|
+
.describe('Detailed description of the error. Provides insights into the issue and potentially how to rectify it.'),
|
|
45
|
+
})
|
|
46
|
+
.describe('Error to indicate that there is no card on the encoder.');
|
|
37
47
|
const error = z.union([
|
|
38
48
|
...common_action_attempt_errors,
|
|
39
49
|
no_credential_on_encoder_error,
|
|
40
50
|
incompatible_card_format_error,
|
|
41
51
|
credential_cannot_be_reissued,
|
|
52
|
+
no_card_on_encoder_error,
|
|
42
53
|
]);
|
|
43
54
|
const result = acs_credential
|
|
44
55
|
.or(unmanaged_acs_credential)
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"encode-credential.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/action-attempts/encode-credential.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,OAAO,EACL,cAAc,EACd,wBAAwB,GACzB,MAAM,0BAA0B,CAAA;AACjC,OAAO,EACL,4BAA4B,EAC5B,4BAA4B,EAC5B,6BAA6B,EAC7B,+BAA+B,GAChC,MAAM,aAAa,CAAA;AAEpB,MAAM,WAAW,GAAG,CAAC;KAClB,OAAO,CAAC,mBAAmB,CAAC;KAC5B,QAAQ,CACP,uGAAuG,CACxG,CAAA;AAEH,MAAM,8BAA8B,GAAG,CAAC;KACrC,MAAM,CAAC;IACN,IAAI,EAAE,CAAC;SACJ,OAAO,CAAC,0BAA0B,CAAC;SACnC,QAAQ,CACP,oEAAoE,CACrE;IACH,OAAO,EAAE,CAAC;SACP,MAAM,EAAE;SACR,QAAQ,CACP,wGAAwG,CACzG;CACJ,CAAC;KACD,QAAQ,CAAC,+DAA+D,CAAC,CAAA;AAE5E,MAAM,8BAA8B,GAAG,CAAC;KACrC,MAAM,CAAC;IACN,IAAI,EAAE,CAAC;SACJ,OAAO,CAAC,0BAA0B,CAAC;SACnC,QAAQ,CAAC,qDAAqD,CAAC;IAClE,OAAO,EAAE,CAAC;SACP,MAAM,EAAE;SACR,QAAQ,CACP,wGAAwG,CACzG;CACJ,CAAC;KACD,QAAQ,CAAC,gDAAgD,CAAC,CAAA;AAE7D,MAAM,6BAA6B,GAAG,CAAC;KACpC,MAAM,CAAC;IACN,IAAI,EAAE,CAAC;SACJ,OAAO,CAAC,+BAA+B,CAAC;SACxC,QAAQ,CACP,yEAAyE,CAC1E;IACH,OAAO,EAAE,CAAC;SACP,MAAM,EAAE;SACR,QAAQ,CACP,wGAAwG,CACzG;CACJ,CAAC;KACD,QAAQ,CACP,oEAAoE,CACrE,CAAA;AAEH,MAAM,KAAK,GAAG,CAAC,CAAC,KAAK,CAAC;IACpB,GAAG,4BAA4B;IAC/B,8BAA8B;IAC9B,8BAA8B;IAC9B,6BAA6B;
|
|
1
|
+
{"version":3,"file":"encode-credential.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/action-attempts/encode-credential.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,OAAO,EACL,cAAc,EACd,wBAAwB,GACzB,MAAM,0BAA0B,CAAA;AACjC,OAAO,EACL,4BAA4B,EAC5B,4BAA4B,EAC5B,6BAA6B,EAC7B,+BAA+B,GAChC,MAAM,aAAa,CAAA;AAEpB,MAAM,WAAW,GAAG,CAAC;KAClB,OAAO,CAAC,mBAAmB,CAAC;KAC5B,QAAQ,CACP,uGAAuG,CACxG,CAAA;AAEH,MAAM,8BAA8B,GAAG,CAAC;KACrC,MAAM,CAAC;IACN,IAAI,EAAE,CAAC;SACJ,OAAO,CAAC,0BAA0B,CAAC;SACnC,QAAQ,CACP,oEAAoE,CACrE;IACH,OAAO,EAAE,CAAC;SACP,MAAM,EAAE;SACR,QAAQ,CACP,wGAAwG,CACzG;CACJ,CAAC;KACD,QAAQ,CAAC,+DAA+D,CAAC,CAAA;AAE5E,MAAM,8BAA8B,GAAG,CAAC;KACrC,MAAM,CAAC;IACN,IAAI,EAAE,CAAC;SACJ,OAAO,CAAC,0BAA0B,CAAC;SACnC,QAAQ,CAAC,qDAAqD,CAAC;IAClE,OAAO,EAAE,CAAC;SACP,MAAM,EAAE;SACR,QAAQ,CACP,wGAAwG,CACzG;CACJ,CAAC;KACD,QAAQ,CAAC,gDAAgD,CAAC,CAAA;AAE7D,MAAM,6BAA6B,GAAG,CAAC;KACpC,MAAM,CAAC;IACN,IAAI,EAAE,CAAC;SACJ,OAAO,CAAC,+BAA+B,CAAC;SACxC,QAAQ,CACP,yEAAyE,CAC1E;IACH,OAAO,EAAE,CAAC;SACP,MAAM,EAAE;SACR,QAAQ,CACP,wGAAwG,CACzG;CACJ,CAAC;KACD,QAAQ,CACP,oEAAoE,CACrE,CAAA;AAEH,MAAM,wBAAwB,GAAG,CAAC;KAC/B,MAAM,CAAC;IACN,IAAI,EAAE,CAAC;SACJ,OAAO,CAAC,oBAAoB,CAAC;SAC7B,QAAQ,CAAC,8DAA8D,CAAC;IAC3E,OAAO,EAAE,CAAC;SACP,MAAM,EAAE;SACR,QAAQ,CACP,wGAAwG,CACzG;CACJ,CAAC;KACD,QAAQ,CAAC,yDAAyD,CAAC,CAAA;AAEtE,MAAM,KAAK,GAAG,CAAC,CAAC,KAAK,CAAC;IACpB,GAAG,4BAA4B;IAC/B,8BAA8B;IAC9B,8BAA8B;IAC9B,6BAA6B;IAC7B,wBAAwB;CACzB,CAAC,CAAA;AAEF,MAAM,MAAM,GAAG,cAAc;KAC1B,EAAE,CAAC,wBAAwB,CAAC;KAC5B,QAAQ,CACP,4HAA4H,CAC7H,CAAA;AACH,MAAM,CAAC,MAAM,gCAAgC,GAAG,CAAC,CAAC,kBAAkB,CAAC,QAAQ,EAAE;IAC7E,6BAA6B;SAC1B,MAAM,CAAC;QACN,WAAW;KACZ,CAAC;SACD,QAAQ,CACP,4EAA4E,CAC7E;IACH,+BAA+B;SAC5B,MAAM,CAAC;QACN,WAAW;QACX,MAAM;KACP,CAAC;SACD,QAAQ,CACP,2EAA2E,CAC5E;IACH,4BAA4B;SACzB,MAAM,CAAC,EAAE,WAAW,EAAE,KAAK,EAAE,CAAC;SAC9B,QAAQ,CACP,wEAAwE,CACzE;CACJ,CAAC,CAAA"}
|
|
@@ -1474,6 +1474,15 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
1474
1474
|
}, {
|
|
1475
1475
|
message: string;
|
|
1476
1476
|
type: "no_credential_on_encoder";
|
|
1477
|
+
}>, z.ZodObject<{
|
|
1478
|
+
type: z.ZodLiteral<"no_card_on_encoder">;
|
|
1479
|
+
message: z.ZodString;
|
|
1480
|
+
}, "strip", z.ZodTypeAny, {
|
|
1481
|
+
message: string;
|
|
1482
|
+
type: "no_card_on_encoder";
|
|
1483
|
+
}, {
|
|
1484
|
+
message: string;
|
|
1485
|
+
type: "no_card_on_encoder";
|
|
1477
1486
|
}>]>;
|
|
1478
1487
|
}, "strip", z.ZodTypeAny, {
|
|
1479
1488
|
status: "error";
|
|
@@ -1487,6 +1496,9 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
1487
1496
|
} | {
|
|
1488
1497
|
message: string;
|
|
1489
1498
|
type: "no_credential_on_encoder";
|
|
1499
|
+
} | {
|
|
1500
|
+
message: string;
|
|
1501
|
+
type: "no_card_on_encoder";
|
|
1490
1502
|
};
|
|
1491
1503
|
result: null;
|
|
1492
1504
|
action_type: "SCAN_CREDENTIAL";
|
|
@@ -1502,6 +1514,9 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
1502
1514
|
} | {
|
|
1503
1515
|
message: string;
|
|
1504
1516
|
type: "no_credential_on_encoder";
|
|
1517
|
+
} | {
|
|
1518
|
+
message: string;
|
|
1519
|
+
type: "no_card_on_encoder";
|
|
1505
1520
|
};
|
|
1506
1521
|
result: null;
|
|
1507
1522
|
action_type: "SCAN_CREDENTIAL";
|
|
@@ -14,9 +14,20 @@ const no_credential_on_encoder_error = z
|
|
|
14
14
|
.describe('Detailed description of the error. Provides insights into the issue and potentially how to rectify it.'),
|
|
15
15
|
})
|
|
16
16
|
.describe('Error to indicate that there is no credential on the encoder.');
|
|
17
|
+
const no_card_on_encoder_error = z
|
|
18
|
+
.object({
|
|
19
|
+
type: z
|
|
20
|
+
.literal('no_card_on_encoder')
|
|
21
|
+
.describe('Error type to indicate that there is no card on the encoder.'),
|
|
22
|
+
message: z
|
|
23
|
+
.string()
|
|
24
|
+
.describe('Detailed description of the error. Provides insights into the issue and potentially how to rectify it.'),
|
|
25
|
+
})
|
|
26
|
+
.describe('Error to indicate that there is no card on the encoder.');
|
|
17
27
|
const error = z.union([
|
|
18
28
|
...common_action_attempt_errors,
|
|
19
29
|
no_credential_on_encoder_error,
|
|
30
|
+
no_card_on_encoder_error,
|
|
20
31
|
]);
|
|
21
32
|
const warning = z
|
|
22
33
|
.object({
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"scan-credential.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/action-attempts/scan-credential.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,OAAO,EACL,cAAc,EACd,yBAAyB,EACzB,wBAAwB,GACzB,MAAM,0BAA0B,CAAA;AACjC,OAAO,EACL,4BAA4B,EAC5B,4BAA4B,EAC5B,6BAA6B,EAC7B,+BAA+B,GAChC,MAAM,aAAa,CAAA;AAEpB,MAAM,WAAW,GAAG,CAAC;KAClB,OAAO,CAAC,iBAAiB,CAAC;KAC1B,QAAQ,CAAC,8DAA8D,CAAC,CAAA;AAE3E,MAAM,8BAA8B,GAAG,CAAC;KACrC,MAAM,CAAC;IACN,IAAI,EAAE,CAAC;SACJ,OAAO,CAAC,0BAA0B,CAAC;SACnC,QAAQ,CACP,oEAAoE,CACrE;IACH,OAAO,EAAE,CAAC;SACP,MAAM,EAAE;SACR,QAAQ,CACP,wGAAwG,CACzG;CACJ,CAAC;KACD,QAAQ,CAAC,+DAA+D,CAAC,CAAA;AAE5E,MAAM,KAAK,GAAG,CAAC,CAAC,KAAK,CAAC;IACpB,GAAG,4BAA4B;IAC/B,8BAA8B;
|
|
1
|
+
{"version":3,"file":"scan-credential.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/action-attempts/scan-credential.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,OAAO,EACL,cAAc,EACd,yBAAyB,EACzB,wBAAwB,GACzB,MAAM,0BAA0B,CAAA;AACjC,OAAO,EACL,4BAA4B,EAC5B,4BAA4B,EAC5B,6BAA6B,EAC7B,+BAA+B,GAChC,MAAM,aAAa,CAAA;AAEpB,MAAM,WAAW,GAAG,CAAC;KAClB,OAAO,CAAC,iBAAiB,CAAC;KAC1B,QAAQ,CAAC,8DAA8D,CAAC,CAAA;AAE3E,MAAM,8BAA8B,GAAG,CAAC;KACrC,MAAM,CAAC;IACN,IAAI,EAAE,CAAC;SACJ,OAAO,CAAC,0BAA0B,CAAC;SACnC,QAAQ,CACP,oEAAoE,CACrE;IACH,OAAO,EAAE,CAAC;SACP,MAAM,EAAE;SACR,QAAQ,CACP,wGAAwG,CACzG;CACJ,CAAC;KACD,QAAQ,CAAC,+DAA+D,CAAC,CAAA;AAE5E,MAAM,wBAAwB,GAAG,CAAC;KAC/B,MAAM,CAAC;IACN,IAAI,EAAE,CAAC;SACJ,OAAO,CAAC,oBAAoB,CAAC;SAC7B,QAAQ,CAAC,8DAA8D,CAAC;IAC3E,OAAO,EAAE,CAAC;SACP,MAAM,EAAE;SACR,QAAQ,CACP,wGAAwG,CACzG;CACJ,CAAC;KACD,QAAQ,CAAC,yDAAyD,CAAC,CAAA;AAEtE,MAAM,KAAK,GAAG,CAAC,CAAC,KAAK,CAAC;IACpB,GAAG,4BAA4B;IAC/B,8BAA8B;IAC9B,wBAAwB;CACzB,CAAC,CAAA;AAEF,MAAM,OAAO,GAAG,CAAC;KACd,MAAM,CAAC;IACN,YAAY,EAAE,CAAC;SACZ,KAAK,CAAC;QACL,CAAC,CAAC,OAAO,CAAC,uCAAuC,CAAC;QAClD,CAAC,CAAC,OAAO,CAAC,kCAAkC,CAAC;KAC9C,CAAC;SACD,QAAQ,CAAC,uDAAuD,CAAC;IACpE,eAAe,EAAE,CAAC;SACf,MAAM,EAAE;SACR,QAAQ,CACP,0GAA0G,CAC3G;CACJ,CAAC;KACD,QAAQ,CAAC,2CAA2C,CAAC,CAAA;AAExD,MAAM,sBAAsB,GAAG,cAAc,CAAC,EAAE,CAAC,wBAAwB,CAAC,CAAA;AAE1E,MAAM,MAAM,GAAG,CAAC;KACb,MAAM,CAAC;IACN,yBAAyB,EAAE,yBAAyB;SACjD,QAAQ,EAAE;SACV,QAAQ,CAAC,6DAA6D,CAAC;IAC1E,sBAAsB,EAAE,sBAAsB;SAC3C,QAAQ,EAAE;SACV,QAAQ,CACP,wEAAwE,CACzE;IACH,QAAQ,EAAE,CAAC;SACR,KAAK,CAAC,OAAO,CAAC;SACd,QAAQ,CACP,4LAA4L,CAC7L;CACJ,CAAC;KACD,QAAQ,CACP,4NAA4N,CAC7N,CAAA;AAEH,MAAM,CAAC,MAAM,8BAA8B,GAAG,CAAC,CAAC,kBAAkB,CAAC,QAAQ,EAAE;IAC3E,6BAA6B;SAC1B,MAAM,CAAC;QACN,WAAW;KACZ,CAAC;SACD,QAAQ,CAAC,+DAA+D,CAAC;IAC5E,+BAA+B;SAC5B,MAAM,CAAC;QACN,WAAW;QACX,MAAM;KACP,CAAC;SACD,QAAQ,CAAC,0DAA0D,CAAC;IACvE,4BAA4B;SACzB,MAAM,CAAC,EAAE,WAAW,EAAE,KAAK,EAAE,CAAC;SAC9B,QAAQ,CAAC,uDAAuD,CAAC;CACrE,CAAC,CAAA"}
|