@devizovaburza/txs-sdk 3.1.14 → 3.1.15

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.
@@ -494,6 +494,10 @@ declare const codesAndOrderRoutes: OpenAPIHono<Env, hono_types.MergeSchemaPath<{
494
494
  paymentChargeType: "SHA" | "OUR" | "BEN" | null;
495
495
  expressPayment: boolean | null;
496
496
  }[];
497
+ dependers?: {
498
+ id: string;
499
+ orderNumber: number;
500
+ }[] | undefined;
497
501
  };
498
502
  };
499
503
  outputFormat: "json";
@@ -762,6 +766,10 @@ declare const codesAndOrderRoutes: OpenAPIHono<Env, hono_types.MergeSchemaPath<{
762
766
  };
763
767
  output: {
764
768
  message: string;
769
+ dependers?: {
770
+ id: string;
771
+ orderNumber: number;
772
+ }[] | undefined;
765
773
  };
766
774
  outputFormat: "json";
767
775
  status: 400;
@@ -1605,6 +1613,10 @@ declare const codesAndOrderRoutes: OpenAPIHono<Env, hono_types.MergeSchemaPath<{
1605
1613
  paymentChargeType: "SHA" | "OUR" | "BEN" | null;
1606
1614
  expressPayment: boolean | null;
1607
1615
  }[];
1616
+ dependers?: {
1617
+ id: string;
1618
+ orderNumber: number;
1619
+ }[] | undefined;
1608
1620
  } | {
1609
1621
  tags: string[];
1610
1622
  type: "SPOT" | "FORWARD" | "LIMIT_ORDER" | "INTERNAL";
@@ -3088,6 +3100,10 @@ declare const codesAndOrderRoutes: OpenAPIHono<Env, hono_types.MergeSchemaPath<{
3088
3100
  email: string | null;
3089
3101
  } | undefined;
3090
3102
  } | null;
3103
+ dependers?: {
3104
+ id: string;
3105
+ orderNumber: number;
3106
+ }[] | undefined;
3091
3107
  } | {
3092
3108
  tags: string[];
3093
3109
  type: "SPOT" | "FORWARD" | "LIMIT_ORDER" | "INTERNAL";
@@ -3765,6 +3781,10 @@ declare const codesAndOrderRoutes: OpenAPIHono<Env, hono_types.MergeSchemaPath<{
3765
3781
  id: string;
3766
3782
  };
3767
3783
  remainingAmount: number | null;
3784
+ dependers?: {
3785
+ id: string;
3786
+ orderNumber: number;
3787
+ }[] | undefined;
3768
3788
  } | {
3769
3789
  tags: string[];
3770
3790
  type: "SPOT" | "FORWARD" | "LIMIT_ORDER" | "INTERNAL";
@@ -4288,6 +4308,10 @@ declare const codesAndOrderRoutes: OpenAPIHono<Env, hono_types.MergeSchemaPath<{
4288
4308
  paymentChargeType: "SHA" | "OUR" | "BEN" | null;
4289
4309
  expressPayment: boolean | null;
4290
4310
  }[];
4311
+ dependers?: {
4312
+ id: string;
4313
+ orderNumber: number;
4314
+ }[] | undefined;
4291
4315
  };
4292
4316
  };
4293
4317
  outputFormat: "json";
@@ -4769,6 +4793,10 @@ declare const codesAndOrderRoutes: OpenAPIHono<Env, hono_types.MergeSchemaPath<{
4769
4793
  email: string | null;
4770
4794
  } | undefined;
4771
4795
  } | null;
