@devizovaburza/mdm-sdk 0.0.5 → 0.0.6
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/v1/index.cjs +6 -2
- package/dist/v1/index.d.cts +1006 -276
- package/dist/v1/index.d.mts +1006 -276
- package/dist/v1/index.d.ts +1006 -276
- package/dist/v1/index.mjs +6 -2
- package/package.json +1 -1
package/dist/v1/index.mjs
CHANGED
|
@@ -11980,13 +11980,17 @@ const createPartyInputSchema = z$1.object({
|
|
|
11980
11980
|
recipients: z$1.array(bankAccountInputSchema)
|
|
11981
11981
|
});
|
|
11982
11982
|
const partyOutputSchema = z$1.object({
|
|
11983
|
-
party:
|
|
11983
|
+
party: partyCreateOutputSchema.extend({
|
|
11984
|
+
id: z$1.uuid(),
|
|
11985
|
+
isClient: z$1.boolean()
|
|
11986
|
+
}).nullable(),
|
|
11984
11987
|
personalData: individualOutputSchema.partial().nullable(),
|
|
11985
11988
|
organizationData: createOrganizationOutputSchema.partial().nullable(),
|
|
11986
11989
|
bankAccounts: z$1.array(bankAccountOutputSchema).nullable(),
|
|
11987
11990
|
disponents: z$1.array(disponentOutputSchema).nullable(),
|
|
11988
11991
|
addresses: z$1.array(createAddressOutputSchema.optional().nullable()).nullable(),
|
|
11989
|
-
aml: createAmlOutputSchema.nullable()
|
|
11992
|
+
aml: createAmlOutputSchema.nullable(),
|
|
11993
|
+
recipients: z$1.array(bankAccountOutputSchema).nullable()
|
|
11990
11994
|
});
|
|
11991
11995
|
const partiesOutputDataSchema = z$1.array(partyOutputSchema);
|
|
11992
11996
|
const partyUpdateInputSchema = z$1.object({
|