@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 CHANGED
@@ -11999,13 +11999,17 @@ const createPartyInputSchema = zodOpenapi.z.object({
11999
11999
  recipients: zodOpenapi.z.array(bankAccountInputSchema)
12000
12000
  });
12001
12001
  const partyOutputSchema = zodOpenapi.z.object({
12002
- party: partySchema.nullable(),
12002
+ party: partyCreateOutputSchema.extend({
12003
+ id: zodOpenapi.z.uuid(),
12004
+ isClient: zodOpenapi.z.boolean()
12005
+ }).nullable(),
12003
12006
  personalData: individualOutputSchema.partial().nullable(),
12004
12007
  organizationData: createOrganizationOutputSchema.partial().nullable(),
12005
12008
  bankAccounts: zodOpenapi.z.array(bankAccountOutputSchema).nullable(),
12006
12009
  disponents: zodOpenapi.z.array(disponentOutputSchema).nullable(),
12007
12010
  addresses: zodOpenapi.z.array(createAddressOutputSchema.optional().nullable()).nullable(),
12008
- aml: createAmlOutputSchema.nullable()
12011
+ aml: createAmlOutputSchema.nullable(),
12012
+ recipients: zodOpenapi.z.array(bankAccountOutputSchema).nullable()
12009
12013
  });
12010
12014
  const partiesOutputDataSchema = zodOpenapi.z.array(partyOutputSchema);
12011
12015
  const partyUpdateInputSchema = zodOpenapi.z.object({