4796
+ dependers?: {
4797
+ id: string;
4798
+ orderNumber: number;
4799
+ }[] | undefined;
4772
4800
  } | {
4773
4801
  tags: string[];
4774
4802
  type: "SPOT" | "FORWARD" | "LIMIT_ORDER" | "INTERNAL";
@@ -7328,6 +7356,10 @@ declare const organizationRoutes: OpenAPIHono<Env, hono_types.MergeSchemaPath<{
7328
7356
  id: string;
7329
7357
  };
7330
7358
  remainingAmount: number | null;
7359
+ dependers?: {
7360
+ id: string;
7361
+ orderNumber: number;
7362
+ }[] | undefined;
7331
7363
  } | {
7332
7364
  tags: string[];
7333
7365
  type: "SPOT" | "FORWARD" | "LIMIT_ORDER" | "INTERNAL";
@@ -10882,6 +10914,10 @@ declare const bankAndMdmRoutes: OpenAPIHono<Env, hono_types.MergeSchemaPath<{
10882
10914
  paymentChargeType: "SHA" | "OUR" | "BEN" | null;
10883
10915
  expressPayment: boolean | null;
10884
10916
  }[];
10917
+ dependers?: {
10918
+ id: string;
10919
+ orderNumber: number;
10920
+ }[] | undefined;
10885
10921
  };
10886
10922
  };
10887
10923
  outputFormat: "json";
@@ -38978,6 +39014,10 @@ declare const responseBodySchema$1c: z$1.ZodObject<{
38978
39014
  }>>;
38979
39015
  expressPayment: z$1.ZodNullable<z$1.ZodBoolean>;
38980
39016
  }, z$1.core.$strip>>;
39017
+ dependers: z$1.ZodOptional<z$1.ZodArray<z$1.ZodObject<{
39018
+ id: z$1.ZodUUID;
39019
+ orderNumber: z$1.ZodNumber;
39020
+ }, z$1.core.$strip>>>;
38981
39021
  }, z$1.core.$strip>;
38982
39022
  }, z$1.core.$strip>;
38983
39023
  type GetPrefilledOrderParams = z$1.infer<typeof paramsSchema$Z>;
@@ -45275,6 +45315,10 @@ declare const responseBodySchema$1a: z$1.ZodObject<{
45275
45315
  }>>;
45276
45316
  expressPayment: z$1.ZodNullable<z$1.ZodBoolean>;
45277
45317
  }, z$1.core.$strip>>;
45318
+ dependers: z$1.ZodOptional<z$1.ZodArray<z$1.ZodObject<{
45319
+ id: z$1.ZodUUID;
45320
+ orderNumber: z$1.ZodNumber;
45321
+ }, z$1.core.$strip>>>;
45278
45322
  client: z$1.ZodNullable<z$1.ZodObject<{
45279
45323
  id: z$1.ZodNullable<z$1.ZodString>;
45280
45324
  displayName: z$1.ZodNullable<z$1.ZodString>;
@@ -51969,6 +52013,10 @@ declare const getOrdersResponseSchema: z$1.ZodObject<{
51969
52013
  }>>;
51970
52014
  expressPayment: z$1.ZodNullable<z$1.ZodBoolean>;
51971
52015
  }, z$1.core.$strip>>;
52016
+ dependers: z$1.ZodOptional<z$1.ZodArray<z$1.ZodObject<{
52017
+ id: z$1.ZodUUID;
52018
+ orderNumber: z$1.ZodNumber;
52019
+ }, z$1.core.$strip>>>;
51972
52020
  client: z$1.ZodNullable<z$1.ZodObject<{
51973
52021
  id: z$1.ZodNullable<z$1.ZodString>;
51974
52022
  displayName: z$1.ZodNullable<z$1.ZodString>;
@@ -58461,6 +58509,10 @@ declare const responseBodySchema$19: z$1.ZodObject<{
58461
58509
  }>>;
58462
58510
  expressPayment: z$1.ZodNullable<z$1.ZodBoolean>;
58463
58511
  }, z$1.core.$strip>>;
58512
+ dependers: z$1.ZodOptional<z$1.ZodArray<z$1.ZodObject<{
58513
+ id: z$1.ZodUUID;
58514
+ orderNumber: z$1.ZodNumber;
58515
+ }, z$1.core.$strip>>>;
58464
58516
  client: z$1.ZodNullable<z$1.ZodObject<{
58465
58517
  id: z$1.ZodNullable<z$1.ZodString>;
58466
58518
  displayName: z$1.ZodNullable<z$1.ZodString>;
@@ -70208,6 +70260,10 @@ declare const responseBodySchema$18: z$1.ZodObject<{
70208
70260
  }>>;
70209
70261
  expressPayment: z$1.ZodNullable<z$1.ZodBoolean>;
70210
70262
  }, z$1.core.$strip>>;
