@deepintel-ltd/farmpro-contracts 1.23.0 → 1.23.1

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.
Files changed (53) hide show
  1. package/dist/routes/categories.routes.d.ts +26 -26
  2. package/dist/routes/commodity-deals.routes.d.ts +42 -42
  3. package/dist/routes/crop-profile.routes.d.ts +8 -8
  4. package/dist/routes/farm-enterprises.routes.d.ts +395 -0
  5. package/dist/routes/farm-enterprises.routes.d.ts.map +1 -1
  6. package/dist/routes/farm-enterprises.routes.js +14 -1
  7. package/dist/routes/farms.routes.d.ts +73 -20
  8. package/dist/routes/farms.routes.d.ts.map +1 -1
  9. package/dist/routes/fertigation.routes.d.ts +96 -96
  10. package/dist/routes/field-monitoring.routes.d.ts +2 -2
  11. package/dist/routes/finance.routes.d.ts +8 -8
  12. package/dist/routes/invoices.routes.d.ts +63 -60
  13. package/dist/routes/invoices.routes.d.ts.map +1 -1
  14. package/dist/routes/invoices.routes.js +4 -1
  15. package/dist/routes/monitoring-visualization.routes.d.ts +2 -2
  16. package/dist/routes/notifications.routes.d.ts +12 -12
  17. package/dist/routes/organizations.routes.d.ts +90 -47
  18. package/dist/routes/organizations.routes.d.ts.map +1 -1
  19. package/dist/routes/purchase-orders.routes.d.ts +9 -9
  20. package/dist/routes/suppliers.routes.d.ts +96 -96
  21. package/dist/routes/team-payments.routes.d.ts +105 -105
  22. package/dist/routes/team.routes.d.ts +125 -25
  23. package/dist/routes/team.routes.d.ts.map +1 -1
  24. package/dist/routes/trade-cash-events.routes.d.ts +46 -46
  25. package/dist/routes/waybills.routes.d.ts +61 -57
  26. package/dist/routes/waybills.routes.d.ts.map +1 -1
  27. package/dist/routes/waybills.routes.js +4 -1
  28. package/dist/schemas/categories.schemas.d.ts +21 -21
  29. package/dist/schemas/commodity-deals.schemas.d.ts +18 -18
  30. package/dist/schemas/crop-profile.schemas.d.ts +12 -12
  31. package/dist/schemas/farm-enterprises.schemas.d.ts +185 -0
  32. package/dist/schemas/farm-enterprises.schemas.d.ts.map +1 -1
  33. package/dist/schemas/farm-enterprises.schemas.js +21 -0
  34. package/dist/schemas/farms.schemas.d.ts +121 -19
  35. package/dist/schemas/farms.schemas.d.ts.map +1 -1
  36. package/dist/schemas/farms.schemas.js +15 -1
  37. package/dist/schemas/fertigation.schemas.d.ts +36 -36
  38. package/dist/schemas/field-monitoring.schemas.d.ts +2 -2
  39. package/dist/schemas/finance.schemas.d.ts +8 -8
  40. package/dist/schemas/invoices.schemas.d.ts +39 -39
  41. package/dist/schemas/notifications.schemas.d.ts +18 -18
  42. package/dist/schemas/organizations.schemas.d.ts +105 -46
  43. package/dist/schemas/organizations.schemas.d.ts.map +1 -1
  44. package/dist/schemas/organizations.schemas.js +8 -1
  45. package/dist/schemas/purchase-orders.schemas.d.ts +9 -9
  46. package/dist/schemas/suppliers.schemas.d.ts +96 -96
  47. package/dist/schemas/team-payments.schemas.d.ts +87 -87
  48. package/dist/schemas/team.schemas.d.ts +137 -20
  49. package/dist/schemas/team.schemas.d.ts.map +1 -1
  50. package/dist/schemas/team.schemas.js +29 -1
  51. package/dist/schemas/trade-cash-events.schemas.d.ts +60 -60
  52. package/dist/schemas/waybills.schemas.d.ts +39 -39
  53. package/package.json +1 -1
