@dalmore/api-contracts 1.0.7 → 1.0.8

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.
Files changed (138) hide show
  1. package/README.md +18 -2
  2. package/index.mjs +1 -4
  3. package/package.json +4 -4
  4. package/src/common/types/account-contact.types.ts +98 -0
  5. package/src/common/types/account-detail.types.ts +27 -0
  6. package/src/common/types/account-integration.types.ts +143 -0
  7. package/src/common/types/account-manager.types.ts +124 -0
  8. package/src/common/types/account.types.ts +296 -0
  9. package/src/common/types/activity.types.ts +274 -0
  10. package/src/common/types/address.spec.ts +203 -0
  11. package/src/common/types/address.types.ts +41 -0
  12. package/src/common/types/aic.types.ts +246 -0
  13. package/src/common/types/aml.types.ts +18 -0
  14. package/src/common/types/api-key-logs.types.ts +66 -0
  15. package/src/common/types/api-keys.types.ts +69 -0
  16. package/src/common/types/asset.types.ts +338 -0
  17. package/src/common/types/auth.types.ts +370 -0
  18. package/src/common/types/batch-jobs.types.ts +151 -0
  19. package/src/common/types/bonus-tier.types.ts +147 -0
  20. package/src/common/types/cart.types.ts +18 -0
  21. package/src/common/types/checklist-items.types.ts +70 -0
  22. package/src/common/types/checklist.types.ts +97 -0
  23. package/src/common/types/common.types.spec.ts +336 -0
  24. package/src/common/types/common.types.ts +1520 -0
  25. package/src/common/types/comply-advantage-api.types.ts +316 -0
  26. package/src/common/types/comply-advantage.types.ts +25 -0
  27. package/src/common/types/contact-us.types.ts +107 -0
  28. package/src/common/types/contract-helpers.ts +205 -0
  29. package/src/common/types/countries.types.ts +375 -0
  30. package/src/common/types/covered-person.types.ts +274 -0
  31. package/src/common/types/dashboard.types.ts +799 -0
  32. package/src/common/types/data-record.types.ts +325 -0
  33. package/src/common/types/data-room.types.ts +242 -0
  34. package/src/common/types/default-theme-config.types.ts +87 -0
  35. package/src/common/types/disbursement-adjustment.types.ts +32 -0
  36. package/src/common/types/disbursement-approval-user.types.ts +100 -0
  37. package/src/common/types/disbursement-review.types.ts +110 -0
  38. package/src/common/types/disbursement-transaction.types.ts +72 -0
  39. package/src/common/types/disbursements.types.ts +310 -0
  40. package/src/common/types/domain-filter.types.ts +55 -0
  41. package/src/common/types/email-theme.types.ts +442 -0
  42. package/src/common/types/entity.types.ts +15 -0
  43. package/src/common/types/error-responses.types.ts +135 -0
  44. package/src/common/types/escrow-account.types.ts +104 -0
  45. package/src/common/types/exchange-api-key.types.ts +121 -0
  46. package/src/common/types/exchange-import.types.ts +36 -0
  47. package/src/common/types/exchange-provider.types.ts +329 -0
  48. package/src/common/types/file.types.ts +461 -0
  49. package/src/common/types/files.types.spec.ts +154 -0
  50. package/src/common/types/health.types.ts +29 -0
  51. package/src/common/types/index.ts +48 -0
  52. package/src/common/types/individuals.types.ts +554 -0
  53. package/src/common/types/investor-account.types.ts +1239 -0
  54. package/src/common/types/investorAccountIdSchema.type.ts +0 -0
  55. package/src/common/types/investors-offering.types.ts +65 -0
  56. package/src/common/types/invite.types.ts +133 -0
  57. package/src/common/types/issuer-bank-account.types.ts +107 -0
  58. package/src/common/types/issuer-offering.types.ts +306 -0
  59. package/src/common/types/issuer-payment-method.types.spec.ts +612 -0
  60. package/src/common/types/issuer-payment-method.types.ts +341 -0
  61. package/src/common/types/issuer.types.ts +312 -0
  62. package/src/common/types/job-item.types.ts +119 -0
  63. package/src/common/types/jobs.types.ts +171 -0
  64. package/src/common/types/kyb.types.ts +53 -0
  65. package/src/common/types/kyc.types.ts +188 -0
  66. package/src/common/types/legal-entity.types.ts +185 -0
  67. package/src/common/types/login-history.types.ts +46 -0
  68. package/src/common/types/mail-template.types.ts +436 -0
  69. package/src/common/types/north-cap-integration.types.ts +190 -0
  70. package/src/common/types/note.types.ts +109 -0
  71. package/src/common/types/notification.types.ts +58 -0
  72. package/src/common/types/notion-api.types.ts +374 -0
  73. package/src/common/types/notion-database.types.ts +125 -0
  74. package/src/common/types/notion-page.types.ts +267 -0
  75. package/src/common/types/offering-reports.types.ts +153 -0
  76. package/src/common/types/offering-submission.types.ts +314 -0
  77. package/src/common/types/offering.types.spec.ts +91 -0
  78. package/src/common/types/offering.types.ts +590 -0
  79. package/src/common/types/page-revision.types.ts +86 -0
  80. package/src/common/types/page.types.ts +436 -0
  81. package/src/common/types/password.type.ts +15 -0
  82. package/src/common/types/payment-methods.types.ts +298 -0
  83. package/src/common/types/phone.spec.ts +76 -0
  84. package/src/common/types/phone.type.ts +27 -0
  85. package/src/common/types/portfolio.types.ts +50 -0
  86. package/src/common/types/privacy-policy-and-tos.types.ts +231 -0
  87. package/src/common/types/queue.types.ts +112 -0
  88. package/src/common/types/registered-reps.types.ts +25 -0
  89. package/src/common/types/rejection-reasons.types.ts +56 -0
  90. package/src/common/types/reminder-config.types.ts +40 -0
  91. package/src/common/types/review.types.ts +133 -0
  92. package/src/common/types/role.types.ts +26 -0
  93. package/src/common/types/secondary-customer.types.ts +66 -0
  94. package/src/common/types/secondary-issuer.types.ts +50 -0
  95. package/src/common/types/secondary-order.types.ts +58 -0
  96. package/src/common/types/secondary-security.types.ts +60 -0
  97. package/src/common/types/secondary-trade.entity.ts +16 -0
  98. package/src/common/types/secondary-trade.types.ts +95 -0
  99. package/src/common/types/secure-request.types.ts +68 -0
  100. package/src/common/types/signer.types.ts +651 -0
  101. package/src/common/types/site-link.types.spec.ts +134 -0
  102. package/src/common/types/site-link.types.ts +166 -0
  103. package/src/common/types/site-settings.types.ts +726 -0
  104. package/src/common/types/site.types.ts +270 -0
  105. package/src/common/types/sms.types.ts +30 -0
  106. package/src/common/types/state-machine.types.ts +177 -0
  107. package/src/common/types/states.types.ts +163 -0
  108. package/src/common/types/subdoc-preview.types.ts +35 -0
  109. package/src/common/types/task.types.ts +258 -0
  110. package/src/common/types/trade-adjustment.type.ts +33 -0
  111. package/src/common/types/trade-line-item.type.ts +132 -0
  112. package/src/common/types/trade.types.ts +912 -0
  113. package/src/common/types/transaction.types.ts +198 -0
  114. package/src/common/types/trusted-contact.types.ts +122 -0
  115. package/src/common/types/typography.types.ts +75 -0
  116. package/src/common/types/user-manual.types.ts +290 -0
  117. package/src/common/types/user-setting.types.ts +133 -0
  118. package/src/common/types/user.types.ts +320 -0
  119. package/src/common/types/webhook.types.ts +588 -0
  120. package/src/common/types/zip.type.ts +36 -0
  121. package/src/contracts/clients/accounts/index.ts +61 -0
  122. package/src/contracts/clients/aic/index.ts +59 -0
  123. package/src/contracts/clients/api-key-logs/index.ts +53 -0
  124. package/src/contracts/clients/api-keys/index.ts +73 -0
  125. package/src/contracts/clients/assets/index.ts +102 -0
  126. package/src/contracts/clients/auth/index.ts +50 -0
  127. package/src/contracts/clients/files/index.ts +166 -0
  128. package/src/contracts/clients/files-public/index.ts +166 -0
  129. package/src/contracts/clients/index.ts +44 -0
  130. package/src/contracts/clients/individuals/index.ts +93 -0
  131. package/src/contracts/clients/investor-accounts/index.ts +93 -0
  132. package/src/contracts/clients/issuers/index.ts +94 -0
  133. package/src/contracts/clients/legal-entities/index.ts +93 -0
  134. package/src/contracts/clients/offerings/index.ts +117 -0
  135. package/src/contracts/clients/secure-requests/index.ts +34 -0
  136. package/src/contracts/clients/sites/index.ts +56 -0
  137. package/src/contracts/clients/trades/index.ts +122 -0
  138. package/dist/contracts/clients/index.d.ts +0 -19