70263
+ dependers: z$1.ZodOptional<z$1.ZodArray<z$1.ZodObject<{
70264
+ id: z$1.ZodUUID;
70265
+ orderNumber: z$1.ZodNumber;
70266
+ }, z$1.core.$strip>>>;
70211
70267
  }, z$1.core.$strip>, z$1.ZodObject<{
70212
70268
  tags: z$1.ZodArray<z$1.ZodString>;
70213
70269
  type: z$1.ZodEnum<{
@@ -76622,6 +76678,10 @@ declare const responseBodySchema$12: z$1.ZodObject<{
76622
76678
  }>>;
76623
76679
  expressPayment: z$1.ZodNullable<z$1.ZodBoolean>;
76624
76680
  }, z$1.core.$strip>>;
76681
+ dependers: z$1.ZodOptional<z$1.ZodArray<z$1.ZodObject<{
76682
+ id: z$1.ZodUUID;
76683
+ orderNumber: z$1.ZodNumber;
76684
+ }, z$1.core.$strip>>>;
76625
76685
  }, z$1.core.$strip>;
76626
76686
  }, z$1.core.$strip>;
76627
76687
  interface CreateDraftRequestBody extends z$1.infer<typeof requestBodySchema$u> {
@@ -494,6 +494,10 @@ declare const codesAndOrderRoutes: OpenAPIHono<Env, hono_types.MergeSchemaPath<{
494
494
  paymentChargeType: "SHA" | "OUR" | "BEN" | null;
495
495
  expressPayment: boolean | null;
496
496
  }[];
497
+ dependers?: {
498
+ id: string;
499
+ orderNumber: number;
500
+ }[] | undefined;
497
501
  };
498
502
  };
499
503
  outputFormat: "json";
@@ -762,6 +766,10 @@ declare const codesAndOrderRoutes: OpenAPIHono<Env, hono_types.MergeSchemaPath<{
762
766
  };
763
767
  output: {
764
768
  message: string;
769
+ dependers?: {
770
+ id: string;
771
+ orderNumber: number;
772
+ }[] | undefined;
765
773
  };
766
774
  outputFormat: "json";
767
775
  status: 400;
@@ -1605,6 +1613,10 @@ declare const codesAndOrderRoutes: OpenAPIHono<Env, hono_types.MergeSchemaPath<{
1605
1613
  paymentChargeType: "SHA" | "OUR" | "BEN" | null;
1606
1614
  expressPayment: boolean | null;
1607
1615
  }[];
1616
+ dependers?: {
1617
+ id: string;
1618
+ orderNumber: number;
1619
+ }[] | undefined;
1608
1620
  } | {
1609
1621
  tags: string[];
1610
1622
  type: "SPOT" | "FORWARD" | "LIMIT_ORDER" | "INTERNAL";
@@ -3088,6 +3100,10 @@ declare const codesAndOrderRoutes: OpenAPIHono<Env, hono_types.MergeSchemaPath<{
3088
3100
  email: string | null;
3089
3101
  } | undefined;
3090
3102
  } | null;
3103
+ dependers?: {
3104
+ id: string;
3105
+ orderNumber: number;
3106
+ }[] | undefined;
3091
3107
  } | {
3092
3108
  tags: string[];
3093
3109
  type: "SPOT" | "FORWARD" | "LIMIT_ORDER" | "INTERNAL";
@@ -3765,6 +3781,10 @@ declare const codesAndOrderRoutes: OpenAPIHono<Env, hono_types.MergeSchemaPath<{
3765
3781
  id: string;
3766
3782
  };
3767
3783
  remainingAmount: number | null;
3784
+ dependers?: {
3785
+ id: string;
3786
+ orderNumber: number;
3787
+ }[] | undefined;
3768
3788
  } | {
3769
3789
  tags: string[];
3770
3790
  type: "SPOT" | "FORWARD" | "LIMIT_ORDER" | "INTERNAL";
@@ -4288,6 +4308,10 @@ declare const codesAndOrderRoutes: OpenAPIHono<Env, hono_types.MergeSchemaPath<{
4288
4308
  paymentChargeType: "SHA" | "OUR" | "BEN" | null;
4289
4309
  expressPayment: boolean | null;
4290
4310
  }[];
4311
+ dependers?: {
4312
+ id: string;
4313
+ orderNumber: number;
4314
+ }[] | undefined;
4291
4315
  };
