@voyantjs/crm 0.19.0 → 0.21.0
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/routes/accounts.d.ts +138 -0
- package/dist/routes/accounts.d.ts.map +1 -1
- package/dist/routes/accounts.js +25 -1
- package/dist/routes/index.d.ts +138 -0
- package/dist/routes/index.d.ts.map +1 -1
- package/dist/schema-accounts.d.ts +237 -0
- package/dist/schema-accounts.d.ts.map +1 -1
- package/dist/schema-accounts.js +34 -1
- package/dist/service/accounts-organizations.d.ts +4 -0
- package/dist/service/accounts-organizations.d.ts.map +1 -1
- package/dist/service/accounts-people.d.ts +399 -0
- package/dist/service/accounts-people.d.ts.map +1 -1
- package/dist/service/accounts-people.js +58 -1
- package/dist/service/accounts-shared.d.ts +2 -0
- package/dist/service/accounts-shared.d.ts.map +1 -1
- package/dist/service/accounts-shared.js +2 -0
- package/dist/service/accounts.d.ts +402 -0
- package/dist/service/accounts.d.ts.map +1 -1
- package/dist/service/index.d.ts +402 -0
- package/dist/service/index.d.ts.map +1 -1
- package/dist/validation.d.ts +60 -0
- package/dist/validation.d.ts.map +1 -1
- package/dist/validation.js +22 -0
- package/package.json +5 -5
|
@@ -4,7 +4,9 @@ export declare const accountsService: {
|
|
|
4
4
|
id: string;
|
|
5
5
|
organizationId: string | null;
|
|
6
6
|
firstName: string;
|
|
7
|
+
middleName: string | null;
|
|
7
8
|
lastName: string;
|
|
9
|
+
gender: string | null;
|
|
8
10
|
jobTitle: string | null;
|
|
9
11
|
relation: "partner" | "supplier" | "other" | "client" | null;
|
|
10
12
|
preferredLanguage: string | null;
|
|
@@ -28,7 +30,9 @@ export declare const accountsService: {
|
|
|
28
30
|
id: string;
|
|
29
31
|
organizationId: string | null;
|
|
30
32
|
firstName: string;
|
|
33
|
+
middleName: string | null;
|
|
31
34
|
lastName: string;
|
|
35
|
+
gender: string | null;
|
|
32
36
|
jobTitle: string | null;
|
|
33
37
|
relation: "partner" | "supplier" | "other" | "client" | null;
|
|
34
38
|
preferredLanguage: string | null;
|
|
@@ -48,7 +52,9 @@ export declare const accountsService: {
|
|
|
48
52
|
id: string;
|
|
49
53
|
organizationId: string | null;
|
|
50
54
|
firstName: string;
|
|
55
|
+
middleName: string | null;
|
|
51
56
|
lastName: string;
|
|
57
|
+
gender: string | null;
|
|
52
58
|
jobTitle: string | null;
|
|
53
59
|
relation: "partner" | "supplier" | "other" | "client" | null;
|
|
54
60
|
preferredLanguage: string | null;
|
|
@@ -68,7 +74,9 @@ export declare const accountsService: {
|
|
|
68
74
|
id: string;
|
|
69
75
|
organizationId: string | null;
|
|
70
76
|
firstName: string;
|
|
77
|
+
middleName: string | null;
|
|
71
78
|
lastName: string;
|
|
79
|
+
gender: string | null;
|
|
72
80
|
jobTitle: string | null;
|
|
73
81
|
relation: "partner" | "supplier" | "other" | "client" | null;
|
|
74
82
|
preferredLanguage: string | null;
|
|
@@ -584,6 +592,396 @@ export declare const accountsService: {
|
|
|
584
592
|
authorId: string;
|
|
585
593
|
content: string;
|
|
586
594
|
} | null>;
|
|
595
|
+
listPersonPaymentMethods(db: import("drizzle-orm/postgres-js").PostgresJsDatabase, personId: string): Omit<import("drizzle-orm/pg-core").PgSelectBase<"person_payment_methods", {
|
|
596
|
+
id: import("drizzle-orm/pg-core").PgColumn<{
|
|
597
|
+
name: string;
|
|
598
|
+
tableName: "person_payment_methods";
|
|
599
|
+
dataType: "string";
|
|
600
|
+
columnType: "PgText";
|
|
601
|
+
data: string;
|
|
602
|
+
driverParam: string;
|
|
603
|
+
notNull: true;
|
|
604
|
+
hasDefault: true;
|
|
605
|
+
isPrimaryKey: true;
|
|
606
|
+
isAutoincrement: false;
|
|
607
|
+
hasRuntimeDefault: true;
|
|
608
|
+
enumValues: [string, ...string[]];
|
|
609
|
+
baseColumn: never;
|
|
610
|
+
identity: undefined;
|
|
611
|
+
generated: undefined;
|
|
612
|
+
}, {}, {}>;
|
|
613
|
+
personId: import("drizzle-orm/pg-core").PgColumn<{
|
|
614
|
+
name: string;
|
|
615
|
+
tableName: "person_payment_methods";
|
|
616
|
+
dataType: "string";
|
|
617
|
+
columnType: "PgText";
|
|
618
|
+
data: string;
|
|
619
|
+
driverParam: string;
|
|
620
|
+
notNull: true;
|
|
621
|
+
hasDefault: false;
|
|
622
|
+
isPrimaryKey: false;
|
|
623
|
+
isAutoincrement: false;
|
|
624
|
+
hasRuntimeDefault: false;
|
|
625
|
+
enumValues: [string, ...string[]];
|
|
626
|
+
baseColumn: never;
|
|
627
|
+
identity: undefined;
|
|
628
|
+
generated: undefined;
|
|
629
|
+
}, {}, {}>;
|
|
630
|
+
brand: import("drizzle-orm/pg-core").PgColumn<{
|
|
631
|
+
name: "brand";
|
|
632
|
+
tableName: "person_payment_methods";
|
|
633
|
+
dataType: "string";
|
|
634
|
+
columnType: "PgText";
|
|
635
|
+
data: string;
|
|
636
|
+
driverParam: string;
|
|
637
|
+
notNull: true;
|
|
638
|
+
hasDefault: false;
|
|
639
|
+
isPrimaryKey: false;
|
|
640
|
+
isAutoincrement: false;
|
|
641
|
+
hasRuntimeDefault: false;
|
|
642
|
+
enumValues: [string, ...string[]];
|
|
643
|
+
baseColumn: never;
|
|
644
|
+
identity: undefined;
|
|
645
|
+
generated: undefined;
|
|
646
|
+
}, {}, {}>;
|
|
647
|
+
last4: import("drizzle-orm/pg-core").PgColumn<{
|
|
648
|
+
name: "last4";
|
|
649
|
+
tableName: "person_payment_methods";
|
|
650
|
+
dataType: "string";
|
|
651
|
+
columnType: "PgText";
|
|
652
|
+
data: string;
|
|
653
|
+
driverParam: string;
|
|
654
|
+
notNull: false;
|
|
655
|
+
hasDefault: false;
|
|
656
|
+
isPrimaryKey: false;
|
|
657
|
+
isAutoincrement: false;
|
|
658
|
+
hasRuntimeDefault: false;
|
|
659
|
+
enumValues: [string, ...string[]];
|
|
660
|
+
baseColumn: never;
|
|
661
|
+
identity: undefined;
|
|
662
|
+
generated: undefined;
|
|
663
|
+
}, {}, {}>;
|
|
664
|
+
holderName: import("drizzle-orm/pg-core").PgColumn<{
|
|
665
|
+
name: "holder_name";
|
|
666
|
+
tableName: "person_payment_methods";
|
|
667
|
+
dataType: "string";
|
|
668
|
+
columnType: "PgText";
|
|
669
|
+
data: string;
|
|
670
|
+
driverParam: string;
|
|
671
|
+
notNull: false;
|
|
672
|
+
hasDefault: false;
|
|
673
|
+
isPrimaryKey: false;
|
|
674
|
+
isAutoincrement: false;
|
|
675
|
+
hasRuntimeDefault: false;
|
|
676
|
+
enumValues: [string, ...string[]];
|
|
677
|
+
baseColumn: never;
|
|
678
|
+
identity: undefined;
|
|
679
|
+
generated: undefined;
|
|
680
|
+
}, {}, {}>;
|
|
681
|
+
expMonth: import("drizzle-orm/pg-core").PgColumn<{
|
|
682
|
+
name: "exp_month";
|
|
683
|
+
tableName: "person_payment_methods";
|
|
684
|
+
dataType: "number";
|
|
685
|
+
columnType: "PgInteger";
|
|
686
|
+
data: number;
|
|
687
|
+
driverParam: string | number;
|
|
688
|
+
notNull: false;
|
|
689
|
+
hasDefault: false;
|
|
690
|
+
isPrimaryKey: false;
|
|
691
|
+
isAutoincrement: false;
|
|
692
|
+
hasRuntimeDefault: false;
|
|
693
|
+
enumValues: undefined;
|
|
694
|
+
baseColumn: never;
|
|
695
|
+
identity: undefined;
|
|
696
|
+
generated: undefined;
|
|
697
|
+
}, {}, {}>;
|
|
698
|
+
expYear: import("drizzle-orm/pg-core").PgColumn<{
|
|
699
|
+
name: "exp_year";
|
|
700
|
+
tableName: "person_payment_methods";
|
|
701
|
+
dataType: "number";
|
|
702
|
+
columnType: "PgInteger";
|
|
703
|
+
data: number;
|
|
704
|
+
driverParam: string | number;
|
|
705
|
+
notNull: false;
|
|
706
|
+
hasDefault: false;
|
|
707
|
+
isPrimaryKey: false;
|
|
708
|
+
isAutoincrement: false;
|
|
709
|
+
hasRuntimeDefault: false;
|
|
710
|
+
enumValues: undefined;
|
|
711
|
+
baseColumn: never;
|
|
712
|
+
identity: undefined;
|
|
713
|
+
generated: undefined;
|
|
714
|
+
}, {}, {}>;
|
|
715
|
+
processorToken: import("drizzle-orm/pg-core").PgColumn<{
|
|
716
|
+
name: "processor_token";
|
|
717
|
+
tableName: "person_payment_methods";
|
|
718
|
+
dataType: "string";
|
|
719
|
+
columnType: "PgText";
|
|
720
|
+
data: string;
|
|
721
|
+
driverParam: string;
|
|
722
|
+
notNull: true;
|
|
723
|
+
hasDefault: false;
|
|
724
|
+
isPrimaryKey: false;
|
|
725
|
+
isAutoincrement: false;
|
|
726
|
+
hasRuntimeDefault: false;
|
|
727
|
+
enumValues: [string, ...string[]];
|
|
728
|
+
baseColumn: never;
|
|
729
|
+
identity: undefined;
|
|
730
|
+
generated: undefined;
|
|
731
|
+
}, {}, {}>;
|
|
732
|
+
isDefault: import("drizzle-orm/pg-core").PgColumn<{
|
|
733
|
+
name: "is_default";
|
|
734
|
+
tableName: "person_payment_methods";
|
|
735
|
+
dataType: "boolean";
|
|
736
|
+
columnType: "PgBoolean";
|
|
737
|
+
data: boolean;
|
|
738
|
+
driverParam: boolean;
|
|
739
|
+
notNull: true;
|
|
740
|
+
hasDefault: true;
|
|
741
|
+
isPrimaryKey: false;
|
|
742
|
+
isAutoincrement: false;
|
|
743
|
+
hasRuntimeDefault: false;
|
|
744
|
+
enumValues: undefined;
|
|
745
|
+
baseColumn: never;
|
|
746
|
+
identity: undefined;
|
|
747
|
+
generated: undefined;
|
|
748
|
+
}, {}, {}>;
|
|
749
|
+
createdAt: import("drizzle-orm/pg-core").PgColumn<{
|
|
750
|
+
name: "created_at";
|
|
751
|
+
tableName: "person_payment_methods";
|
|
752
|
+
dataType: "date";
|
|
753
|
+
columnType: "PgTimestamp";
|
|
754
|
+
data: Date;
|
|
755
|
+
driverParam: string;
|
|
756
|
+
notNull: true;
|
|
757
|
+
hasDefault: true;
|
|
758
|
+
isPrimaryKey: false;
|
|
759
|
+
isAutoincrement: false;
|
|
760
|
+
hasRuntimeDefault: false;
|
|
761
|
+
enumValues: undefined;
|
|
762
|
+
baseColumn: never;
|
|
763
|
+
identity: undefined;
|
|
764
|
+
generated: undefined;
|
|
765
|
+
}, {}, {}>;
|
|
766
|
+
}, "single", Record<"person_payment_methods", "not-null">, false, "where" | "orderBy", {
|
|
767
|
+
id: string;
|
|
768
|
+
personId: string;
|
|
769
|
+
brand: string;
|
|
770
|
+
last4: string | null;
|
|
771
|
+
holderName: string | null;
|
|
772
|
+
expMonth: number | null;
|
|
773
|
+
expYear: number | null;
|
|
774
|
+
processorToken: string;
|
|
775
|
+
isDefault: boolean;
|
|
776
|
+
createdAt: Date;
|
|
777
|
+
}[], {
|
|
778
|
+
id: import("drizzle-orm/pg-core").PgColumn<{
|
|
779
|
+
name: string;
|
|
780
|
+
tableName: "person_payment_methods";
|
|
781
|
+
dataType: "string";
|
|
782
|
+
columnType: "PgText";
|
|
783
|
+
data: string;
|
|
784
|
+
driverParam: string;
|
|
785
|
+
notNull: true;
|
|
786
|
+
hasDefault: true;
|
|
787
|
+
isPrimaryKey: true;
|
|
788
|
+
isAutoincrement: false;
|
|
789
|
+
hasRuntimeDefault: true;
|
|
790
|
+
enumValues: [string, ...string[]];
|
|
791
|
+
baseColumn: never;
|
|
792
|
+
identity: undefined;
|
|
793
|
+
generated: undefined;
|
|
794
|
+
}, {}, {}>;
|
|
795
|
+
personId: import("drizzle-orm/pg-core").PgColumn<{
|
|
796
|
+
name: string;
|
|
797
|
+
tableName: "person_payment_methods";
|
|
798
|
+
dataType: "string";
|
|
799
|
+
columnType: "PgText";
|
|
800
|
+
data: string;
|
|
801
|
+
driverParam: string;
|
|
802
|
+
notNull: true;
|
|
803
|
+
hasDefault: false;
|
|
804
|
+
isPrimaryKey: false;
|
|
805
|
+
isAutoincrement: false;
|
|
806
|
+
hasRuntimeDefault: false;
|
|
807
|
+
enumValues: [string, ...string[]];
|
|
808
|
+
baseColumn: never;
|
|
809
|
+
identity: undefined;
|
|
810
|
+
generated: undefined;
|
|
811
|
+
}, {}, {}>;
|
|
812
|
+
brand: import("drizzle-orm/pg-core").PgColumn<{
|
|
813
|
+
name: "brand";
|
|
814
|
+
tableName: "person_payment_methods";
|
|
815
|
+
dataType: "string";
|
|
816
|
+
columnType: "PgText";
|
|
817
|
+
data: string;
|
|
818
|
+
driverParam: string;
|
|
819
|
+
notNull: true;
|
|
820
|
+
hasDefault: false;
|
|
821
|
+
isPrimaryKey: false;
|
|
822
|
+
isAutoincrement: false;
|
|
823
|
+
hasRuntimeDefault: false;
|
|
824
|
+
enumValues: [string, ...string[]];
|
|
825
|
+
baseColumn: never;
|
|
826
|
+
identity: undefined;
|
|
827
|
+
generated: undefined;
|
|
828
|
+
}, {}, {}>;
|
|
829
|
+
last4: import("drizzle-orm/pg-core").PgColumn<{
|
|
830
|
+
name: "last4";
|
|
831
|
+
tableName: "person_payment_methods";
|
|
832
|
+
dataType: "string";
|
|
833
|
+
columnType: "PgText";
|
|
834
|
+
data: string;
|
|
835
|
+
driverParam: string;
|
|
836
|
+
notNull: false;
|
|
837
|
+
hasDefault: false;
|
|
838
|
+
isPrimaryKey: false;
|
|
839
|
+
isAutoincrement: false;
|
|
840
|
+
hasRuntimeDefault: false;
|
|
841
|
+
enumValues: [string, ...string[]];
|
|
842
|
+
baseColumn: never;
|
|
843
|
+
identity: undefined;
|
|
844
|
+
generated: undefined;
|
|
845
|
+
}, {}, {}>;
|
|
846
|
+
holderName: import("drizzle-orm/pg-core").PgColumn<{
|
|
847
|
+
name: "holder_name";
|
|
848
|
+
tableName: "person_payment_methods";
|
|
849
|
+
dataType: "string";
|
|
850
|
+
columnType: "PgText";
|
|
851
|
+
data: string;
|
|
852
|
+
driverParam: string;
|
|
853
|
+
notNull: false;
|
|
854
|
+
hasDefault: false;
|
|
855
|
+
isPrimaryKey: false;
|
|
856
|
+
isAutoincrement: false;
|
|
857
|
+
hasRuntimeDefault: false;
|
|
858
|
+
enumValues: [string, ...string[]];
|
|
859
|
+
baseColumn: never;
|
|
860
|
+
identity: undefined;
|
|
861
|
+
generated: undefined;
|
|
862
|
+
}, {}, {}>;
|
|
863
|
+
expMonth: import("drizzle-orm/pg-core").PgColumn<{
|
|
864
|
+
name: "exp_month";
|
|
865
|
+
tableName: "person_payment_methods";
|
|
866
|
+
dataType: "number";
|
|
867
|
+
columnType: "PgInteger";
|
|
868
|
+
data: number;
|
|
869
|
+
driverParam: string | number;
|
|
870
|
+
notNull: false;
|
|
871
|
+
hasDefault: false;
|
|
872
|
+
isPrimaryKey: false;
|
|
873
|
+
isAutoincrement: false;
|
|
874
|
+
hasRuntimeDefault: false;
|
|
875
|
+
enumValues: undefined;
|
|
876
|
+
baseColumn: never;
|
|
877
|
+
identity: undefined;
|
|
878
|
+
generated: undefined;
|
|
879
|
+
}, {}, {}>;
|
|
880
|
+
expYear: import("drizzle-orm/pg-core").PgColumn<{
|
|
881
|
+
name: "exp_year";
|
|
882
|
+
tableName: "person_payment_methods";
|
|
883
|
+
dataType: "number";
|
|
884
|
+
columnType: "PgInteger";
|
|
885
|
+
data: number;
|
|
886
|
+
driverParam: string | number;
|
|
887
|
+
notNull: false;
|
|
888
|
+
hasDefault: false;
|
|
889
|
+
isPrimaryKey: false;
|
|
890
|
+
isAutoincrement: false;
|
|
891
|
+
hasRuntimeDefault: false;
|
|
892
|
+
enumValues: undefined;
|
|
893
|
+
baseColumn: never;
|
|
894
|
+
identity: undefined;
|
|
895
|
+
generated: undefined;
|
|
896
|
+
}, {}, {}>;
|
|
897
|
+
processorToken: import("drizzle-orm/pg-core").PgColumn<{
|
|
898
|
+
name: "processor_token";
|
|
899
|
+
tableName: "person_payment_methods";
|
|
900
|
+
dataType: "string";
|
|
901
|
+
columnType: "PgText";
|
|
902
|
+
data: string;
|
|
903
|
+
driverParam: string;
|
|
904
|
+
notNull: true;
|
|
905
|
+
hasDefault: false;
|
|
906
|
+
isPrimaryKey: false;
|
|
907
|
+
isAutoincrement: false;
|
|
908
|
+
hasRuntimeDefault: false;
|
|
909
|
+
enumValues: [string, ...string[]];
|
|
910
|
+
baseColumn: never;
|
|
911
|
+
identity: undefined;
|
|
912
|
+
generated: undefined;
|
|
913
|
+
}, {}, {}>;
|
|
914
|
+
isDefault: import("drizzle-orm/pg-core").PgColumn<{
|
|
915
|
+
name: "is_default";
|
|
916
|
+
tableName: "person_payment_methods";
|
|
917
|
+
dataType: "boolean";
|
|
918
|
+
columnType: "PgBoolean";
|
|
919
|
+
data: boolean;
|
|
920
|
+
driverParam: boolean;
|
|
921
|
+
notNull: true;
|
|
922
|
+
hasDefault: true;
|
|
923
|
+
isPrimaryKey: false;
|
|
924
|
+
isAutoincrement: false;
|
|
925
|
+
hasRuntimeDefault: false;
|
|
926
|
+
enumValues: undefined;
|
|
927
|
+
baseColumn: never;
|
|
928
|
+
identity: undefined;
|
|
929
|
+
generated: undefined;
|
|
930
|
+
}, {}, {}>;
|
|
931
|
+
createdAt: import("drizzle-orm/pg-core").PgColumn<{
|
|
932
|
+
name: "created_at";
|
|
933
|
+
tableName: "person_payment_methods";
|
|
934
|
+
dataType: "date";
|
|
935
|
+
columnType: "PgTimestamp";
|
|
936
|
+
data: Date;
|
|
937
|
+
driverParam: string;
|
|
938
|
+
notNull: true;
|
|
939
|
+
hasDefault: true;
|
|
940
|
+
isPrimaryKey: false;
|
|
941
|
+
isAutoincrement: false;
|
|
942
|
+
hasRuntimeDefault: false;
|
|
943
|
+
enumValues: undefined;
|
|
944
|
+
baseColumn: never;
|
|
945
|
+
identity: undefined;
|
|
946
|
+
generated: undefined;
|
|
947
|
+
}, {}, {}>;
|
|
948
|
+
}>, "where" | "orderBy">;
|
|
949
|
+
createPersonPaymentMethod(db: import("drizzle-orm/postgres-js").PostgresJsDatabase, personId: string, data: import("../validation.js").InsertPersonPaymentMethodInput): Promise<{
|
|
950
|
+
id: string;
|
|
951
|
+
brand: string;
|
|
952
|
+
createdAt: Date;
|
|
953
|
+
personId: string;
|
|
954
|
+
last4: string | null;
|
|
955
|
+
holderName: string | null;
|
|
956
|
+
expMonth: number | null;
|
|
957
|
+
expYear: number | null;
|
|
958
|
+
processorToken: string;
|
|
959
|
+
isDefault: boolean;
|
|
960
|
+
} | null>;
|
|
961
|
+
updatePersonPaymentMethod(db: import("drizzle-orm/postgres-js").PostgresJsDatabase, id: string, data: import("../validation.js").UpdatePersonPaymentMethodInput): Promise<{
|
|
962
|
+
id: string;
|
|
963
|
+
personId: string;
|
|
964
|
+
brand: string;
|
|
965
|
+
last4: string | null;
|
|
966
|
+
holderName: string | null;
|
|
967
|
+
expMonth: number | null;
|
|
968
|
+
expYear: number | null;
|
|
969
|
+
processorToken: string;
|
|
970
|
+
isDefault: boolean;
|
|
971
|
+
createdAt: Date;
|
|
972
|
+
} | null>;
|
|
973
|
+
deletePersonPaymentMethod(db: import("drizzle-orm/postgres-js").PostgresJsDatabase, id: string): Promise<{
|
|
974
|
+
id: string;
|
|
975
|
+
brand: string;
|
|
976
|
+
createdAt: Date;
|
|
977
|
+
personId: string;
|
|
978
|
+
last4: string | null;
|
|
979
|
+
holderName: string | null;
|
|
980
|
+
expMonth: number | null;
|
|
981
|
+
expYear: number | null;
|
|
982
|
+
processorToken: string;
|
|
983
|
+
isDefault: boolean;
|
|
984
|
+
} | null>;
|
|
587
985
|
updateOrganizationNote(db: import("drizzle-orm/postgres-js").PostgresJsDatabase, id: string, content: string): Promise<{
|
|
588
986
|
id: string;
|
|
589
987
|
organizationId: string;
|
|
@@ -868,6 +1266,7 @@ export declare const accountsService: {
|
|
|
868
1266
|
name: string;
|
|
869
1267
|
legalName: string | null;
|
|
870
1268
|
website: string | null;
|
|
1269
|
+
vatNumber: string | null;
|
|
871
1270
|
industry: string | null;
|
|
872
1271
|
relation: "partner" | "supplier" | "other" | "client" | null;
|
|
873
1272
|
ownerId: string | null;
|
|
@@ -892,6 +1291,7 @@ export declare const accountsService: {
|
|
|
892
1291
|
name: string;
|
|
893
1292
|
legalName: string | null;
|
|
894
1293
|
website: string | null;
|
|
1294
|
+
vatNumber: string | null;
|
|
895
1295
|
industry: string | null;
|
|
896
1296
|
relation: "partner" | "supplier" | "other" | "client" | null;
|
|
897
1297
|
ownerId: string | null;
|
|
@@ -918,6 +1318,7 @@ export declare const accountsService: {
|
|
|
918
1318
|
notes: string | null;
|
|
919
1319
|
website: string | null;
|
|
920
1320
|
legalName: string | null;
|
|
1321
|
+
vatNumber: string | null;
|
|
921
1322
|
industry: string | null;
|
|
922
1323
|
ownerId: string | null;
|
|
923
1324
|
defaultCurrency: string | null;
|
|
@@ -932,6 +1333,7 @@ export declare const accountsService: {
|
|
|
932
1333
|
name: string;
|
|
933
1334
|
legalName: string | null;
|
|
934
1335
|
website: string | null;
|
|
1336
|
+
vatNumber: string | null;
|
|
935
1337
|
industry: string | null;
|
|
936
1338
|
relation: "partner" | "supplier" | "other" | "client" | null;
|
|
937
1339
|
ownerId: string | null;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"accounts.d.ts","sourceRoot":"","sources":["../../src/service/accounts.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,eAAe
|
|
1
|
+
{"version":3,"file":"accounts.d.ts","sourceRoot":"","sources":["../../src/service/accounts.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAG3B,CAAA"}
|