@@ -2649,27 +2649,30 @@ export declare const organizationsRouter: {
2649
2649
  isPrimary: z.ZodBoolean;
2650
2650
  name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2651
2651
  email: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2652
+ allowedCapabilities: z.ZodDefault<z.ZodArray<z.ZodEnum<["COMMODITY_TRADE"]>, "many">>;
2652
2653
  } & {
2653
2654
  createdAt: z.ZodString;
2654
2655
  updatedAt: z.ZodString;
2655
2656
  }, "strip", z.ZodTypeAny, {
2656
2657
  createdAt: string;
2657
2658
  updatedAt: string;
2659
+ organizationId: string;
2658
2660
  userId: string;
2659
2661
  role: "admin" | "investor";
2660
- organizationId: string;
2661
2662
  isPrimary: boolean;
2663
+ allowedCapabilities: "COMMODITY_TRADE"[];
2662
2664
  email?: string | null | undefined;
2663
2665
  name?: string | null | undefined;
2664
2666
  }, {
2665
2667
  createdAt: string;
2666
2668
  updatedAt: string;
2669
+ organizationId: string;
2667
2670
  userId: string;
2668
2671
  role: "admin" | "investor";
2669
- organizationId: string;
2670
2672
  isPrimary: boolean;
2671
2673
  email?: string | null | undefined;
2672
2674
  name?: string | null | undefined;
2675
+ allowedCapabilities?: "COMMODITY_TRADE"[] | undefined;
2673
2676
  }>;
2674
2677
  relationships: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
2675
2678
  links: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