4292
4316
  };
4293
4317
  outputFormat: "json";
@@ -4769,6 +4793,10 @@ declare const codesAndOrderRoutes: OpenAPIHono<Env, hono_types.MergeSchemaPath<{
4769
4793
  email: string | null;
4770
4794
  } | undefined;
4771
4795
  } | null;
4796
+ dependers?: {
4797
+ id: string;
4798
+ orderNumber: number;
4799
+ }[] | undefined;
4772
4800
  } | {
4773
4801
  tags: string[];
4774
4802
  type: "SPOT" | "FORWARD" | "LIMIT_ORDER" | "INTERNAL";
@@ -7328,6 +7356,10 @@ declare const organizationRoutes: OpenAPIHono<Env, hono_types.MergeSchemaPath<{
7328
7356
  id: string;
7329
7357
  };
7330
7358
  remainingAmount: number | null;
7359
+ dependers?: {
7360
+ id: string;
7361
+ orderNumber: number;
7362
+ }[] | undefined;
7331
7363
  } | {
7332
7364
  tags: string[];
7333
7365
  type: "SPOT" | "FORWARD" | "LIMIT_ORDER" | "INTERNAL";
@@ -10882,6 +10914,10 @@ declare const bankAndMdmRoutes: OpenAPIHono<Env, hono_types.MergeSchemaPath<{
10882
10914
  paymentChargeType: "SHA" | "OUR" | "BEN" | null;
10883
10915
  expressPayment: boolean | null;
10884
10916
  }[];
10917
+ dependers?: {
10918
+ id: string;
10919
+ orderNumber: number;
10920
+ }[] | undefined;
10885
10921
  };
10886
10922
  };
10887
10923
  outputFormat: "json";
@@ -38978,6 +39014,10 @@ declare const responseBodySchema$1c: z$1.ZodObject<{
38978
39014
  }>>;
38979
39015
  expressPayment: z$1.ZodNullable<z$1.ZodBoolean>;
38980
39016
  }, z$1.core.$strip>>;
39017
+ dependers: z$1.ZodOptional<z$1.ZodArray<z$1.ZodObject<{
39018
+ id: z$1.ZodUUID;
39019
+ orderNumber: z$1.ZodNumber;
39020
+ }, z$1.core.$strip>>>;
38981
39021
  }, z$1.core.$strip>;
38982
39022
  }, z$1.core.$strip>;
38983
39023
  type GetPrefilledOrderParams = z$1.infer<typeof paramsSchema$Z>;
@@ -45275,6 +45315,10 @@ declare const responseBodySchema$1a: z$1.ZodObject<{
45275
45315
  }>>;
45276
45316
  expressPayment: z$1.ZodNullable<z$1.ZodBoolean>;
45277
45317
  }, z$1.core.$strip>>;
45318
+ dependers: z$1.ZodOptional<z$1.ZodArray<z$1.ZodObject<{
45319
+ id: z$1.ZodUUID;
45320
+ orderNumber: z$1.ZodNumber;
45321
+ }, z$1.core.$strip>>>;
45278
45322
  client: z$1.ZodNullable<z$1.ZodObject<{
45279
45323
  id: z$1.ZodNullable<z$1.ZodString>;
45280
45324
  displayName: z$1.ZodNullable<z$1.ZodString>;
@@ -51969,6 +52013,10 @@ declare const getOrdersResponseSchema: z$1.ZodObject<{
51969
52013
  }>>;
51970
52014
  expressPayment: z$1.ZodNullable<z$1.ZodBoolean>;
51971
52015
  }, z$1.core.$strip>>;