@@ -0,0 +1,198 @@
1
+ import { TypeID } from 'typeid-js';
2
+ import {
3
+ dateSchema,
4
+ InvestorAccountType,
5
+ numberPrecisionSchema,
6
+ } from './common.types';
7
+ import { z } from 'zod';
8
+ import { IBaseEntity } from './entity.types';
9
+ import { accountIdSchema } from './account.types';
10
+ import {
11
+ paymentMethodIdSchema,
12
+ PaymentMethodProvider,
13
+ PaymentMethodResponse,
14
+ } from './payment-methods.types';
15
+ import { tradeIdSchema, TradeZod } from './trade.types';
16
+ import {
17
+ IInvestorAccount,
18
+ investorAccountIdSchema,
19
+ } from './investor-account.types';
20
+ import { TransactionStatus, TransactionType } from './common.types';
21
+ export { TransactionStatus, TransactionType };
22
+
23
+ export enum RefundPaymentMethod {
24
+ CHECK = 'CHECK',
25
+ WIRE = 'WIRE',
26
+ CREDIT_CARD = 'CREDIT_CARD',
27
+ }
28
+
29
+ export const transactionIdSchema = z.string().refine(
30
+ (value) => {
31
+ try {
32
+ const tid = TypeID.fromString(value);
33
+ return tid.getType() === 'transaction';
34
+ } catch {
35
+ return false;
36
+ }
37
+ },
38
+ {
39
+ message: `Invalid transaction ID format. Must be a valid TypeID with "transaction" prefix. ex: transaction_00041061050r3gg28a1c60t3gf`,
40
+ },
41
+ );
42
+
43
+ export const TransactionZod = IBaseEntity.extend({
44
+ id: transactionIdSchema,
45
+ accountId: accountIdSchema,
46
+ type: z.nativeEnum(TransactionType),
47
+ provider: z.nativeEnum(PaymentMethodProvider),
48
+ status: z.nativeEnum(TransactionStatus),
49
+ tid: z.string().nullable(),
50
+ amount: z.number(),
51
+ currencyCode: z.string(),
52
+ tradeId: z.lazy(() => tradeIdSchema).nullable(),
53
+ paymentMethodId: z.lazy(() => paymentMethodIdSchema).nullable(),
54
+ paymentMethod: z
55
+ .lazy(() => PaymentMethodResponse)
56
+ .optional()
57
+ .nullable(),
58
+ trade: z
59
+ .lazy(() => TradeZod)
60
+ .optional()
61
+ .nullable(),
62
+ errorMessage: z.string().nullable(),
63
+ description: z.string().nullable(),
64
+ chargedAt: dateSchema.nullable().optional(),
65
+ totalPaidBalance: z.number().nullable().optional(),
66
+ });
67
+ export type TransactionZod = z.infer<typeof TransactionZod>;
68
+
69
+ export const PostTransactionZod = z.object({
70
+ tid: z.string().min(3).max(64).openapi({ example: 'TXN8A7B6C5' }),
71
+ type: z
72
+ .nativeEnum(TransactionType)
73
+ .openapi({ example: TransactionType.CHARGE }),
74
+ amount: numberPrecisionSchema(
75
+ 2,
76
+ z.number().min(0.01).max(9999999999),
77
+ ).openapi({ example: 2000 }),
78
+ tradeId: z
79
+ .lazy(() => tradeIdSchema)
80
+ .openapi({
81
+ example: 'trade_01j5y5ghx5fg68d663j1fvy2x7',
82
+ }),
83
+ paymentMethodId: z
84
+ .lazy(() => paymentMethodIdSchema)
85
+ .openapi({
86
+ example: 'payment_method_01j5y5ghx5fg68d663j1fvy2x7',
87
+ }),
88
+ chargedAt: dateSchema,
89
+ status: z.nativeEnum(TransactionStatus),
90
+ currencyCode: z
91
+ .string()
92
+ .length(3)
93
+ .nullable()
94
+ .optional()
95
+ .openapi({ example: 'USD' }),
96
+ });
97
+ export type PostTransactionZod = z.infer<typeof PostTransactionZod>;
98
+
99
+ export const InvestorPostTransactionZod = z.object({
100
+ tid: z.string().min(3).max(64).openapi({ example: 'TXN8A7B6C5' }),
101
+ tradeId: z
102
+ .lazy(() => tradeIdSchema)
103
+ .openapi({
104
+ example: 'trade_01j5y5ghx5fg68d663j1fvy2x7',
105
+ }),
106
+ name: z.string().min(1).max(255).openapi({ example: 'John Doe' }),
107
+ chargedAt: dateSchema,
108
+ amount: numberPrecisionSchema(
109
+ 2,
110
+ z.number().positive().max(9999999999),
111
+ ).openapi({ example: 2000 }),
112
+ });
113
+
114
+ export type InvestorPostTransactionZod = z.infer<
115
+ typeof InvestorPostTransactionZod
116
+ >;
117
+
118
+ export const refundTransactionIdSchema = z.string().refine(
119
+ (value) => {
120
+ try {
121
+ const tid = TypeID.fromString(value);
122
+ return tid.getType() === 'refund_transaction';
123
+ } catch {
124
+ return false;
125
+ }
126
+ },
127
+ {
128
+ message: `Invalid refund transaction ID format. Must be a valid TypeID with "refund_transaction" prefix. ex: refund_transaction_00041061050r3gg28a1c60t3gf`,
129
+ },
130
+ );
131
+
132
+ export const RefundTransactionZod = IBaseEntity.extend({
133
+ id: refundTransactionIdSchema,
134
+ status: z.nativeEnum(TransactionStatus),
135
+ type: z.nativeEnum(TransactionType),
136
+ amount: z.number(),
137
+ transactionId: transactionIdSchema,
138
+ transaction: z
139
+ .lazy(() => TransactionZod)
140
+ .optional()
141
+ .nullable(),
142
+ payeeId: z.lazy(() => investorAccountIdSchema),
143
+ payee: z.lazy(() => IInvestorAccount).optional(),
144
+ payeeType: z.nativeEnum(InvestorAccountType),
145
+ payeePaymentMethod: z.nativeEnum(RefundPaymentMethod),
146
+ tid: z.string().nullable(),
147
+ notes: z.string().nullable(),
148
+ refundedAt: z.date().nullable(),
149
+ settledAt: z.date().nullable(),
150
+ voidedAt: z.date().nullable(),
151
+ errorMessage: z.string().nullable(),
152
+ });
153
+
154
+ export type RefundTransactionZod = z.infer<typeof RefundTransactionZod>;
155
+
156
+ export const GetRefundResponseZod = RefundTransactionZod.extend({
157
+ transactionBalance: z.number(),
158
+ });
159
+
160
+ export type GetRefundResponseZod = z.infer<typeof GetRefundResponseZod>;
161
+
162
+ export const CreateRefundZod = z.object({
163
+ transactionId: transactionIdSchema,
164
+ amount: numberPrecisionSchema(
165
+ 2,
166
+ z.number().positive().max(999999999),
167
+ ).openapi({ example: 500 }),
168
+ notes: z.string().max(1000).nullable().optional().openapi({
169
+ example: 'Partial refund for customer request',
170
+ }),
171
+ });
172
+ export type CreateRefundZod = z.infer<typeof CreateRefundZod>;
173
+
174
+ export const UpdateRefundZod = z.object({
175
+ status: z.nativeEnum(TransactionStatus).openapi({
176
+ example: TransactionStatus.SETTLED,
177
+ }),
178
+ notes: z.string().max(1000).nullable().optional().openapi({
179
+ example: 'Refund processed successfully',
180
+ }),
181
+ });
182
+ export type UpdateRefundZod = z.infer<typeof UpdateRefundZod>;
183
+
184
+ export const GetTransactionRefundsResponseZod = z.object({
185
+ refunds: z.array(RefundTransactionZod),
186
+ totalRefunded: z.number(),
187
+ refundableBalance: z.number(),
188
+ });
189
+ export type GetTransactionRefundsResponseZod = z.infer<
190
+ typeof GetTransactionRefundsResponseZod
191
+ >;
192
+
193
+ export const ComplianceTransactionQueryZod = z.object({
194
+ accountId: accountIdSchema,
195
+ });
196
+ export type ComplianceTransactionQueryZod = z.infer<
197
+ typeof ComplianceTransactionQueryZod
198
+ >;
@@ -0,0 +1,122 @@
1
+ import { extendZodWithOpenApi } from '@anatine/zod-openapi';
2
+ import { TypeID } from 'typeid-js';
3
+ import { z } from 'zod';
4
+ import { IBaseEntity } from './entity.types';
5
+ import { IPaginationMeta, TrustedContactRelationship } from './common.types';
6
+ import { PhoneZodSchema } from './phone.type';
7
+ import { AddressSchema } from './address.types';
8
+ import { investorAccountIdSchema } from './investor-account.types';
9
+ import { PhoneNumberData } from './sms.types';
10
+
11
+ extendZodWithOpenApi(z);
12
+
13
+ export const trustedContactIdSchema = z.string().refine(
14
+ (value) => {
15
+ try {
16
+ const tid = TypeID.fromString(value);
17
+ return tid.getType() === 'trusted_contact';
18
+ } catch {
19
+ return false;
20
+ }
21
+ },
22
+ {
23
+ message:
24
+ 'Invalid trusted contact ID format. Must be a valid TypeID with "trusted_contact" prefix.',
25
+ },
26
+ );
27
+ const trustedContactsInclude = z.enum(['investorAccount']);
28
+ /**
29
+ * @description Query parameters for including related entities
30
+ * @example in contract us as -> query: z.object({}).merge(TrustedContactsIncludeQuery),
31
+ */
32
+ export const TrustedContactsIncludeQuery = z.object({
33
+ include: z
34
+ .string()
35
+ .optional()
36
+ .transform((str) => (str ? str.split(',') : []))
37
+ .refine(
38
+ (includes) =>
39
+ includes.every((include) =>
40
+ trustedContactsInclude.options.includes(include as any),
41
+ ),
42
+ {
43
+ message: `Invalid include option provided. Valid options are: ${trustedContactsInclude.options.join(',')}`,
44
+ },
45
+ )
46
+ .openapi({
47
+ example: `${trustedContactsInclude.options.join(',')}`,
48
+ }),
49
+ });
50
+
51
+ export const ITrustedContactZod = IBaseEntity.extend({
52
+ firstName: z.string().nullable(),
53
+ lastName: z.string().nullable(),
54
+ email: z.string().email().nullable(),
55
+ phone: PhoneNumberData.nullable(),
56
+ address: z.string().nullable(),
57
+ address2: z.string().nullable(),
58
+ city: z.string().nullable(),
59
+ state: z.string().nullable(),
60
+ zip: z.string().nullable(),
61
+ country: z.string().nullable(),
62
+ relationship: z.nativeEnum(TrustedContactRelationship),
63
+ });
64
+
65
+ export type ITrustedContactZod = z.infer<typeof ITrustedContactZod>;
66
+
67
+ export const PostTrustedContactZod = z
68
+ .object({
69
+ firstName: z.string().min(1).max(255).openapi({ example: 'John' }),
70
+ lastName: z.string().min(1).max(255).openapi({ example: 'Doe' }),
71
+ email: z.string().email().openapi({ example: 'john.doe@example.com' }),
72
+ phone: PhoneZodSchema.nullable().optional(),
73
+ relationship: z
74
+ .nativeEnum(TrustedContactRelationship)
75
+ .nullable()
76
+ .default(TrustedContactRelationship.OTHER)
77
+ .openapi({
78
+ example: TrustedContactRelationship.CHILD,
79
+ }),
80
+ investorAccountId: z.lazy(() => investorAccountIdSchema),
81
+ })
82
+ .and(AddressSchema);
83
+
84
+ export type PostTrustedContactZod = z.infer<typeof PostTrustedContactZod>;
85
+
86
+ export const PatchTrustedContactZod = z
87
+ .object({
88
+ firstName: z
89
+ .string()
90
+ .min(1)
91
+ .max(255)
92
+ .optional()
93
+ .openapi({ example: 'John' }),
94
+ lastName: z.string().min(1).max(255).optional().openapi({ example: 'Doe' }),
95
+ email: z
96
+ .string()
97
+ .email()
98
+ .optional()
99
+ .openapi({ example: 'john.doe@example.com' }),
100
+ phone: PhoneZodSchema.nullable().optional(),
101
+ relationship: z.nativeEnum(TrustedContactRelationship).optional().openapi({
102
+ example: TrustedContactRelationship.CHILD,
103
+ }),
104
+ })
105
+ .and(AddressSchema);
106
+
107
+ export type PatchTrustedContactZod = z.infer<typeof PatchTrustedContactZod>;
108
+
109
+ export const IPaginatedTrustedContact = z.object({
110
+ items: z.array(ITrustedContactZod),
111
+ meta: IPaginationMeta,
112
+ });
113
+ export type IPaginatedTrustedContact = z.infer<typeof IPaginatedTrustedContact>;
114
+
115
+ export const GetTrustedContactFilters = z.object({
116
+ search: z.string().optional().openapi({ example: 'John' }),
117
+ relationship: z
118
+ .nativeEnum(TrustedContactRelationship)
119
+ .openapi({ example: TrustedContactRelationship.CHILD }),
120
+ investorAccountId: z.lazy(() => investorAccountIdSchema).optional(),
121
+ });
122
+ export type GetTrustedContactFilters = z.infer<typeof GetTrustedContactFilters>;
@@ -0,0 +1,75 @@
1
+ import { extendZodWithOpenApi } from '@anatine/zod-openapi';
2
+ import { z } from 'zod';
3
+
4
+ extendZodWithOpenApi(z);
5
+
6
+ export enum WebSafeFonts {
7
+ // Sans-Serif Fonts
8
+ Arial = 'Arial',
9
+ Helvetica = 'Helvetica',
10
+ Verdana = 'Verdana',
11
+ Tahoma = 'Tahoma',
12
+ TrebuchetMS = 'Trebuchet MS',
13
+ SegoeUI = 'Segoe UI',
14
+ GillSans = 'Gill Sans',
15
+ CenturyGothic = 'Century Gothic',
16
+ LucidaSans = 'Lucida Sans',
17
+
18
+ // Serif Fonts
19
+ TimesNewRoman = 'Times New Roman',
20
+ Georgia = 'Georgia',
21
+ Palatino = 'Palatino',
22
+ Baskerville = 'Baskerville',
23
+ Garamond = 'Garamond',
24
+ Bookman = 'Bookman',
25
+ Perpetua = 'Perpetua',
26
+ CalistoMT = 'Calisto MT',
27
+
28
+ // Monospace Fonts
29
+ CourierNew = 'Courier New',
30
+ Consolas = 'Consolas',
31
+ Monaco = 'Monaco',
32
+ LucidaConsole = 'Lucida Console',
33
+ AndaleMono = 'Andale Mono',
34
+ Menlo = 'Menlo',
35
+
36
+ // Decorative Fonts
37
+ ComicSans = 'Comic Sans MS',
38
+ Impact = 'Impact',
39
+ Charcoal = 'Charcoal',
40
+ Papyrus = 'Papyrus',
41
+
42
+ // System Fonts
43
+ SystemUI = 'system-ui',
44
+ AppleSystem = '-apple-system',
45
+ BlinkMacSystemFont = 'BlinkMacSystemFont',
46
+ DroidSans = 'Droid Sans',
47
+ NotoSans = 'Noto Sans',
48
+ Futura = 'Futura',
49
+
50
+ // Web-Friendly Fonts
51
+ OpenSans = 'Open Sans',
52
+ Roboto = 'Roboto',
53
+ Lato = 'Lato',
54
+ Poppins = 'Poppins',
55
+ Montserrat = 'Montserrat',
56
+ Oswald = 'Oswald',
57
+ Nunito = 'Nunito',
58
+ SourceSansPro = 'Source Sans Pro',
59
+
60
+ // Cursive Fonts
61
+ Pacifico = 'Pacifico',
62
+ BrushScript = 'Brush Script MT',
63
+ SnellRoundhand = 'Snell Roundhand',
64
+ LucidaHandwriting = 'Lucida Handwriting',
65
+
66
+ // Fantasy Fonts
67
+ Jokerman = 'Jokerman',
68
+ Broadway = 'Broadway',
69
+ Harrington = 'Harrington',
70
+ }
71
+
72
+ export const typographySchema = z
73
+ .nativeEnum(WebSafeFonts)
74
+ .optional()
75
+ .openapi({ example: WebSafeFonts.Arial });
@@ -0,0 +1,290 @@
1
+ import { z } from 'zod';
2
+ import { extendZodWithOpenApi } from '@anatine/zod-openapi';
3
+ import { TypeID } from 'typeid-js';
4
+ import {
5
+ IPaginationMeta,
6
+ PaginationOptionsZod,
7
+ PortalType,
8
+ UserManualType,
9
+ } from './common.types';
10
+ import { IBaseEntity } from './entity.types';
11
+
12
+ extendZodWithOpenApi(z);
13
+
14
+ export const userManualCategorySchema = z.string().refine(
15
+ (value) => {
16
+ try {
17
+ const tid = TypeID.fromString(value);
18
+ return tid.getType() === 'user_manual_category';
19
+ } catch {
20
+ return false;
21
+ }
22
+ },
23
+ {
24
+ message:
25
+ 'Invalid user manual category ID format. Must be a valid TypeID with "user_manual_category" prefix.',
26
+ },
27
+ );
28
+
29
+ export const userManualPageSchema = z.string().refine(
30
+ (value) => {
31
+ try {
32
+ const tid = TypeID.fromString(value);
33
+ return tid.getType() === 'user_manual_page';
34
+ } catch {
35
+ return false;
36
+ }
37
+ },
38
+ {
39
+ message:
40
+ 'Invalid user manual page ID format. Must be a valid TypeID with "user_manual_page" prefix.',
41
+ },
42
+ );
43
+
44
+ export const userManualPageUrlSchema = z.string().refine(
45
+ (value) => {
46
+ try {
47
+ const tid = TypeID.fromString(value);
48
+ return tid.getType() === 'user_manual_page_url';
49
+ } catch {
50
+ return false;
51
+ }
52
+ },
53
+ {
54
+ message:
55
+ 'Invalid user manual page URL ID format. Must be a valid TypeID with "user_manual_page_url" prefix.',
56
+ },
57
+ );
58
+
59
+ export const PostUserManualCategoryZod = z.object({
60
+ name: z.string().min(1).max(255).openapi({ example: 'User Manual' }),
61
+ site: z.nativeEnum(PortalType).openapi({ example: PortalType.COMPLIANCE }),
62
+ type: z.nativeEnum(UserManualType).openapi({ example: UserManualType.FAQ }),
63
+ });
64
+
65
+ export type PostUserManualCategoryZod = z.infer<
66
+ typeof PostUserManualCategoryZod
67
+ >;
68
+
69
+ export const PatchUserManualCategoryZod = z.object({
70
+ name: z
71
+ .string()
72
+ .min(1)
73
+ .max(255)
74
+ .optional()
75
+ .openapi({ example: 'User Manual' }),
76
+ type: z
77
+ .nativeEnum(UserManualType)
78
+ .optional()
79
+ .openapi({ example: UserManualType.FAQ }),
80
+ });
81
+
82
+ export type PatchUserManualCategoryZod = z.infer<
83
+ typeof PatchUserManualCategoryZod
84
+ >;
85
+
86
+ export const PostUserManualPageZod = z.object({
87
+ question: z
88
+ .string()
89
+ .min(1)
90
+ .max(500)
91
+ .openapi({ example: 'User Manual Question' }),
92
+ answer: z
93
+ .string()
94
+ .min(1)
95
+ .max(200000)
96
+ .openapi({ example: 'User Manual Content' }),
97
+ userManualCategoryId: userManualCategorySchema.openapi({
98
+ example: 'user_manual_category_01jatr819xff9s6wek8d2tng3x',
99
+ }),
100
+ urls: z
101
+ .array(z.string().url())
102
+ .optional()
103
+ .openapi({ example: ['https://example.com'] }),
104
+ });
105
+
106
+ export type PostUserManualPageZod = z.infer<typeof PostUserManualPageZod>;
107
+
108
+ export const PatchUserManualPageZod = z.object({
109
+ question: z
110
+ .string()
111
+ .min(1)
112
+ .max(500)
113
+ .optional()
114
+ .openapi({ example: 'User Manual Question' }),
115
+ answer: z
116
+ .string()
117
+ .min(1)
118
+ .max(200000)
119
+ .optional()
120
+ .openapi({ example: 'User Manual Answer' }),
121
+ userManualCategoryId: userManualCategorySchema.optional().openapi({
122
+ example: 'user_manual_category_01jatr819xff9s6wek8d2tng3x',
123
+ }),
124
+ });
125
+
126
+ export const UserManualsPaginationOptionsZod = PaginationOptionsZod.extend({
127
+ page: z.coerce.number().optional().default(1),
128
+ limit: z.coerce.number().optional().default(100),
129
+ });
130
+
131
+ export type UserManualsPaginationOptionsZod = z.infer<
132
+ typeof UserManualsPaginationOptionsZod
133
+ >;
134
+
135
+ export type PatchUserManualPageZod = z.infer<typeof PatchUserManualPageZod>;
136
+
137
+ export const PatchUserManualPageUrlZod = z.object({
138
+ url: z.string().url().openapi({ example: 'https://example.com' }),
139
+ });
140
+
141
+ export type PatchUserManualPageUrlZod = z.infer<
142
+ typeof PatchUserManualPageUrlZod
143
+ >;
144
+
145
+ export const OrderUserManualCategoriesZod = z.object({
146
+ userManualCategories: z.array(userManualCategorySchema),
147
+ });
148
+
149
+ export type OrderUserManualCategoriesZod = z.infer<
150
+ typeof OrderUserManualCategoriesZod
151
+ >;
152
+
153
+ export const OrderUserManualPagesZod = z.object({
154
+ userManualPages: z.array(userManualPageSchema),
155
+ });
156
+
157
+ export type OrderUserManualPagesZod = z.infer<typeof OrderUserManualPagesZod>;
158
+
159
+ export const IUserManualCategory = IBaseEntity.extend({
160
+ name: z.string().nullable().optional(),
161
+ site: z.nativeEnum(PortalType),
162
+ type: z.nativeEnum(UserManualType),
163
+ userManualPages: z.array(z.lazy(() => IUserManualPage)),
164
+ order: z.number().nullable().optional(),
165
+ });
166
+
167
+ export type IUserManualCategory = z.infer<typeof IUserManualCategory>;
168
+
169
+ export const IUserManualPage = IBaseEntity.extend({
170
+ question: z.string().nullable().optional(),
171
+ answer: z.string().nullable().optional(),
172
+ userManualCategoryId: userManualCategorySchema.optional().nullable(),
173
+ userManualCategory: z.lazy(() => IUserManualCategory),
174
+ order: z.number().nullable().optional(),
175
+ });
176
+
177
+ export type IUserManualPage = z.infer<typeof IUserManualPage>;
178
+
179
+ export const IUserManualPageUrl = IBaseEntity.extend({
180
+ url: z.string().url().optional().nullable(),
181
+ userManualPageId: userManualPageSchema.optional().nullable(),
182
+ userManualPage: z
183
+ .lazy(() => IUserManualPage)
184
+ .optional()
185
+ .nullable(),
186
+ });
187
+
188
+ export type IUserManualPageUrl = z.infer<typeof IUserManualPageUrl>;
189
+
190
+ export const GetUserManualPagesZod = z.object({
191
+ categoryId: userManualCategorySchema
192
+ .optional()
193
+ .openapi({ example: 'user_manual_category_01jatr819xff9s6wek8d2tng3x' }),
194
+ search: z.string().optional(),
195
+ site: z.nativeEnum(PortalType).openapi({ example: PortalType.COMPLIANCE }),
196
+ });
197
+
198
+ export type GetUserManualPagesZod = z.infer<typeof GetUserManualPagesZod>;
199
+
200
+ export const GetUserManualCategoryZod = z.object({
201
+ search: z.string().optional(),
202
+ site: z.nativeEnum(PortalType).openapi({ example: PortalType.COMPLIANCE }),
203
+ type: z
204
+ .nativeEnum(UserManualType)
205
+ .optional()
206
+ .openapi({ example: UserManualType.USER_MANUAL }),
207
+ });
208
+ export type GetUserManualCategoryZod = z.infer<typeof GetUserManualCategoryZod>;
209
+
210
+ export const GetLimitedUserManualCategoryZod = GetUserManualCategoryZod.omit({
211
+ site: true,
212
+ });
213
+ export type GetLimitedUserManualCategoryZod = z.infer<
214
+ typeof GetLimitedUserManualCategoryZod
215
+ >;
216
+ export const userManualPagesInclude = z.enum([
217
+ 'userManualCategory',
218
+ 'userManualPageUrls',
219
+ ]);
220
+ export const userManualPagesIncludeQuery = z.object({
221
+ include: z
222
+ .string()
223
+ .optional()
224
+ .transform((str) => (str ? str.split(',') : []))
225
+ .refine(
226
+ (includes) =>
227
+ includes.every((include) =>
228
+ userManualPagesInclude.options.includes(include as any),
229
+ ),
230
+ {
231
+ message: `Invalid include option provided. Valid options are: ${userManualPagesInclude.options.join(',')}`,
232
+ },
233
+ )
234
+ .openapi({
235
+ example: `${userManualPagesInclude.options.join(',')}`,
236
+ }),
237
+ });
238
+
239
+ export const userManualCategoriesInclude = z.enum(['userManualPages']);
240
+ export const userManualCategoriesIncludeQuery = z.object({
241
+ include: z
242
+ .string()
243
+ .optional()
244
+ .transform((str) => (str ? str.split(',') : []))
245
+ .refine(
246
+ (includes) =>
247
+ includes.every((include) =>
248
+ userManualCategoriesInclude.options.includes(include as any),
249
+ ),
250
+ {
251
+ message: `Invalid include option provided. Valid options are: ${userManualCategoriesInclude.options.join(',')}`,
252
+ },
253
+ )
254
+ .openapi({
255
+ example: `${userManualCategoriesInclude.options.join(',')}`,
256
+ }),
257
+ });
258
+
259
+ export const IPaginatedUserManualCategory = z.object({
260
+ items: z.array(IUserManualCategory),
261
+ meta: IPaginationMeta,
262
+ });
263
+
264
+ export type IPaginatedUserManualCategory = z.infer<
265
+ typeof IPaginatedUserManualCategory
266
+ >;
267
+
268
+ export const IPaginatedUserManualPage = z.object({
269
+ items: z.array(IUserManualPage),
270
+ meta: IPaginationMeta,
271
+ });
272
+
273
+ export type IPaginatedUserManualPage = z.infer<typeof IPaginatedUserManualPage>;
274
+
275
+ export const UserManualOrderResponseZod = z.object({
276
+ message: z.string(),
277
+ });
278
+
279
+ export type UserManualOrderResponseZod = z.infer<
280
+ typeof UserManualOrderResponseZod
281
+ >;
282
+
283
+ export const PostUserManualPageUrlZod = z.object({
284
+ userManualPageId: userManualPageUrlSchema.openapi({
285
+ example: 'user_manual_page_123456789',
286
+ }),
287
+ url: z.string().url().openapi({ example: 'https://example.com' }),
288
+ });
289
+
290
+ export type PostUserManualPageUrlZod = z.infer<typeof PostUserManualPageUrlZod>;