@@ -2680,10 +2683,11 @@ export declare const organizationsRouter: {
2680
2683
  attributes: {
2681
2684
  createdAt: string;
2682
2685
  updatedAt: string;
2686
+ organizationId: string;
2683
2687
  userId: string;
2684
2688
  role: "admin" | "investor";
2685
- organizationId: string;
2686
2689
  isPrimary: boolean;
2690
+ allowedCapabilities: "COMMODITY_TRADE"[];
2687
2691
  email?: string | null | undefined;
2688
2692
  name?: string | null | undefined;
2689
2693
  };
@@ -2696,12 +2700,13 @@ export declare const organizationsRouter: {
2696
2700
  attributes: {
2697
2701
  createdAt: string;
2698
2702
  updatedAt: string;
2703
+ organizationId: string;
2699
2704
  userId: string;
2700
2705
  role: "admin" | "investor";
2701
- organizationId: string;
2702
2706
  isPrimary: boolean;
2703
2707
  email?: string | null | undefined;
2704
2708
  name?: string | null | undefined;
2709
+ allowedCapabilities?: "COMMODITY_TRADE"[] | undefined;
2705
2710
  };
2706
2711
  relationships?: Record<string, unknown> | undefined;
2707
2712
  links?: Record<string, string> | undefined;
@@ -2738,10 +2743,11 @@ export declare const organizationsRouter: {
2738
2743
  attributes: {
2739
2744
  createdAt: string;
2740
2745
  updatedAt: string;
2746
+ organizationId: string;
2741
2747
  userId: string;
2742
2748
  role: "admin" | "investor";
2743
- organizationId: string;
2744
2749
  isPrimary: boolean;
2750
+ allowedCapabilities: "COMMODITY_TRADE"[];
2745
2751
  email?: string | null | undefined;
2746
2752
  name?: string | null | undefined;
2747
2753
  };
@@ -2766,12 +2772,13 @@ export declare const organizationsRouter: {
2766
2772
  attributes: {
2767
2773
  createdAt: string;
2768
2774
  updatedAt: string;
2775
+ organizationId: string;
2769
2776
  userId: string;
2770
2777
  role: "admin" | "investor";
2771
- organizationId: string;
2772
2778
  isPrimary: boolean;
2773
2779
  email?: string | null | undefined;
2774
2780
  name?: string | null | undefined;
2781
+ allowedCapabilities?: "COMMODITY_TRADE"[] | undefined;
2775
2782
  };
2776
2783
  relationships?: Record<string, unknown> | undefined;
2777
2784
  links?: Record<string, string> | undefined;
@@ -2988,22 +2995,27 @@ export declare const organizationsRouter: {
2988
2995
  userId: z.ZodOptional<z.ZodString>;
2989
2996
  email: z.ZodOptional<z.ZodString>;
2990
2997
  role: z.ZodDefault<z.ZodOptional<z.ZodEnum<["admin", "investor"]>>>;
2998
+ allowedCapabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["COMMODITY_TRADE"]>, "many">>;
2991
2999
  }, "strip", z.ZodTypeAny, {
2992
3000
  role: "admin" | "investor";
2993
3001
  email?: string | undefined;
2994
3002
  userId?: string | undefined;
3003
+ allowedCapabilities?: "COMMODITY_TRADE"[] | undefined;
2995
3004
  }, {
2996
3005
  email?: string | undefined;
2997
3006
  userId?: string | undefined;
2998
3007
  role?: "admin" | "investor" | undefined;
3008
+ allowedCapabilities?: "COMMODITY_TRADE"[] | undefined;
2999
3009
  }>, {
3000
3010
  role: "admin" | "investor";
3001
3011
  email?: string | undefined;
3002
3012
  userId?: string | undefined;
3013
+ allowedCapabilities?: "COMMODITY_TRADE"[] | undefined;
3003
3014
  }, {
3004
3015
  email?: string | undefined;
3005
3016
  userId?: string | undefined;
3006
3017
  role?: "admin" | "investor" | undefined;
3018
+ allowedCapabilities?: "COMMODITY_TRADE"[] | undefined;
3007
3019
  }>;
3008
3020
  }, "strip", z.ZodTypeAny, {
3009
3021
  type: "organization-contacts";
@@ -3011,6 +3023,7 @@ export declare const organizationsRouter: {
3011
3023
  role: "admin" | "investor";
3012
3024
  email?: string | undefined;
3013
3025
  userId?: string | undefined;
3026
+ allowedCapabilities?: "COMMODITY_TRADE"[] | undefined;
3014
3027
  };
3015
3028
  }, {
3016
3029
  type: "organization-contacts";
@@ -3018,6 +3031,7 @@ export declare const organizationsRouter: {
3018
3031
  email?: string | undefined;
3019
3032
  userId?: string | undefined;
3020
3033
  role?: "admin" | "investor" | undefined;
3034
+ allowedCapabilities?: "COMMODITY_TRADE"[] | undefined;
3021
3035
  };
3022
3036
  }>;
3023
3037
  }, "strip", z.ZodTypeAny, {
@@ -3027,6 +3041,7 @@ export declare const organizationsRouter: {
3027
3041
  role: "admin" | "investor";
3028
3042
  email?: string | undefined;
3029
3043
  userId?: string | undefined;
3044
+ allowedCapabilities?: "COMMODITY_TRADE"[] | undefined;
3030
3045
  };
3031
3046
  };
3032
3047
  }, {
@@ -3036,6 +3051,7 @@ export declare const organizationsRouter: {
3036
3051
  email?: string | undefined;
3037
3052
  userId?: string | undefined;
3038
3053
  role?: "admin" | "investor" | undefined;
3054
+ allowedCapabilities?: "COMMODITY_TRADE"[] | undefined;
3039
3055
  };
3040
3056
  };
3041
3057
  }>;
@@ -3052,27 +3068,30 @@ export declare const organizationsRouter: {
3052
3068
  isPrimary: z.ZodBoolean;
3053
3069
  name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3054
3070
  email: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3071
+ allowedCapabilities: z.ZodDefault<z.ZodArray<z.ZodEnum<["COMMODITY_TRADE"]>, "many">>;
3055
3072
  } & {
3056
3073
  createdAt: z.ZodString;
3057
3074
  updatedAt: z.ZodString;
3058
3075
  }, "strip", z.ZodTypeAny, {
3059
3076
  createdAt: string;
3060
3077
  updatedAt: string;
3078
+ organizationId: string;
3061
3079
  userId: string;
3062
3080
  role: "admin" | "investor";
3063
- organizationId: string;
3064
3081
  isPrimary: boolean;
3082
+ allowedCapabilities: "COMMODITY_TRADE"[];
3065
3083
  email?: string | null | undefined;
3066
3084
  name?: string | null | undefined;
3067
3085
  }, {
3068
3086
  createdAt: string;
3069
3087
  updatedAt: string;
3088
+ organizationId: string;
3070
3089
  userId: string;
3071
3090
  role: "admin" | "investor";
3072
- organizationId: string;
3073
3091
  isPrimary: boolean;
3074
3092
  email?: string | null | undefined;
3075
3093
  name?: string | null | undefined;
3094
+ allowedCapabilities?: "COMMODITY_TRADE"[] | undefined;
3076
3095
  }>;