52016
+ dependers: z$1.ZodOptional<z$1.ZodArray<z$1.ZodObject<{
52017
+ id: z$1.ZodUUID;
52018
+ orderNumber: z$1.ZodNumber;
52019
+ }, z$1.core.$strip>>>;
51972
52020
  client: z$1.ZodNullable<z$1.ZodObject<{
51973
52021
  id: z$1.ZodNullable<z$1.ZodString>;
51974
52022
  displayName: z$1.ZodNullable<z$1.ZodString>;
@@ -58461,6 +58509,10 @@ declare const responseBodySchema$19: z$1.ZodObject<{
58461
58509
  }>>;
58462
58510
  expressPayment: z$1.ZodNullable<z$1.ZodBoolean>;
58463
58511
  }, z$1.core.$strip>>;
58512
+ dependers: z$1.ZodOptional<z$1.ZodArray<z$1.ZodObject<{
58513
+ id: z$1.ZodUUID;
58514
+ orderNumber: z$1.ZodNumber;
58515
+ }, z$1.core.$strip>>>;
58464
58516
  client: z$1.ZodNullable<z$1.ZodObject<{
58465
58517
  id: z$1.ZodNullable<z$1.ZodString>;
58466
58518
  displayName: z$1.ZodNullable<z$1.ZodString>;
@@ -70208,6 +70260,10 @@ declare const responseBodySchema$18: z$1.ZodObject<{
70208
70260
  }>>;
70209
70261
  expressPayment: z$1.ZodNullable<z$1.ZodBoolean>;
70210
70262
  }, z$1.core.$strip>>;
70263
+ dependers: z$1.ZodOptional<z$1.ZodArray<z$1.ZodObject<{
70264
+ id: z$1.ZodUUID;
70265
+ orderNumber: z$1.ZodNumber;
70266
+ }, z$1.core.$strip>>>;
70211
70267
  }, z$1.core.$strip>, z$1.ZodObject<{
70212
70268
  tags: z$1.ZodArray<z$1.ZodString>;
70213
70269
  type: z$1.ZodEnum<{
@@ -76622,6 +76678,10 @@ declare const responseBodySchema$12: z$1.ZodObject<{
76622
76678
  }>>;
76623
76679
  expressPayment: z$1.ZodNullable<z$1.ZodBoolean>;
76624
76680
  }, z$1.core.$strip>>;
76681
+ dependers: z$1.ZodOptional<z$1.ZodArray<z$1.ZodObject<{
76682
+ id: z$1.ZodUUID;
76683
+ orderNumber: z$1.ZodNumber;
76684
+ }, z$1.core.$strip>>>;
76625
76685
  }, z$1.core.$strip>;
76626
76686
  }, z$1.core.$strip>;
76627
76687
  interface CreateDraftRequestBody extends z$1.infer<typeof requestBodySchema$u> {
@@ -494,6 +494,10 @@ declare const codesAndOrderRoutes: OpenAPIHono<Env, hono_types.MergeSchemaPath<{
494
494
  paymentChargeType: "SHA" | "OUR" | "BEN" | null;
495
495
  expressPayment: boolean | null;
496
496
  }[];
497
+ dependers?: {
498
+ id: string;
499
+ orderNumber: number;
500
+ }[] | undefined;
497
501
  };
498
502
  };
499
503
  outputFormat: "json";
@@ -762,6 +766,10 @@ declare const codesAndOrderRoutes: OpenAPIHono<Env, hono_types.MergeSchemaPath<{
762
766
  };
763
767
  output: {
764
768
  message: string;
769
+ dependers?: {
770
+ id: string;
771
+ orderNumber: number;
772
+ }[] | undefined;
765
773
  };
766
774
  outputFormat: "json";
767
775
  status: 400;
@@ -1605,6 +1613,10 @@ declare const codesAndOrderRoutes: OpenAPIHono<Env, hono_types.MergeSchemaPath<{
1605
1613
  paymentChargeType: "SHA" | "OUR" | "BEN" | null;
1606
1614
  expressPayment: boolean | null;
1607
1615
  }[];
