@dalmore/api-contracts 0.0.0-dev.835d7eb → 0.0.0-dev.94755e7
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/common/types/account-setting.types.d.ts +66 -17
- package/common/types/account-setting.types.js +31 -2
- package/common/types/account-setting.types.js.map +1 -1
- package/common/types/account.types.d.ts +23 -23
- package/common/types/common.types.d.ts +1 -290
- package/common/types/common.types.js +0 -29
- package/common/types/common.types.js.map +1 -1
- package/common/types/file.types.d.ts +0 -20
- package/common/types/file.types.js +0 -9
- package/common/types/file.types.js.map +1 -1
- package/common/types/index.d.ts +0 -1
- package/common/types/index.js +0 -1
- package/common/types/index.js.map +1 -1
- package/common/types/issuer-offering.types.d.ts +0 -2
- package/common/types/issuer-offering.types.js +13 -30
- package/common/types/issuer-offering.types.js.map +1 -1
- package/common/types/offering-submission.types.d.ts +0 -198
- package/common/types/offering-submission.types.js +1 -14
- package/common/types/offering-submission.types.js.map +1 -1
- package/common/types/offering.types.js +4 -2
- package/common/types/offering.types.js.map +1 -1
- package/common/types/user.types.d.ts +58 -58
- package/package.json +1 -1
|
@@ -1,4 +1,53 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
|
+
export declare const accountSettingIdSchema: z.ZodEffects<z.ZodString, string, string>;
|
|
3
|
+
export declare const IAccountSettingZod: z.ZodObject<{
|
|
4
|
+
__entity: z.ZodOptional<z.ZodString>;
|
|
5
|
+
createdAt: z.ZodUnion<[z.ZodString, z.ZodDate]>;
|
|
6
|
+
updatedAt: z.ZodUnion<[z.ZodString, z.ZodDate]>;
|
|
7
|
+
deletedAt: z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodDate]>>;
|
|
8
|
+
} & {
|
|
9
|
+
id: z.ZodEffects<z.ZodString, string, string>;
|
|
10
|
+
accountId: z.ZodString;
|
|
11
|
+
offeringSetup: z.ZodBoolean;
|
|
12
|
+
investorPortalSetup: z.ZodBoolean;
|
|
13
|
+
paymentMethodSetup: z.ZodBoolean;
|
|
14
|
+
accountContactsSetup: z.ZodBoolean;
|
|
15
|
+
productPrimaries: z.ZodBoolean;
|
|
16
|
+
productSecondaries: z.ZodBoolean;
|
|
17
|
+
featureDisbursements: z.ZodBoolean;
|
|
18
|
+
apiPortal: z.ZodBoolean;
|
|
19
|
+
}, "strip", z.ZodTypeAny, {
|
|
20
|
+
id: string;
|
|
21
|
+
createdAt: string | Date;
|
|
22
|
+
updatedAt: string | Date;
|
|
23
|
+
deletedAt: string | Date | null;
|
|
24
|
+
accountId: string;
|
|
25
|
+
productPrimaries: boolean;
|
|
26
|
+
productSecondaries: boolean;
|
|
27
|
+
featureDisbursements: boolean;
|
|
28
|
+
apiPortal: boolean;
|
|
29
|
+
offeringSetup: boolean;
|
|
30
|
+
investorPortalSetup: boolean;
|
|
31
|
+
paymentMethodSetup: boolean;
|
|
32
|
+
accountContactsSetup: boolean;
|
|
33
|
+
__entity?: string | undefined;
|
|
34
|
+
}, {
|
|
35
|
+
id: string;
|
|
36
|
+
createdAt: string | Date;
|
|
37
|
+
updatedAt: string | Date;
|
|
38
|
+
deletedAt: string | Date | null;
|
|
39
|
+
accountId: string;
|
|
40
|
+
productPrimaries: boolean;
|
|
41
|
+
productSecondaries: boolean;
|
|
42
|
+
featureDisbursements: boolean;
|
|
43
|
+
apiPortal: boolean;
|
|
44
|
+
offeringSetup: boolean;
|
|
45
|
+
investorPortalSetup: boolean;
|
|
46
|
+
paymentMethodSetup: boolean;
|
|
47
|
+
accountContactsSetup: boolean;
|
|
48
|
+
__entity?: string | undefined;
|
|
49
|
+
}>;
|
|
50
|
+
export type IAccountSettingZod = z.infer<typeof IAccountSettingZod>;
|
|
2
51
|
export declare const IPaginatedAccountSetting: z.ZodObject<{
|
|
3
52
|
items: z.ZodArray<z.ZodObject<{
|
|
4
53
|
__entity: z.ZodOptional<z.ZodString>;
|
|
@@ -22,14 +71,14 @@ export declare const IPaginatedAccountSetting: z.ZodObject<{
|
|
|
22
71
|
updatedAt: string | Date;
|
|
23
72
|
deletedAt: string | Date | null;
|
|
24
73
|
accountId: string;
|
|
25
|
-
offeringSetup: boolean;
|
|
26
|
-
investorPortalSetup: boolean;
|
|
27
|
-
paymentMethodSetup: boolean;
|
|
28
|
-
accountContactsSetup: boolean;
|
|
29
74
|
productPrimaries: boolean;
|
|
30
75
|
productSecondaries: boolean;
|
|
31
76
|
featureDisbursements: boolean;
|
|
32
77
|
apiPortal: boolean;
|
|
78
|
+
offeringSetup: boolean;
|
|
79
|
+
investorPortalSetup: boolean;
|
|
80
|
+
paymentMethodSetup: boolean;
|
|
81
|
+
accountContactsSetup: boolean;
|
|
33
82
|
__entity?: string | undefined;
|
|
34
83
|
}, {
|
|
35
84
|
id: string;
|
|
@@ -37,14 +86,14 @@ export declare const IPaginatedAccountSetting: z.ZodObject<{
|
|
|
37
86
|
updatedAt: string | Date;
|
|
38
87
|
deletedAt: string | Date | null;
|
|
39
88
|
accountId: string;
|
|
40
|
-
offeringSetup: boolean;
|
|
41
|
-
investorPortalSetup: boolean;
|
|
42
|
-
paymentMethodSetup: boolean;
|
|
43
|
-
accountContactsSetup: boolean;
|
|
44
89
|
productPrimaries: boolean;
|
|
45
90
|
productSecondaries: boolean;
|
|
46
91
|
featureDisbursements: boolean;
|
|
47
92
|
apiPortal: boolean;
|
|
93
|
+
offeringSetup: boolean;
|
|
94
|
+
investorPortalSetup: boolean;
|
|
95
|
+
paymentMethodSetup: boolean;
|
|
96
|
+
accountContactsSetup: boolean;
|
|
48
97
|
__entity?: string | undefined;
|
|
49
98
|
}>, "many">;
|
|
50
99
|
meta: z.ZodObject<{
|
|
@@ -73,14 +122,14 @@ export declare const IPaginatedAccountSetting: z.ZodObject<{
|
|
|
73
122
|
updatedAt: string | Date;
|
|
74
123
|
deletedAt: string | Date | null;
|
|
75
124
|
accountId: string;
|
|
76
|
-
offeringSetup: boolean;
|
|
77
|
-
investorPortalSetup: boolean;
|
|
78
|
-
paymentMethodSetup: boolean;
|
|
79
|
-
accountContactsSetup: boolean;
|
|
80
125
|
productPrimaries: boolean;
|
|
81
126
|
productSecondaries: boolean;
|
|
82
127
|
featureDisbursements: boolean;
|
|
83
128
|
apiPortal: boolean;
|
|
129
|
+
offeringSetup: boolean;
|
|
130
|
+
investorPortalSetup: boolean;
|
|
131
|
+
paymentMethodSetup: boolean;
|
|
132
|
+
accountContactsSetup: boolean;
|
|
84
133
|
__entity?: string | undefined;
|
|
85
134
|
}[];
|
|
86
135
|
meta: {
|
|
@@ -97,14 +146,14 @@ export declare const IPaginatedAccountSetting: z.ZodObject<{
|
|
|
97
146
|
updatedAt: string | Date;
|
|
98
147
|
deletedAt: string | Date | null;
|
|
99
148
|
accountId: string;
|
|
100
|
-
offeringSetup: boolean;
|
|
101
|
-
investorPortalSetup: boolean;
|
|
102
|
-
paymentMethodSetup: boolean;
|
|
103
|
-
accountContactsSetup: boolean;
|
|
104
149
|
productPrimaries: boolean;
|
|
105
150
|
productSecondaries: boolean;
|
|
106
151
|
featureDisbursements: boolean;
|
|
107
152
|
apiPortal: boolean;
|
|
153
|
+
offeringSetup: boolean;
|
|
154
|
+
investorPortalSetup: boolean;
|
|
155
|
+
paymentMethodSetup: boolean;
|
|
156
|
+
accountContactsSetup: boolean;
|
|
108
157
|
__entity?: string | undefined;
|
|
109
158
|
}[];
|
|
110
159
|
meta: {
|
|
@@ -117,7 +166,7 @@ export declare const IPaginatedAccountSetting: z.ZodObject<{
|
|
|
117
166
|
}>;
|
|
118
167
|
export type IPaginatedAccountSetting = z.infer<typeof IPaginatedAccountSetting>;
|
|
119
168
|
export declare const AccountSettingsFilters: z.ZodObject<{
|
|
120
|
-
accountId: z.
|
|
169
|
+
accountId: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
121
170
|
}, "strip", z.ZodTypeAny, {
|
|
122
171
|
accountId?: string | undefined;
|
|
123
172
|
}, {
|
|
@@ -1,14 +1,43 @@
|
|
|
1
1
|
import { extendZodWithOpenApi } from '@anatine/zod-openapi';
|
|
2
2
|
import { z } from 'zod';
|
|
3
|
-
import {
|
|
3
|
+
import { TypeID } from 'typeid-js';
|
|
4
|
+
import { IBaseEntity } from './entity.types.js';
|
|
5
|
+
import { IPaginationMeta } from './common.types.js';
|
|
4
6
|
import { accountIdSchema } from './account.types.js';
|
|
5
7
|
extendZodWithOpenApi(z);
|
|
8
|
+
export const accountSettingIdSchema = z.string().refine((value) => {
|
|
9
|
+
try {
|
|
10
|
+
const tid = TypeID.fromString(value);
|
|
11
|
+
return tid.getType() === 'account_setting';
|
|
12
|
+
}
|
|
13
|
+
catch {
|
|
14
|
+
return false;
|
|
15
|
+
}
|
|
16
|
+
}, {
|
|
17
|
+
message: 'Invalid account setting ID format. Must be a valid TypeID with "account_setting" prefix.',
|
|
18
|
+
});
|
|
19
|
+
export const IAccountSettingZod = IBaseEntity.extend({
|
|
20
|
+
id: accountSettingIdSchema.openapi({
|
|
21
|
+
example: 'account_setting_01j5y5ghx8fvc83dmx3pznq7hv',
|
|
22
|
+
}),
|
|
23
|
+
accountId: z.string().openapi({
|
|
24
|
+
example: 'account_01j5y5ghx8fvc83dmx3pznq7hv',
|
|
25
|
+
}),
|
|
26
|
+
offeringSetup: z.boolean().openapi({ example: false }),
|
|
27
|
+
investorPortalSetup: z.boolean().openapi({ example: false }),
|
|
28
|
+
paymentMethodSetup: z.boolean().openapi({ example: false }),
|
|
29
|
+
accountContactsSetup: z.boolean().openapi({ example: false }),
|
|
30
|
+
productPrimaries: z.boolean().openapi({ example: true }),
|
|
31
|
+
productSecondaries: z.boolean().openapi({ example: false }),
|
|
32
|
+
featureDisbursements: z.boolean().openapi({ example: true }),
|
|
33
|
+
apiPortal: z.boolean().openapi({ example: false }),
|
|
34
|
+
});
|
|
6
35
|
export const IPaginatedAccountSetting = z.object({
|
|
7
36
|
items: z.array(IAccountSettingZod),
|
|
8
37
|
meta: IPaginationMeta,
|
|
9
38
|
});
|
|
10
39
|
export const AccountSettingsFilters = z.object({
|
|
11
|
-
accountId:
|
|
40
|
+
accountId: accountIdSchema.optional(),
|
|
12
41
|
});
|
|
13
42
|
export const accountSettingsInclude = z.enum(['notificationChannels']);
|
|
14
43
|
export const AccountSettingsIncludeQuery = z.object({
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"account-setting.types.js","sourceRoot":"","sources":["account-setting.types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,oBAAoB,EAAE,MAAM,sBAAsB,CAAC;AAC5D,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AACxB,OAAO,EAAE,
|
|
1
|
+
{"version":3,"file":"account-setting.types.js","sourceRoot":"","sources":["account-setting.types.ts"],"names":[],"mappings":"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"}
|
|
@@ -195,24 +195,24 @@ export declare const PatchAccountZod: z.ZodObject<{
|
|
|
195
195
|
apiPortal: z.ZodOptional<z.ZodBoolean>;
|
|
196
196
|
}, "strip", z.ZodTypeAny, {
|
|
197
197
|
name: string;
|
|
198
|
-
productPrimaries?: boolean | undefined;
|
|
199
|
-
productSecondaries?: boolean | undefined;
|
|
200
|
-
featureDisbursements?: boolean | undefined;
|
|
201
|
-
apiPortal?: boolean | undefined;
|
|
202
198
|
managedBy?: ManagedByType | undefined;
|
|
203
199
|
platform?: Platform | undefined;
|
|
204
200
|
approversCount?: number | undefined;
|
|
205
201
|
integrationGuideId?: string | null | undefined;
|
|
206
|
-
}, {
|
|
207
|
-
name: string;
|
|
208
202
|
productPrimaries?: boolean | undefined;
|
|
209
203
|
productSecondaries?: boolean | undefined;
|
|
210
204
|
featureDisbursements?: boolean | undefined;
|
|
211
205
|
apiPortal?: boolean | undefined;
|
|
206
|
+
}, {
|
|
207
|
+
name: string;
|
|
212
208
|
managedBy?: ManagedByType | undefined;
|
|
213
209
|
platform?: Platform | undefined;
|
|
214
210
|
approversCount?: number | undefined;
|
|
215
211
|
integrationGuideId?: string | null | undefined;
|
|
212
|
+
productPrimaries?: boolean | undefined;
|
|
213
|
+
productSecondaries?: boolean | undefined;
|
|
214
|
+
featureDisbursements?: boolean | undefined;
|
|
215
|
+
apiPortal?: boolean | undefined;
|
|
216
216
|
}>;
|
|
217
217
|
export type PatchAccountZod = z.infer<typeof PatchAccountZod>;
|
|
218
218
|
export declare const CompliancePatchAccountZod: z.ZodObject<{
|
|
@@ -229,26 +229,26 @@ export declare const CompliancePatchAccountZod: z.ZodObject<{
|
|
|
229
229
|
hubspotCompany: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
230
230
|
}, "strip", z.ZodTypeAny, {
|
|
231
231
|
name: string;
|
|
232
|
-
productPrimaries?: boolean | undefined;
|
|
233
|
-
productSecondaries?: boolean | undefined;
|
|
234
|
-
featureDisbursements?: boolean | undefined;
|
|
235
|
-
apiPortal?: boolean | undefined;
|
|
236
232
|
managedBy?: ManagedByType | undefined;
|
|
237
233
|
platform?: Platform | undefined;
|
|
238
234
|
approversCount?: number | undefined;
|
|
239
235
|
hubspotCompany?: string | null | undefined;
|
|
240
236
|
integrationGuideId?: string | null | undefined;
|
|
241
|
-
}, {
|
|
242
|
-
name: string;
|
|
243
237
|
productPrimaries?: boolean | undefined;
|
|
244
238
|
productSecondaries?: boolean | undefined;
|
|
245
239
|
featureDisbursements?: boolean | undefined;
|
|
246
240
|
apiPortal?: boolean | undefined;
|
|
241
|
+
}, {
|
|
242
|
+
name: string;
|
|
247
243
|
managedBy?: ManagedByType | undefined;
|
|
248
244
|
platform?: Platform | undefined;
|
|
249
245
|
approversCount?: number | undefined;
|
|
250
246
|
hubspotCompany?: string | null | undefined;
|
|
251
247
|
integrationGuideId?: string | null | undefined;
|
|
248
|
+
productPrimaries?: boolean | undefined;
|
|
249
|
+
productSecondaries?: boolean | undefined;
|
|
250
|
+
featureDisbursements?: boolean | undefined;
|
|
251
|
+
apiPortal?: boolean | undefined;
|
|
252
252
|
}>;
|
|
253
253
|
export type CompliancePatchAccountZod = z.infer<typeof CompliancePatchAccountZod>;
|
|
254
254
|
export declare const PostAccountResponse: z.ZodObject<{
|
|
@@ -487,20 +487,20 @@ export declare const OnboardingAccountSummaryZod: z.ZodObject<{
|
|
|
487
487
|
accountContactsSetup: z.ZodBoolean;
|
|
488
488
|
}, "strip", z.ZodTypeAny, {
|
|
489
489
|
accountId: string;
|
|
490
|
+
accountName: string;
|
|
490
491
|
offeringSetup: boolean;
|
|
491
492
|
investorPortalSetup: boolean;
|
|
492
493
|
paymentMethodSetup: boolean;
|
|
493
494
|
accountContactsSetup: boolean;
|
|
494
|
-
accountName: string;
|
|
495
495
|
siteId: string | null;
|
|
496
496
|
offeringId: string | null;
|
|
497
497
|
}, {
|
|
498
498
|
accountId: string;
|
|
499
|
+
accountName: string;
|
|
499
500
|
offeringSetup: boolean;
|
|
500
501
|
investorPortalSetup: boolean;
|
|
501
502
|
paymentMethodSetup: boolean;
|
|
502
503
|
accountContactsSetup: boolean;
|
|
503
|
-
accountName: string;
|
|
504
504
|
siteId: string | null;
|
|
505
505
|
offeringId: string | null;
|
|
506
506
|
}>;
|
|
@@ -517,20 +517,20 @@ export declare const IPaginatedOnboardingAccountSummaryResponse: z.ZodObject<{
|
|
|
517
517
|
accountContactsSetup: z.ZodBoolean;
|
|
518
518
|
}, "strip", z.ZodTypeAny, {
|
|
519
519
|
accountId: string;
|
|
520
|
+
accountName: string;
|
|
520
521
|
offeringSetup: boolean;
|
|
521
522
|
investorPortalSetup: boolean;
|
|
522
523
|
paymentMethodSetup: boolean;
|
|
523
524
|
accountContactsSetup: boolean;
|
|
524
|
-
accountName: string;
|
|
525
525
|
siteId: string | null;
|
|
526
526
|
offeringId: string | null;
|
|
527
527
|
}, {
|
|
528
528
|
accountId: string;
|
|
529
|
+
accountName: string;
|
|
529
530
|
offeringSetup: boolean;
|
|
530
531
|
investorPortalSetup: boolean;
|
|
531
532
|
paymentMethodSetup: boolean;
|
|
532
533
|
accountContactsSetup: boolean;
|
|
533
|
-
accountName: string;
|
|
534
534
|
siteId: string | null;
|
|
535
535
|
offeringId: string | null;
|
|
536
536
|
}>, "many">;
|
|
@@ -556,11 +556,11 @@ export declare const IPaginatedOnboardingAccountSummaryResponse: z.ZodObject<{
|
|
|
556
556
|
}, "strip", z.ZodTypeAny, {
|
|
557
557
|
items: {
|
|
558
558
|
accountId: string;
|
|
559
|
+
accountName: string;
|
|
559
560
|
offeringSetup: boolean;
|
|
560
561
|
investorPortalSetup: boolean;
|
|
561
562
|
paymentMethodSetup: boolean;
|
|
562
563
|
accountContactsSetup: boolean;
|
|
563
|
-
accountName: string;
|
|
564
564
|
siteId: string | null;
|
|
565
565
|
offeringId: string | null;
|
|
566
566
|
}[];
|
|
@@ -574,11 +574,11 @@ export declare const IPaginatedOnboardingAccountSummaryResponse: z.ZodObject<{
|
|
|
574
574
|
}, {
|
|
575
575
|
items: {
|
|
576
576
|
accountId: string;
|
|
577
|
+
accountName: string;
|
|
577
578
|
offeringSetup: boolean;
|
|
578
579
|
investorPortalSetup: boolean;
|
|
579
580
|
paymentMethodSetup: boolean;
|
|
580
581
|
accountContactsSetup: boolean;
|
|
581
|
-
accountName: string;
|
|
582
582
|
siteId: string | null;
|
|
583
583
|
offeringId: string | null;
|
|
584
584
|
}[];
|
|
@@ -611,21 +611,21 @@ export declare const PatchIssuerAccountZod: z.ZodObject<Omit<{
|
|
|
611
611
|
apiPortal: z.ZodOptional<z.ZodBoolean>;
|
|
612
612
|
}, "apiPortal">, "strip", z.ZodTypeAny, {
|
|
613
613
|
name: string;
|
|
614
|
-
productPrimaries?: boolean | undefined;
|
|
615
|
-
productSecondaries?: boolean | undefined;
|
|
616
|
-
featureDisbursements?: boolean | undefined;
|
|
617
614
|
managedBy?: ManagedByType | undefined;
|
|
618
615
|
platform?: Platform | undefined;
|
|
619
616
|
approversCount?: number | undefined;
|
|
620
617
|
integrationGuideId?: string | null | undefined;
|
|
621
|
-
}, {
|
|
622
|
-
name: string;
|
|
623
618
|
productPrimaries?: boolean | undefined;
|
|
624
619
|
productSecondaries?: boolean | undefined;
|
|
625
620
|
featureDisbursements?: boolean | undefined;
|
|
621
|
+
}, {
|
|
622
|
+
name: string;
|
|
626
623
|
managedBy?: ManagedByType | undefined;
|
|
627
624
|
platform?: Platform | undefined;
|
|
628
625
|
approversCount?: number | undefined;
|
|
629
626
|
integrationGuideId?: string | null | undefined;
|
|
627
|
+
productPrimaries?: boolean | undefined;
|
|
628
|
+
productSecondaries?: boolean | undefined;
|
|
629
|
+
featureDisbursements?: boolean | undefined;
|
|
630
630
|
}>;
|
|
631
631
|
export type PatchIssuerAccountZod = z.infer<typeof PatchIssuerAccountZod>;
|