@devizovaburza/mdm-sdk 2.2.1 → 2.2.2

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.
@@ -3789,7 +3789,7 @@ declare const partnerApi: OpenAPIHono<{
3789
3789
  }[] | undefined;
3790
3790
  } | null;
3791
3791
  organizationData: {
3792
- id: string;
3792
+ id?: string | undefined;
3793
3793
  partyId?: string | undefined;
3794
3794
  internalId?: string | undefined;
3795
3795
  businessName?: string | undefined;
@@ -4131,7 +4131,7 @@ declare const partnerApi: OpenAPIHono<{
4131
4131
  }[] | undefined;
4132
4132
  } | null;
4133
4133
  organizationData: {
4134
- id: string;
4134
+ id?: string | undefined;
4135
4135
  partyId?: string | undefined;
4136
4136
  internalId?: string | undefined;
4137
4137
  businessName?: string | undefined;
@@ -4473,7 +4473,7 @@ declare const partnerApi: OpenAPIHono<{
4473
4473
  }[] | undefined;
4474
4474
  } | null;
4475
4475
  organizationData: {
4476
- id: string;
4476
+ id?: string | undefined;
4477
4477
  partyId?: string | undefined;
4478
4478
  internalId?: string | undefined;
4479
4479
  businessName?: string | undefined;
@@ -16725,7 +16725,7 @@ declare const partyUpdateInputSchema: z.ZodObject<{
16725
16725
  }, z.core.$strip>>>;
16726
16726
  }, z.core.$strip>>;
16727
16727
  organizationData: z.ZodNullable<z.ZodObject<{
16728
- id: z.ZodUUID;
16728
+ id: z.ZodOptional<z.ZodUUID>;
16729
16729
  partyId: z.ZodOptional<z.ZodUUID>;
16730
16730
  internalId: z.ZodOptional<z.ZodString>;
16731
16731
  businessName: z.ZodOptional<z.ZodString>;
@@ -3789,7 +3789,7 @@ declare const partnerApi: OpenAPIHono<{
3789
3789
  }[] | undefined;
3790
3790
  } | null;
3791
3791
  organizationData: {
3792
- id: string;
3792
+ id?: string | undefined;
3793
3793
  partyId?: string | undefined;
3794
3794
  internalId?: string | undefined;
3795
3795
  businessName?: string | undefined;
@@ -4131,7 +4131,7 @@ declare const partnerApi: OpenAPIHono<{
4131
4131
  }[] | undefined;
4132
4132
  } | null;
4133
4133
  organizationData: {
4134
- id: string;
4134
+ id?: string | undefined;
4135
4135
  partyId?: string | undefined;
4136
4136
  internalId?: string | undefined;
4137
4137
  businessName?: string | undefined;
@@ -4473,7 +4473,7 @@ declare const partnerApi: OpenAPIHono<{
4473
4473
  }[] | undefined;
4474
4474
  } | null;
4475
4475
  organizationData: {
4476
- id: string;
4476
+ id?: string | undefined;
4477
4477
  partyId?: string | undefined;
4478
4478
  internalId?: string | undefined;
4479
4479
  businessName?: string | undefined;
@@ -16725,7 +16725,7 @@ declare const partyUpdateInputSchema: z.ZodObject<{
16725
16725
  }, z.core.$strip>>>;
16726
16726
  }, z.core.$strip>>;
16727
16727
  organizationData: z.ZodNullable<z.ZodObject<{
16728
- id: z.ZodUUID;
16728
+ id: z.ZodOptional<z.ZodUUID>;
16729
16729
  partyId: z.ZodOptional<z.ZodUUID>;
16730
16730
  internalId: z.ZodOptional<z.ZodString>;
16731
16731
  businessName: z.ZodOptional<z.ZodString>;
package/dist/v1/index.mjs CHANGED
@@ -1001,7 +1001,7 @@ const individualUpdateSchema = z.object({
1001
1001
  identityDocuments: z.array(idDocumentInputSchema).optional()
1002
1002
  });
1003
1003
  const organizationUpdateSchema = z.object({
1004
- id: z.uuid(),
1004
+ id: z.uuid().optional(),
1005
1005
  partyId: z.uuid().optional(),
1006
1006
  internalId: z.string().optional(),
1007
1007
  businessName: z.string().optional(),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@devizovaburza/mdm-sdk",
3
- "version": "2.2.1",
3
+ "version": "2.2.2",
4
4
  "author": "Devizová burza a.s.",
5
5
  "license": "ISC",
6
6
  "type": "module",