3077
3096
  relationships: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
3078
3097
  links: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
@@ -3083,10 +3102,11 @@ export declare const organizationsRouter: {
3083
3102
  attributes: {
3084
3103
  createdAt: string;
3085
3104
  updatedAt: string;
3105
+ organizationId: string;
3086
3106
  userId: string;
3087
3107
  role: "admin" | "investor";
3088
- organizationId: string;
3089
3108
  isPrimary: boolean;
3109
+ allowedCapabilities: "COMMODITY_TRADE"[];
3090
3110
  email?: string | null | undefined;
3091
3111
  name?: string | null | undefined;
3092
3112
  };
@@ -3099,12 +3119,13 @@ export declare const organizationsRouter: {
3099
3119
  attributes: {
3100
3120
  createdAt: string;
3101
3121
  updatedAt: string;
3122
+ organizationId: string;
3102
3123
  userId: string;
3103
3124
  role: "admin" | "investor";
3104
- organizationId: string;
3105
3125
  isPrimary: boolean;
3106
3126
  email?: string | null | undefined;
3107
3127
  name?: string | null | undefined;
3128
+ allowedCapabilities?: "COMMODITY_TRADE"[] | undefined;
3108
3129
  };
3109
3130
  relationships?: Record<string, unknown> | undefined;
3110
3131
  links?: Record<string, string> | undefined;
@@ -3141,10 +3162,11 @@ export declare const organizationsRouter: {
3141
3162
  attributes: {
3142
3163
  createdAt: string;
3143
3164
  updatedAt: string;
3165
+ organizationId: string;
3144
3166
  userId: string;
3145
3167
  role: "admin" | "investor";
3146
- organizationId: string;
3147
3168
  isPrimary: boolean;
3169
+ allowedCapabilities: "COMMODITY_TRADE"[];
3148
3170
  email?: string | null | undefined;
3149
3171
  name?: string | null | undefined;
3150
3172
  };
@@ -3169,12 +3191,13 @@ export declare const organizationsRouter: {
3169
3191
  attributes: {
3170
3192
  createdAt: string;
3171
3193
  updatedAt: string;
3194
+ organizationId: string;
3172
3195
  userId: string;
3173
3196
  role: "admin" | "investor";
3174
- organizationId: string;
3175
3197
  isPrimary: boolean;
3176
3198
  email?: string | null | undefined;
3177
3199
  name?: string | null | undefined;
3200
+ allowedCapabilities?: "COMMODITY_TRADE"[] | undefined;
3178
3201
  };
3179
3202
  relationships?: Record<string, unknown> | undefined;
3180
3203
  links?: Record<string, string> | undefined;
@@ -3661,23 +3684,34 @@ export declare const organizationsRouter: {
3661
3684
  data: z.ZodObject<{
3662
3685
  type: z.ZodLiteral<"organization-contacts">;
3663
3686
  id: z.ZodOptional<z.ZodString>;
3664
- attributes: z.ZodObject<{
3665
- role: z.ZodEnum<["admin", "investor"]>;
3687
+ attributes: z.ZodEffects<z.ZodObject<{
3688
+ role: z.ZodOptional<z.ZodEnum<["admin", "investor"]>>;
3689
+ allowedCapabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["COMMODITY_TRADE"]>, "many">>;
3666
3690
  }, "strip", z.ZodTypeAny, {
3667
- role: "admin" | "investor";
3691
+ role?: "admin" | "investor" | undefined;
3692
+ allowedCapabilities?: "COMMODITY_TRADE"[] | undefined;
3668
3693
  }, {
3669
- role: "admin" | "investor";
3694
+ role?: "admin" | "investor" | undefined;
3695
+ allowedCapabilities?: "COMMODITY_TRADE"[] | undefined;
3696
+ }>, {
3697
+ role?: "admin" | "investor" | undefined;
3698
+ allowedCapabilities?: "COMMODITY_TRADE"[] | undefined;
3699
+ }, {
3700
+ role?: "admin" | "investor" | undefined;
3701
+ allowedCapabilities?: "COMMODITY_TRADE"[] | undefined;
3670
3702
  }>;
3671
3703
  }, "strip", z.ZodTypeAny, {
3672
3704
  type: "organization-contacts";
3673
3705
  attributes: {
3674
- role: "admin" | "investor";
3706
+ role?: "admin" | "investor" | undefined;
3707
+ allowedCapabilities?: "COMMODITY_TRADE"[] | undefined;
3675
3708
  };
3676
3709
  id?: string | undefined;
3677
3710
  }, {
3678
3711
  type: "organization-contacts";
3679
3712
  attributes: {
3680
- role: "admin" | "investor";
3713
+ role?: "admin" | "investor" | undefined;
3714
+ allowedCapabilities?: "COMMODITY_TRADE"[] | undefined;
3681
3715
  };
3682
3716
  id?: string | undefined;
3683
3717
  }>;
@@ -3685,7 +3719,8 @@ export declare const organizationsRouter: {
3685
3719
  data: {
3686
3720
  type: "organization-contacts";
3687
3721
  attributes: {
3688
- role: "admin" | "investor";
3722
+ role?: "admin" | "investor" | undefined;
3723
+ allowedCapabilities?: "COMMODITY_TRADE"[] | undefined;
3689
3724
  };
3690
3725
  id?: string | undefined;
3691
3726
  };
@@ -3693,7 +3728,8 @@ export declare const organizationsRouter: {
3693
3728
  data: {
3694
3729
  type: "organization-contacts";
3695
3730
  attributes: {
3696
- role: "admin" | "investor";
3731
+ role?: "admin" | "investor" | undefined;
3732
+ allowedCapabilities?: "COMMODITY_TRADE"[] | undefined;
3697
3733
  };
3698
3734
  id?: string | undefined;
3699
3735
  };
@@ -3711,27 +3747,30 @@ export declare const organizationsRouter: {
3711
3747
  isPrimary: z.ZodBoolean;
3712
3748
  name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3713
3749
  email: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3750
+ allowedCapabilities: z.ZodDefault<z.ZodArray<z.ZodEnum<["COMMODITY_TRADE"]>, "many">>;
3714
3751
  } & {
3715
3752
  createdAt: z.ZodString;
3716
3753
  updatedAt: z.ZodString;
3717
3754
  }, "strip", z.ZodTypeAny, {
3718
3755
  createdAt: string;
3719
3756
  updatedAt: string;
3757
+ organizationId: string;
3720
3758
  userId: string;
3721
3759
  role: "admin" | "investor";
3722
- organizationId: string;
3723
3760
  isPrimary: boolean;
3761
+ allowedCapabilities: "COMMODITY_TRADE"[];
3724
3762
  email?: string | null | undefined;
3725
3763
  name?: string | null | undefined;
3726
3764
  }, {
3727
3765
  createdAt: string;
3728
3766
  updatedAt: string;
3767
+ organizationId: string;
3729
3768
  userId: string;
3730
3769
  role: "admin" | "investor";
3731
- organizationId: string;
3732
3770
  isPrimary: boolean;
3733
3771
  email?: string | null | undefined;
3734
3772
  name?: string | null | undefined;
3773
+ allowedCapabilities?: "COMMODITY_TRADE"[] | undefined;
3735
3774
  }>;
3736
3775
  relationships: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
3737
3776
  links: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
@@ -3742,10 +3781,11 @@ export declare const organizationsRouter: {
3742
3781
  attributes: {
3743
3782
  createdAt: string;
3744
3783
  updatedAt: string;
3784
+ organizationId: string;
3745
3785
  userId: string;
3746
3786
  role: "admin" | "investor";
3747
- organizationId: string;
3748
3787
  isPrimary: boolean;
3788
+ allowedCapabilities: "COMMODITY_TRADE"[];
3749
3789
  email?: string | null | undefined;
3750
3790
  name?: string | null | undefined;
3751
3791
  };
@@ -3758,12 +3798,13 @@ export declare const organizationsRouter: {
3758
3798
  attributes: {
3759
3799
  createdAt: string;
3760
3800
  updatedAt: string;
3801
+ organizationId: string;
3761
3802
  userId: string;
3762
3803
  role: "admin" | "investor";
3763
- organizationId: string;
3764
3804
  isPrimary: boolean;
3765
3805
  email?: string | null | undefined;
3766
3806
  name?: string | null | undefined;
3807
+ allowedCapabilities?: "COMMODITY_TRADE"[] | undefined;
3767
3808
  };
3768
3809
  relationships?: Record<string, unknown> | undefined;
3769
3810
  links?: Record<string, string> | undefined;
@@ -3800,10 +3841,11 @@ export declare const organizationsRouter: {
3800
3841
  attributes: {
3801
3842
  createdAt: string;
3802
3843
  updatedAt: string;
3844
+ organizationId: string;
3803
3845
  userId: string;
3804
3846
  role: "admin" | "investor";
3805
- organizationId: string;
3806
3847
  isPrimary: boolean;
3848
+ allowedCapabilities: "COMMODITY_TRADE"[];
3807
3849
  email?: string | null | undefined;
3808
3850
  name?: string | null | undefined;
3809
3851
  };
@@ -3828,12 +3870,13 @@ export declare const organizationsRouter: {
3828
3870
  attributes: {
3829
3871
  createdAt: string;
3830
3872
  updatedAt: string;
3873
+ organizationId: string;
3831
3874
  userId: string;
3832
3875
  role: "admin" | "investor";
3833
- organizationId: string;
3834
3876
  isPrimary: boolean;
3835
3877
  email?: string | null | undefined;
3836
3878
  name?: string | null | undefined;
3879
+ allowedCapabilities?: "COMMODITY_TRADE"[] | undefined;
3837
3880
  };
3838
3881
  relationships?: Record<string, unknown> | undefined;
3839
3882
  links?: Record<string, string> | undefined;
@@ -4344,10 +4387,10 @@ export declare const organizationsRouter: {
4344
4387
  }, "strip", z.ZodTypeAny, {
4345
4388
  createdAt: string;
4346
4389
  updatedAt: string;
4347
- isDefault: boolean;
4348
4390
  bankName: string;
4349
4391
  accountNumber: string;
4350
4392
  accountName: string;
4393
+ isDefault: boolean;
4351
4394
  }, {
4352
4395
  createdAt: string;
4353
4396
  updatedAt: string;
@@ -4365,10 +4408,10 @@ export declare const organizationsRouter: {
4365
4408
  attributes: {
4366
4409
  createdAt: string;
4367
4410
  updatedAt: string;
4368
- isDefault: boolean;
4369
4411
  bankName: string;
4370
4412
  accountNumber: string;
4371
4413
  accountName: string;
4414
+ isDefault: boolean;
4372
4415
  };
4373
4416
  relationships?: Record<string, unknown> | undefined;
4374
4417
  links?: Record<string, string> | undefined;
@@ -4419,10 +4462,10 @@ export declare const organizationsRouter: {
4419
4462
  attributes: {
4420
4463
  createdAt: string;
4421
4464
  updatedAt: string;
4422
- isDefault: boolean;
4423
4465
  bankName: string;
4424
4466
  accountNumber: string;
4425
4467
  accountName: string;
4468
+ isDefault: boolean;
4426
4469
  };
4427
4470
  relationships?: Record<string, unknown> | undefined;
4428
4471
  links?: Record<string, string> | undefined;
@@ -4667,10 +4710,10 @@ export declare const organizationsRouter: {
4667
4710
  accountName: z.ZodString;
4668
4711
  isDefault: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
4669
4712
  }, "strip", z.ZodTypeAny, {
4670
- isDefault: boolean;
4671
4713
  bankName: string;
4672
4714
  accountNumber: string;
4673
4715
  accountName: string;
4716
+ isDefault: boolean;
4674
4717
  }, {
4675
4718
  bankName: string;
4676
4719
  accountNumber: string;
@@ -4680,10 +4723,10 @@ export declare const organizationsRouter: {
4680
4723
  }, "strip", z.ZodTypeAny, {
4681
4724
  type: "bank-accounts";
4682
4725
  attributes: {
4683
- isDefault: boolean;
4684
4726
  bankName: string;
4685
4727
  accountNumber: string;
4686
4728
  accountName: string;
4729
+ isDefault: boolean;
4687
4730
  };
4688
4731
  }, {
4689
4732
  type: "bank-accounts";
@@ -4698,10 +4741,10 @@ export declare const organizationsRouter: {
4698
4741
  data: {
4699
4742
  type: "bank-accounts";
4700
4743
  attributes: {
4701
- isDefault: boolean;
4702
4744
  bankName: string;
4703
4745
  accountNumber: string;
4704
4746
  accountName: string;
4747
+ isDefault: boolean;
4705
4748
  };
4706
4749
  };
4707
4750
  }, {
@@ -4732,10 +4775,10 @@ export declare const organizationsRouter: {
4732
4775
  }, "strip", z.ZodTypeAny, {
4733
4776
  createdAt: string;
4734
4777
  updatedAt: string;
4735
- isDefault: boolean;
4736
4778
  bankName: string;
4737
4779
  accountNumber: string;
4738
4780
  accountName: string;
4781
+ isDefault: boolean;
4739
4782
  }, {
4740
4783
  createdAt: string;
4741
4784
  updatedAt: string;
@@ -4753,10 +4796,10 @@ export declare const organizationsRouter: {
4753
4796
  attributes: {
4754
4797
  createdAt: string;
4755
4798
  updatedAt: string;
4756
- isDefault: boolean;
4757
4799
  bankName: string;
4758
4800
  accountNumber: string;
4759
4801
  accountName: string;
4802
+ isDefault: boolean;
4760
4803
  };
4761
4804
  relationships?: Record<string, unknown> | undefined;
4762
4805
  links?: Record<string, string> | undefined;
@@ -4807,10 +4850,10 @@ export declare const organizationsRouter: {
4807
4850
  attributes: {
4808
4851
  createdAt: string;
4809
4852
  updatedAt: string;
4810
- isDefault: boolean;
4811
4853
  bankName: string;
4812
4854
  accountNumber: string;
4813
4855
  accountName: string;
4856
+ isDefault: boolean;
4814
4857
  };
4815
4858
  relationships?: Record<string, unknown> | undefined;
4816
4859
  links?: Record<string, string> | undefined;
@@ -5246,10 +5289,10 @@ export declare const organizationsRouter: {
5246
5289
  }, "strip", z.ZodTypeAny, {
5247
5290
  createdAt: string;
5248
5291
  updatedAt: string;
5249
- isDefault: boolean;
5250
5292
  bankName: string;
5251
5293
  accountNumber: string;
5252
5294
  accountName: string;
5295
+ isDefault: boolean;
5253
5296
  }, {
5254
5297
  createdAt: string;
5255
5298
  updatedAt: string;
@@ -5267,10 +5310,10 @@ export declare const organizationsRouter: {
5267
5310
  attributes: {
5268
5311
  createdAt: string;
5269
5312
  updatedAt: string;
5270
- isDefault: boolean;
5271
5313
  bankName: string;
5272
5314
  accountNumber: string;
5273
5315
  accountName: string;
5316
+ isDefault: boolean;
5274
5317
  };
5275
5318
  relationships?: Record<string, unknown> | undefined;
5276
5319
  links?: Record<string, string> | undefined;
@@ -5321,10 +5364,10 @@ export declare const organizationsRouter: {
5321
5364
  attributes: {
5322
5365
  createdAt: string;
5323
5366
  updatedAt: string;
5324
- isDefault: boolean;
5325
5367
  bankName: string;
5326
5368
  accountNumber: string;
5327
5369
  accountName: string;
5370
+ isDefault: boolean;
5328
5371
  };
5329
5372
  relationships?: Record<string, unknown> | undefined;
5330
5373
  links?: Record<string, string> | undefined;
@@ -5573,32 +5616,32 @@ export declare const organizationsRouter: {
5573
5616
  accountName: z.ZodOptional<z.ZodString>;
5574
5617
  isDefault: z.ZodOptional<z.ZodBoolean>;
5575
5618
  }, "strip", z.ZodTypeAny, {
5576
- isDefault?: boolean | undefined;
5577
5619
  bankName?: string | undefined;
5578
5620
  accountNumber?: string | undefined;
5579
5621
  accountName?: string | undefined;
5580
- }, {
5581
5622
  isDefault?: boolean | undefined;
5623
+ }, {
5582
5624
  bankName?: string | undefined;
5583
5625
  accountNumber?: string | undefined;
5584
5626
  accountName?: string | undefined;
5627
+ isDefault?: boolean | undefined;
5585
5628
  }>;
5586
5629
  }, "strip", z.ZodTypeAny, {
5587
5630
  type: "bank-accounts";
5588
5631
  attributes: {
5589
- isDefault?: boolean | undefined;
5590
5632
  bankName?: string | undefined;
5591
5633
  accountNumber?: string | undefined;
5592
5634
  accountName?: string | undefined;
5635
+ isDefault?: boolean | undefined;
5593
5636
  };
5594
5637
  id?: string | undefined;
5595
5638
  }, {
5596
5639
  type: "bank-accounts";
5597
5640
  attributes: {
5598
- isDefault?: boolean | undefined;
5599
5641
  bankName?: string | undefined;
5600
5642
  accountNumber?: string | undefined;
5601
5643
  accountName?: string | undefined;
5644
+ isDefault?: boolean | undefined;
5602
5645
  };
5603
5646
  id?: string | undefined;
5604
5647
  }>;
@@ -5606,10 +5649,10 @@ export declare const organizationsRouter: {
5606
5649
  data: {
5607
5650
  type: "bank-accounts";
5608
5651
  attributes: {
5609
- isDefault?: boolean | undefined;
5610
5652
  bankName?: string | undefined;
5611
5653
  accountNumber?: string | undefined;
5612
5654
  accountName?: string | undefined;
5655
+ isDefault?: boolean | undefined;
5613
5656
  };
5614
5657
  id?: string | undefined;
5615
5658
  };
@@ -5617,10 +5660,10 @@ export declare const organizationsRouter: {
5617
5660
  data: {
5618
5661
  type: "bank-accounts";
5619
5662
  attributes: {
5620
- isDefault?: boolean | undefined;
5621
5663
  bankName?: string | undefined;
5622
5664
  accountNumber?: string | undefined;
5623
5665
  accountName?: string | undefined;
5666
+ isDefault?: boolean | undefined;
5624
5667
  };
5625
5668
  id?: string | undefined;
5626
5669
  };
@@ -5642,10 +5685,10 @@ export declare const organizationsRouter: {
5642
5685
  }, "strip", z.ZodTypeAny, {
5643
5686
  createdAt: string;
5644
5687
  updatedAt: string;
5645
- isDefault: boolean;
5646
5688
  bankName: string;
5647
5689
  accountNumber: string;
5648
5690
  accountName: string;
5691
+ isDefault: boolean;
5649
5692
  }, {
5650
5693
  createdAt: string;
5651
5694
  updatedAt: string;
@@ -5663,10 +5706,10 @@ export declare const organizationsRouter: {
5663
5706
  attributes: {
5664
5707
  createdAt: string;
5665
5708
  updatedAt: string;
5666
- isDefault: boolean;
5667
5709
  bankName: string;
5668
5710
  accountNumber: string;
5669
5711
  accountName: string;
5712
+ isDefault: boolean;
5670
5713
  };
5671
5714
  relationships?: Record<string, unknown> | undefined;
5672
5715
  links?: Record<string, string> | undefined;
@@ -5717,10 +5760,10 @@ export declare const organizationsRouter: {
5717
5760
  attributes: {
5718
5761
  createdAt: string;
5719
5762
  updatedAt: string;
5720
- isDefault: boolean;
5721
5763
  bankName: string;
5722
5764
  accountNumber: string;
5723
5765
  accountName: string;
5766
+ isDefault: boolean;
5724
5767
  };
5725
5768
  relationships?: Record<string, unknown> | undefined;
5726
5769
  links?: Record<string, string> | undefined;
@@ -1 +1 @@
1
- {"version":3,"file":"organizations.routes.d.ts","sourceRoot":"","sources":["../../src/routes/organizations.routes.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAyBxB,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA4O9B,CAAC"}
1
+ {"version":3,"file":"organizations.routes.d.ts","sourceRoot":"","sources":["../../src/routes/organizations.routes.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAyBxB,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA4O9B,CAAC"}