@tmlmobilidade/go-types-apex 20260611.1527.25
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/index.d.ts +2 -0
- package/dist/index.js +2 -0
- package/dist/raw/banking-taps/banking-tap-v4-0.d.ts +669 -0
- package/dist/raw/banking-taps/banking-tap-v4-0.js +65 -0
- package/dist/raw/banking-taps/index.d.ts +1 -0
- package/dist/raw/banking-taps/index.js +1 -0
- package/dist/raw/index.d.ts +7 -0
- package/dist/raw/index.js +7 -0
- package/dist/raw/inspections/index.d.ts +2 -0
- package/dist/raw/inspections/index.js +2 -0
- package/dist/raw/inspections/inspection-decision-v2-0.d.ts +481 -0
- package/dist/raw/inspections/inspection-decision-v2-0.js +49 -0
- package/dist/raw/inspections/inspection-v2-0.d.ts +961 -0
- package/dist/raw/inspections/inspection-v2-0.js +89 -0
- package/dist/raw/locations/index.d.ts +1 -0
- package/dist/raw/locations/index.js +1 -0
- package/dist/raw/locations/location-v3-0.d.ts +645 -0
- package/dist/raw/locations/location-v3-0.js +63 -0
- package/dist/raw/raw-apex-transaction-base.d.ts +30 -0
- package/dist/raw/raw-apex-transaction-base.js +13 -0
- package/dist/raw/raw-apex-transaction.d.ts +3662 -0
- package/dist/raw/raw-apex-transaction.js +21 -0
- package/dist/raw/sales/index.d.ts +2 -0
- package/dist/raw/sales/index.js +2 -0
- package/dist/raw/sales/refund-v3-0.d.ts +769 -0
- package/dist/raw/sales/refund-v3-0.js +74 -0
- package/dist/raw/sales/sale-v3-0.d.ts +757 -0
- package/dist/raw/sales/sale-v3-0.js +73 -0
- package/dist/raw/validations/index.d.ts +2 -0
- package/dist/raw/validations/index.js +2 -0
- package/dist/raw/validations/validation-v2-0.d.ts +901 -0
- package/dist/raw/validations/validation-v2-0.js +85 -0
- package/dist/raw/validations/validation-v3-0.d.ts +901 -0
- package/dist/raw/validations/validation-v3-0.js +85 -0
- package/dist/simplified/any-simplified-apex.d.ts +8 -0
- package/dist/simplified/any-simplified-apex.js +2 -0
- package/dist/simplified/apex-validation-status.d.ts +145 -0
- package/dist/simplified/apex-validation-status.js +76 -0
- package/dist/simplified/index.d.ts +10 -0
- package/dist/simplified/index.js +10 -0
- package/dist/simplified/simplified-apex-banking-taps.d.ts +81 -0
- package/dist/simplified/simplified-apex-banking-taps.js +27 -0
- package/dist/simplified/simplified-apex-inspection-decision.d.ts +55 -0
- package/dist/simplified/simplified-apex-inspection-decision.js +18 -0
- package/dist/simplified/simplified-apex-inspection.d.ts +82 -0
- package/dist/simplified/simplified-apex-inspection.js +27 -0
- package/dist/simplified/simplified-apex-location.d.ts +112 -0
- package/dist/simplified/simplified-apex-location.js +20 -0
- package/dist/simplified/simplified-apex-on-board-refund.d.ts +172 -0
- package/dist/simplified/simplified-apex-on-board-refund.js +30 -0
- package/dist/simplified/simplified-apex-on-board-sale.d.ts +178 -0
- package/dist/simplified/simplified-apex-on-board-sale.js +31 -0
- package/dist/simplified/simplified-apex-type.d.ts +9 -0
- package/dist/simplified/simplified-apex-type.js +5 -0
- package/dist/simplified/simplified-apex-validation.d.ts +200 -0
- package/dist/simplified/simplified-apex-validation.js +41 -0
- package/package.json +49 -0
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { z } from 'zod';
|
|
2
|
+
export declare const RawApexTransactionBaseSchema: z.ZodObject<{
|
|
3
|
+
_id: z.ZodString;
|
|
4
|
+
agency_id: z.ZodString;
|
|
5
|
+
created_at: z.ZodEffects<z.ZodNumber, import("@tmlmobilidade/go-types-shared").UnixTimestamp, number>;
|
|
6
|
+
is_ok: z.ZodBoolean;
|
|
7
|
+
received_at: z.ZodEffects<z.ZodNumber, import("@tmlmobilidade/go-types-shared").UnixTimestamp, number>;
|
|
8
|
+
transaction_id: z.ZodString;
|
|
9
|
+
version: z.ZodString;
|
|
10
|
+
}, "strip", z.ZodTypeAny, {
|
|
11
|
+
_id: string;
|
|
12
|
+
agency_id: string;
|
|
13
|
+
created_at: number & {
|
|
14
|
+
__brand: "UnixTimestamp";
|
|
15
|
+
};
|
|
16
|
+
is_ok: boolean;
|
|
17
|
+
received_at: number & {
|
|
18
|
+
__brand: "UnixTimestamp";
|
|
19
|
+
};
|
|
20
|
+
transaction_id: string;
|
|
21
|
+
version: string;
|
|
22
|
+
}, {
|
|
23
|
+
_id: string;
|
|
24
|
+
agency_id: string;
|
|
25
|
+
created_at: number;
|
|
26
|
+
is_ok: boolean;
|
|
27
|
+
received_at: number;
|
|
28
|
+
transaction_id: string;
|
|
29
|
+
version: string;
|
|
30
|
+
}>;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/* * */
|
|
2
|
+
import { UnixTimestampSchema } from '@tmlmobilidade/go-types-shared';
|
|
3
|
+
import { z } from 'zod';
|
|
4
|
+
/* * */
|
|
5
|
+
export const RawApexTransactionBaseSchema = z.object({
|
|
6
|
+
_id: z.string(),
|
|
7
|
+
agency_id: z.string(),
|
|
8
|
+
created_at: UnixTimestampSchema,
|
|
9
|
+
is_ok: z.boolean(),
|
|
10
|
+
received_at: UnixTimestampSchema,
|
|
11
|
+
transaction_id: z.string(),
|
|
12
|
+
version: z.string(),
|
|
13
|
+
});
|