1616
+ dependers?: {
1617
+ id: string;
1618
+ orderNumber: number;
1619
+ }[] | undefined;
1608
1620
  } | {
1609
1621
  tags: string[];
1610
1622
  type: "SPOT" | "FORWARD" | "LIMIT_ORDER" | "INTERNAL";
@@ -3088,6 +3100,10 @@ declare const codesAndOrderRoutes: OpenAPIHono<Env, hono_types.MergeSchemaPath<{
3088
3100
  email: string | null;
3089
3101
  } | undefined;
3090
3102
  } | null;
3103
+ dependers?: {
3104
+ id: string;
3105
+ orderNumber: number;
3106
+ }[] | undefined;
3091
3107
  } | {
3092
3108
  tags: string[];
3093
3109
  type: "SPOT" | "FORWARD" | "LIMIT_ORDER" | "INTERNAL";
@@ -3765,6 +3781,10 @@ declare const codesAndOrderRoutes: OpenAPIHono<Env, hono_types.MergeSchemaPath<{
3765
3781
  id: string;
3766
3782
  };
3767
3783
  remainingAmount: number | null;
3784
+ dependers?: {
3785
+ id: string;
3786
+ orderNumber: number;
3787
+ }[] | undefined;
3768
3788
  } | {
3769
3789
  tags: string[];
3770
3790
  type: "SPOT" | "FORWARD" | "LIMIT_ORDER" | "INTERNAL";
@@ -4288,6 +4308,10 @@ declare const codesAndOrderRoutes: OpenAPIHono<Env, hono_types.MergeSchemaPath<{
4288
4308
  paymentChargeType: "SHA" | "OUR" | "BEN" | null;
4289
4309
  expressPayment: boolean | null;
4290
4310
  }[];
4311
+ dependers?: {
4312
+ id: string;
4313
+ orderNumber: number;
4314
+ }[] | undefined;
4291
4315
  };
4292
4316
  };
4293
4317
  outputFormat: "json";
@@ -4769,6 +4793,10 @@ declare const codesAndOrderRoutes: OpenAPIHono<Env, hono_types.MergeSchemaPath<{
4769
4793
  email: string | null;
4770
4794
  } | undefined;
4771
4795
  } | null;
4796
+ dependers?: {
4797
+ id: string;
4798
+ orderNumber: number;
4799
+ }[] | undefined;
4772
4800
  } | {
4773
4801
  tags: string[];
4774
4802
  type: "SPOT" | "FORWARD" | "LIMIT_ORDER" | "INTERNAL";
@@ -7328,6 +7356,10 @@ declare const organizationRoutes: OpenAPIHono<Env, hono_types.MergeSchemaPath<{
7328
7356
  id: string;
7329
7357
  };
7330
7358
  remainingAmount: number | null;
7359
+ dependers?: {
7360
+ id: string;
7361
+ orderNumber: number;
7362
+ }[] | undefined;
7331
7363
  } | {
7332
7364
  tags: string[];
7333
7365
  type: "SPOT" | "FORWARD" | "LIMIT_ORDER" | "INTERNAL";
@@ -10882,6 +10914,10 @@ declare const bankAndMdmRoutes: OpenAPIHono<Env, hono_types.MergeSchemaPath<{
10882
10914
  paymentChargeType: "SHA" | "OUR" | "BEN" | null;
10883
10915
  expressPayment: boolean | null;
10884
10916
  }[];
10917
+ dependers?: {
10918
+ id: string;
10919
+ orderNumber: number;
10920
+ }[] | undefined;
10885
10921
  };
10886
10922
  };
10887
10923
  outputFormat: "json";
@@ -38978,6 +39014,10 @@ declare const responseBodySchema$1c: z$1.ZodObject<{
38978
39014
  }>>;
38979
39015
  expressPayment: z$1.ZodNullable<z$1.ZodBoolean>;
38980
39016
  }, z$1.core.$strip>>;
39017
+ dependers: z$1.ZodOptional<z$1.ZodArray<z$1.ZodObject<{
39018
+ id: z$1.ZodUUID;
39019
+ orderNumber: z$1.ZodNumber;
39020
+ }, z$1.core.$strip>>>;
38981
39021
  }, z$1.core.$strip>;
38982
39022
  }, z$1.core.$strip>;
38983
39023
  type GetPrefilledOrderParams = z$1.infer<typeof paramsSchema$Z>;
@@ -45275,6 +45315,10 @@ declare const responseBodySchema$1a: z$1.ZodObject<{
45275
45315
  }>>;
45276
45316
  expressPayment: z$1.ZodNullable<z$1.ZodBoolean>;
45277
45317
  }, z$1.core.$strip>>;
45318
+ dependers: z$1.ZodOptional<z$1.ZodArray<z$1.ZodObject<{
45319
+ id: z$1.ZodUUID;
45320
+ orderNumber: z$1.ZodNumber;
45321
+ }, z$1.core.$strip>>>;
45278
45322
  client: z$1.ZodNullable<z$1.ZodObject<{
45279
45323
  id: z$1.ZodNullable<z$1.ZodString>;
45280
45324
  displayName: z$1.ZodNullable<z$1.ZodString>;
@@ -51969,6 +52013,10 @@ declare const getOrdersResponseSchema: z$1.ZodObject<{
51969
52013
  }>>;
51970
52014
  expressPayment: z$1.ZodNullable<z$1.ZodBoolean>;
51971
52015
  }, z$1.core.$strip>>;
52016
+ dependers: z$1.ZodOptional<z$1.ZodArray<z$1.ZodObject<{
52017
+ id: z$1.ZodUUID;
52018
+ orderNumber: z$1.ZodNumber;
52019
+ }, z$1.core.$strip>>>;
51972
52020
  client: z$1.ZodNullable<z$1.ZodObject<{
51973
52021
  id: z$1.ZodNullable<z$1.ZodString>;
51974
52022
  displayName: z$1.ZodNullable<z$1.ZodString>;
@@ -58461,6 +58509,10 @@ declare const responseBodySchema$19: z$1.ZodObject<{
58461
58509
  }>>;
58462
58510
  expressPayment: z$1.ZodNullable<z$1.ZodBoolean>;
58463
58511
  }, z$1.core.$strip>>;
58512
+ dependers: z$1.ZodOptional<z$1.ZodArray<z$1.ZodObject<{
58513
+ id: z$1.ZodUUID;
58514
+ orderNumber: z$1.ZodNumber;
58515
+ }, z$1.core.$strip>>>;
58464
58516
  client: z$1.ZodNullable<z$1.ZodObject<{
58465
58517
  id: z$1.ZodNullable<z$1.ZodString>;
58466
58518
  displayName: z$1.ZodNullable<z$1.ZodString>;
@@ -70208,6 +70260,10 @@ declare const responseBodySchema$18: z$1.ZodObject<{
70208
70260
  }>>;
70209
70261
  expressPayment: z$1.ZodNullable<z$1.ZodBoolean>;
70210
70262
  }, z$1.core.$strip>>;
70263
+ dependers: z$1.ZodOptional<z$1.ZodArray<z$1.ZodObject<{
70264
+ id: z$1.ZodUUID;
70265
+ orderNumber: z$1.ZodNumber;
70266
+ }, z$1.core.$strip>>>;
70211
70267
  }, z$1.core.$strip>, z$1.ZodObject<{
70212
70268
  tags: z$1.ZodArray<z$1.ZodString>;
70213
70269
  type: z$1.ZodEnum<{
@@ -76622,6 +76678,10 @@ declare const responseBodySchema$12: z$1.ZodObject<{
76622
76678
  }>>;
76623
76679
  expressPayment: z$1.ZodNullable<z$1.ZodBoolean>;
76624
76680
  }, z$1.core.$strip>>;
76681
+ dependers: z$1.ZodOptional<z$1.ZodArray<z$1.ZodObject<{
76682
+ id: z$1.ZodUUID;
76683
+ orderNumber: z$1.ZodNumber;
76684
+ }, z$1.core.$strip>>>;
76625
76685
  }, z$1.core.$strip>;
76626
76686
  }, z$1.core.$strip>;
76627
76687
  interface CreateDraftRequestBody extends z$1.infer<typeof requestBodySchema$u> {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@devizovaburza/txs-sdk",
3
- "version": "3.1.14",
3
+ "version": "3.1.15",
4
4
  "author": "Devizová Burza a.s.",
5
5
  "license": "ISC",
6
6
  "type": "module",