@silexpert/core 0.4.85 → 0.4.87

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.
@@ -1,6 +1,9 @@
1
1
  export declare const BrandClementine: ({
2
2
  idTypeBrand: number;
3
3
  name: string;
4
+ colors: {
5
+ primary: string;
6
+ };
4
7
  listMails: {
5
8
  administratif: string;
6
9
  app: string;
@@ -19,9 +22,31 @@ export declare const BrandClementine: ({
19
22
  tva: string;
20
23
  wb: string;
21
24
  };
25
+ companyInformation: {
26
+ bp: string;
27
+ city: string;
28
+ montantCapital: string;
29
+ nomRaisonSociale: string;
30
+ ECOrderCity: string;
31
+ phone: string;
32
+ postalAddress: string;
33
+ rcs: string;
34
+ statut: string;
35
+ zipCode: string;
36
+ };
37
+ idPrestationsListHidden: number[];
38
+ logoUrl: string;
39
+ hiddenPages: never[];
40
+ urlExpert: string;
41
+ urlClient: string;
42
+ recaptchaSecretKey?: undefined;
43
+ idPrestationsListAuthorized?: undefined;
22
44
  } | {
23
45
  idTypeBrand: number;
24
46
  name: string;
47
+ colors: {
48
+ primary: string;
49
+ };
25
50
  listMails: {
26
51
  contact: string;
27
52
  administratif?: undefined;
@@ -40,9 +65,95 @@ export declare const BrandClementine: ({
40
65
  tva?: undefined;
41
66
  wb?: undefined;
42
67
  };
68
+ companyInformation: {
69
+ bp: string;
70
+ city: string;
71
+ montantCapital: string;
72
+ nomRaisonSociale: string;
73
+ ECOrderCity: string;
74
+ phone: string;
75
+ postalAddress: string;
76
+ rcs: string;
77
+ statut: string;
78
+ zipCode: string;
79
+ };
80
+ idPrestationsListHidden: number[];
81
+ logoUrl: string;
82
+ hiddenPages: never[];
83
+ recaptchaSecretKey: string;
84
+ urlExpert: string;
85
+ urlClient: string;
86
+ idPrestationsListAuthorized?: undefined;
87
+ } | {
88
+ idTypeBrand: number;
89
+ name: string;
90
+ colors: {
91
+ primary: string;
92
+ };
93
+ listMails?: undefined;
94
+ companyInformation?: undefined;
95
+ idPrestationsListHidden?: undefined;
96
+ logoUrl?: undefined;
97
+ hiddenPages?: undefined;
98
+ urlExpert?: undefined;
99
+ urlClient?: undefined;
100
+ recaptchaSecretKey?: undefined;
101
+ idPrestationsListAuthorized?: undefined;
102
+ } | {
103
+ idTypeBrand: number;
104
+ name: string;
105
+ colors: {
106
+ primary: string;
107
+ };
108
+ listMails: {
109
+ administratif: string;
110
+ app: string;
111
+ bonjour: string;
112
+ contact: string;
113
+ facturation: string;
114
+ feedback: string;
115
+ juridique: string;
116
+ informatique: string;
117
+ msd: string;
118
+ noreply: string;
119
+ qualite: string;
120
+ paiement: string;
121
+ social: string;
122
+ support: string;
123
+ tva: string;
124
+ wb: string;
125
+ };
126
+ companyInformation: {
127
+ bp: string;
128
+ city: string;
129
+ montantCapital: string;
130
+ nomRaisonSociale: string;
131
+ ECOrderCity: string;
132
+ phone: string;
133
+ postalAddress: string;
134
+ rcs: string;
135
+ statut: string;
136
+ zipCode: string;
137
+ };
138
+ idPrestationsListAuthorized: number[];
139
+ logoUrl: string;
140
+ hiddenPages: never[];
141
+ recaptchaSecretKey: string;
142
+ urlExpert: string;
143
+ urlClient: string;
144
+ idPrestationsListHidden?: undefined;
43
145
  } | {
44
146
  idTypeBrand: number;
45
147
  name: string;
148
+ colors?: undefined;
46
149
  listMails?: undefined;
150
+ companyInformation?: undefined;
151
+ idPrestationsListHidden?: undefined;
152
+ logoUrl?: undefined;
153
+ hiddenPages?: undefined;
154
+ urlExpert?: undefined;
155
+ urlClient?: undefined;
156
+ recaptchaSecretKey?: undefined;
157
+ idPrestationsListAuthorized?: undefined;
47
158
  })[];
48
159
  //# sourceMappingURL=BrandClementine.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"BrandClementine.d.ts","sourceRoot":"","sources":["../../../ts/types/Enum/BrandClementine.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IA4D3B,CAAC"}
1
+ {"version":3,"file":"BrandClementine.d.ts","sourceRoot":"","sources":["../../../ts/types/Enum/BrandClementine.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IA6H3B,CAAC"}
@@ -2,6 +2,9 @@ export const BrandClementine = [
2
2
  {
3
3
  idTypeBrand: 1,
4
4
  name: 'Clementine',
5
+ colors: {
6
+ primary: '#ff7e3c',
7
+ },
5
8
  listMails: {
6
9
  administratif: 'administratif@compta-clementine.fr',
7
10
  app: 'app@compta-clementine.fr',
@@ -20,21 +23,65 @@ export const BrandClementine = [
20
23
  tva: 'tva@compta-clementine.fr',
21
24
  wb: 'wb@compta-clementine.fr',
22
25
  },
26
+ companyInformation: {
27
+ bp: 'BP 80016',
28
+ city: 'Ludres',
29
+ montantCapital: '500 000',
30
+ nomRaisonSociale: 'SAS EXPERTISE CHOIX B',
31
+ ECOrderCity: 'Nancy',
32
+ phone: '03 83 93 14 14',
33
+ postalAddress: '88, rue Pierre et Marie Curie',
34
+ rcs: '752 566 687',
35
+ statut: 'SAS',
36
+ zipCode: '54 710',
37
+ },
38
+ idPrestationsListHidden: [197],
39
+ logoUrl: 'logo-dark.svg',
40
+ hiddenPages: [],
41
+ urlExpert: 'https://expert.compta-clementine.fr',
42
+ urlClient: 'https://www.compta-clementine.fr',
23
43
  },
24
44
  {
25
45
  idTypeBrand: 2,
26
46
  name: 'Legalstart',
47
+ colors: {
48
+ primary: '#16a974',
49
+ },
27
50
  listMails: {
28
51
  contact: 'comptastart@legalstart.fr',
29
52
  },
53
+ companyInformation: {
54
+ bp: '',
55
+ city: 'Paris',
56
+ montantCapital: '11 051,85',
57
+ nomRaisonSociale: 'SAS Yolaw',
58
+ ECOrderCity: 'Nancy',
59
+ phone: '01 76 39 00 60',
60
+ postalAddress: '50, rue d\'Hauteville',
61
+ rcs: '753 892 926',
62
+ statut: 'SAS',
63
+ zipCode: '75 010',
64
+ },
65
+ idPrestationsListHidden: [197],
66
+ logoUrl: 'logo-legalstart.svg',
67
+ hiddenPages: [],
68
+ recaptchaSecretKey: '6Le0o3kaAAAAAIEcSOib77JdK_W3cyIilK-p2yOG',
69
+ urlExpert: 'https://pro.comptalib.com',
70
+ urlClient: 'https://www.pourcentage.fr',
30
71
  },
31
72
  {
32
73
  idTypeBrand: 3,
33
74
  name: 'BRED',
75
+ colors: {
76
+ primary: '#24315e',
77
+ },
34
78
  },
35
79
  {
36
80
  idTypeBrand: 4,
37
81
  name: 'Pourcentage',
82
+ colors: {
83
+ primary: '#1e6f5c',
84
+ },
38
85
  listMails: {
39
86
  administratif: 'administratif@pourcentage.fr',
40
87
  app: 'app@pourcentage.fr',
@@ -53,6 +100,24 @@ export const BrandClementine = [
53
100
  tva: 'tva@pourcentage.fr',
54
101
  wb: 'wb@pourcentage.fr',
55
102
  },
103
+ companyInformation: {
104
+ bp: '',
105
+ city: 'Paris',
106
+ montantCapital: '10 000',
107
+ nomRaisonSociale: 'SAS POURCENTAGE',
108
+ ECOrderCity: 'Nancy',
109
+ phone: '01 86 90 82 15',
110
+ postalAddress: '30, rue des Mathurins',
111
+ rcs: '891 501 181',
112
+ statut: 'SAS',
113
+ zipCode: '75 008',
114
+ },
115
+ idPrestationsListAuthorized: [197],
116
+ logoUrl: 'logo-pourcentage.svg',
117
+ hiddenPages: [],
118
+ recaptchaSecretKey: '6Le0o3kaAAAAAIEcSOib77JdK_W3cyIilK-p2yOG',
119
+ urlExpert: 'https://pro.comptalib.com',
120
+ urlClient: 'https://www.pourcentage.fr',
56
121
  },
57
122
  {
58
123
  idTypeBrand: 5,
@@ -1 +1 @@
1
- {"version":3,"file":"BrandClementine.js","sourceRoot":"","sources":["../../../ts/types/Enum/BrandClementine.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,MAAM,eAAe,GAAG;IAC7B;QACE,WAAW,EAAE,CAAC;QACd,IAAI,EAAE,YAAY;QAClB,SAAS,EAAE;YACT,aAAa,EAAE,oCAAoC;YACnD,GAAG,EAAE,0BAA0B;YAC/B,OAAO,EAAE,8BAA8B;YACvC,OAAO,EAAE,8BAA8B;YACvC,WAAW,EAAE,kCAAkC;YAC/C,QAAQ,EAAE,+BAA+B;YACzC,SAAS,EAAE,gCAAgC;YAC3C,YAAY,EAAE,mCAAmC;YACjD,GAAG,EAAE,0BAA0B;YAC/B,OAAO,EAAE,8BAA8B;YACvC,OAAO,EAAE,8BAA8B;YACvC,QAAQ,EAAE,+BAA+B;YACzC,MAAM,EAAE,6BAA6B;YACrC,OAAO,EAAE,8BAA8B;YACvC,GAAG,EAAE,0BAA0B;YAC/B,EAAE,EAAE,yBAAyB;SAC9B;KACF;IACD;QACE,WAAW,EAAE,CAAC;QACd,IAAI,EAAE,YAAY;QAClB,SAAS,EAAE;YACT,OAAO,EAAE,2BAA2B;SACrC;KACF;IACD;QACE,WAAW,EAAE,CAAC;QACd,IAAI,EAAE,MAAM;KACb;IACD;QACE,WAAW,EAAE,CAAC;QACd,IAAI,EAAE,aAAa;QACnB,SAAS,EAAE;YACT,aAAa,EAAE,8BAA8B;YAC7C,GAAG,EAAE,oBAAoB;YACzB,OAAO,EAAE,wBAAwB;YACjC,OAAO,EAAE,wBAAwB;YACjC,WAAW,EAAE,4BAA4B;YACzC,QAAQ,EAAE,yBAAyB;YACnC,SAAS,EAAE,0BAA0B;YACrC,YAAY,EAAE,6BAA6B;YAC3C,GAAG,EAAE,oBAAoB;YACzB,OAAO,EAAE,wBAAwB;YACjC,OAAO,EAAE,wBAAwB;YACjC,QAAQ,EAAE,yBAAyB;YACnC,MAAM,EAAE,uBAAuB;YAC/B,OAAO,EAAE,wBAAwB;YACjC,GAAG,EAAE,oBAAoB;YACzB,EAAE,EAAE,mBAAmB;SACxB;KACF;IACD;QACE,WAAW,EAAE,CAAC;QACd,IAAI,EAAE,SAAS;KAChB;CACF,CAAC","sourcesContent":["export const BrandClementine = [\n {\n idTypeBrand: 1,\n name: 'Clementine',\n listMails: {\n administratif: 'administratif@compta-clementine.fr',\n app: 'app@compta-clementine.fr',\n bonjour: 'bonjour@compta-clementine.fr',\n contact: 'contact@compta-clementine.fr',\n facturation: 'facturation@compta-clementine.fr',\n feedback: 'feedback@compta-clementine.fr',\n juridique: 'juridique@compta-clementine.fr',\n informatique: 'informatique@compta-clementine.fr',\n msd: 'msd@compta-clementine.fr',\n noreply: 'noreply@compta-clementine.fr',\n qualite: 'qualite@compta-clementine.fr',\n paiement: 'paiement@compta-clementine.fr',\n social: 'social@compta-clementine.fr',\n support: 'support@compta-clementine.fr',\n tva: 'tva@compta-clementine.fr',\n wb: 'wb@compta-clementine.fr',\n },\n },\n {\n idTypeBrand: 2,\n name: 'Legalstart',\n listMails: {\n contact: 'comptastart@legalstart.fr',\n },\n },\n {\n idTypeBrand: 3,\n name: 'BRED',\n },\n {\n idTypeBrand: 4,\n name: 'Pourcentage',\n listMails: {\n administratif: 'administratif@pourcentage.fr',\n app: 'app@pourcentage.fr',\n bonjour: 'bonjour@pourcentage.fr',\n contact: 'contact@pourcentage.fr',\n facturation: 'facturation@pourcentage.fr',\n feedback: 'feedback@pourcentage.fr',\n juridique: 'juridique@pourcentage.fr',\n informatique: 'informatique@pourcentage.fr',\n msd: 'msd@pourcentage.fr',\n noreply: 'noreply@pourcentage.fr',\n qualite: 'qualite@pourcentage.fr',\n paiement: 'paiement@pourcentage.fr',\n social: 'social@pourcentage.fr',\n support: 'support@pourcentage.fr',\n tva: 'tva@pourcentage.fr',\n wb: 'wb@pourcentage.fr',\n },\n },\n {\n idTypeBrand: 5,\n name: 'Kandbaz',\n },\n];"]}
1
+ {"version":3,"file":"BrandClementine.js","sourceRoot":"","sources":["../../../ts/types/Enum/BrandClementine.ts"],"names":[],"mappings":"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","sourcesContent":["export const BrandClementine = [\n {\n idTypeBrand: 1,\n name: 'Clementine',\n colors: {\n primary: '#ff7e3c',\n },\n listMails: {\n administratif: 'administratif@compta-clementine.fr',\n app: 'app@compta-clementine.fr',\n bonjour: 'bonjour@compta-clementine.fr',\n contact: 'contact@compta-clementine.fr',\n facturation: 'facturation@compta-clementine.fr',\n feedback: 'feedback@compta-clementine.fr',\n juridique: 'juridique@compta-clementine.fr',\n informatique: 'informatique@compta-clementine.fr',\n msd: 'msd@compta-clementine.fr',\n noreply: 'noreply@compta-clementine.fr',\n qualite: 'qualite@compta-clementine.fr',\n paiement: 'paiement@compta-clementine.fr',\n social: 'social@compta-clementine.fr',\n support: 'support@compta-clementine.fr',\n tva: 'tva@compta-clementine.fr',\n wb: 'wb@compta-clementine.fr',\n },\n companyInformation: {\n bp: 'BP 80016',\n city: 'Ludres',\n montantCapital: '500 000',\n nomRaisonSociale: 'SAS EXPERTISE CHOIX B',\n ECOrderCity: 'Nancy',\n phone: '03 83 93 14 14',\n postalAddress: '88, rue Pierre et Marie Curie',\n rcs: '752 566 687',\n statut: 'SAS',\n zipCode: '54 710',\n },\n idPrestationsListHidden: [197], // TODO:\n logoUrl: 'logo-dark.svg',\n hiddenPages: [],\n urlExpert: 'https://expert.compta-clementine.fr',\n urlClient: 'https://www.compta-clementine.fr',\n },\n {\n idTypeBrand: 2,\n name: 'Legalstart',\n colors: {\n primary: '#16a974',\n },\n listMails: {\n contact: 'comptastart@legalstart.fr',\n },\n companyInformation: {\n bp: '',\n city: 'Paris',\n montantCapital: '11 051,85',\n nomRaisonSociale: 'SAS Yolaw',\n ECOrderCity: 'Nancy',\n phone: '01 76 39 00 60',\n postalAddress: '50, rue d\\'Hauteville',\n rcs: '753 892 926',\n statut: 'SAS',\n zipCode: '75 010',\n },\n idPrestationsListHidden: [197],\n logoUrl: 'logo-legalstart.svg',\n hiddenPages: [],\n recaptchaSecretKey: '6Le0o3kaAAAAAIEcSOib77JdK_W3cyIilK-p2yOG',\n urlExpert: 'https://pro.comptalib.com',\n urlClient: 'https://www.pourcentage.fr',\n },\n {\n idTypeBrand: 3,\n name: 'BRED',\n colors: {\n primary: '#24315e',\n },\n },\n {\n idTypeBrand: 4,\n name: 'Pourcentage',\n colors: {\n primary: '#1e6f5c',\n },\n listMails: {\n administratif: 'administratif@pourcentage.fr',\n app: 'app@pourcentage.fr',\n bonjour: 'bonjour@pourcentage.fr',\n contact: 'contact@pourcentage.fr',\n facturation: 'facturation@pourcentage.fr',\n feedback: 'feedback@pourcentage.fr',\n juridique: 'juridique@pourcentage.fr',\n informatique: 'informatique@pourcentage.fr',\n msd: 'msd@pourcentage.fr',\n noreply: 'noreply@pourcentage.fr',\n qualite: 'qualite@pourcentage.fr',\n paiement: 'paiement@pourcentage.fr',\n social: 'social@pourcentage.fr',\n support: 'support@pourcentage.fr',\n tva: 'tva@pourcentage.fr',\n wb: 'wb@pourcentage.fr',\n },\n companyInformation: {\n bp: '',\n city: 'Paris',\n montantCapital: '10 000',\n nomRaisonSociale: 'SAS POURCENTAGE',\n ECOrderCity: 'Nancy',\n phone: '01 86 90 82 15',\n postalAddress: '30, rue des Mathurins',\n rcs: '891 501 181',\n statut: 'SAS',\n zipCode: '75 008',\n },\n idPrestationsListAuthorized: [197],\n logoUrl: 'logo-pourcentage.svg',\n hiddenPages: [],\n recaptchaSecretKey: '6Le0o3kaAAAAAIEcSOib77JdK_W3cyIilK-p2yOG', // TODO:\n urlExpert: 'https://pro.comptalib.com',\n urlClient: 'https://www.pourcentage.fr',\n },\n {\n idTypeBrand: 5,\n name: 'Kandbaz',\n },\n];"]}
@@ -1,6 +1,9 @@
1
1
  export declare const BrandComptalib: {
2
2
  idTypeBrand: number;
3
3
  name: string;
4
+ colors: {
5
+ primary: string;
6
+ };
4
7
  listMails: {
5
8
  administratif: string;
6
9
  app: string;
@@ -19,5 +22,23 @@ export declare const BrandComptalib: {
19
22
  tva: string;
20
23
  wb: string;
21
24
  };
25
+ companyInformation: {
26
+ bp: string;
27
+ city: string;
28
+ montantCapital: string;
29
+ nomRaisonSociale: string;
30
+ ECOrderCity: string;
31
+ phone: string;
32
+ postalAddress: string;
33
+ rcs: string;
34
+ statut: string;
35
+ zipCode: string;
36
+ };
37
+ idPrestationsListAuthorized: number[];
38
+ logoUrl: string;
39
+ hiddenPages: never[];
40
+ recaptchaSecretKey: string;
41
+ urlExpert: string;
42
+ urlClient: string;
22
43
  }[];
23
44
  //# sourceMappingURL=BrandComptalib.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"BrandComptalib.d.ts","sourceRoot":"","sources":["../../../ts/types/Enum/BrandComptalib.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;GA6C1B,CAAC"}
1
+ {"version":3,"file":"BrandComptalib.d.ts","sourceRoot":"","sources":["../../../ts/types/Enum/BrandComptalib.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAuF1B,CAAC"}
@@ -2,6 +2,9 @@ export const BrandComptalib = [
2
2
  {
3
3
  idTypeBrand: 1,
4
4
  name: 'Comptalib',
5
+ colors: {
6
+ primary: '#1656ff',
7
+ },
5
8
  listMails: {
6
9
  administratif: 'contact@comptalib.com',
7
10
  app: 'contact@comptalib.com',
@@ -20,10 +23,31 @@ export const BrandComptalib = [
20
23
  tva: 'contact@comptalib.com',
21
24
  wb: 'contact@comptalib.com',
22
25
  },
26
+ companyInformation: {
27
+ bp: '',
28
+ city: 'Paris',
29
+ montantCapital: '10 000',
30
+ nomRaisonSociale: 'SAS COMPTALIB',
31
+ ECOrderCity: 'Nancy',
32
+ phone: '01 86 90 92 80',
33
+ postalAddress: '30, rue des Mathurins',
34
+ rcs: '808 070 726',
35
+ statut: 'SAS',
36
+ zipCode: '75 008',
37
+ },
38
+ idPrestationsListAuthorized: [197],
39
+ logoUrl: 'logo-comptalib.svg',
40
+ hiddenPages: [],
41
+ recaptchaSecretKey: '6Le0o3kaAAAAAIEcSOib77JdK_W3cyIilK-p2yOG',
42
+ urlExpert: 'https://pro.comptalib.com',
43
+ urlClient: '',
23
44
  },
24
45
  {
25
46
  idTypeBrand: 2,
26
47
  name: 'Pourcentage',
48
+ colors: {
49
+ primary: '#1e6f5c',
50
+ },
27
51
  listMails: {
28
52
  administratif: 'contact@pourcentage.fr',
29
53
  app: 'contact@pourcentage.fr',
@@ -42,6 +66,24 @@ export const BrandComptalib = [
42
66
  tva: 'contact@pourcentage.fr',
43
67
  wb: 'contact@pourcentage.fr',
44
68
  },
69
+ companyInformation: {
70
+ bp: '',
71
+ city: 'Paris',
72
+ montantCapital: '10 000',
73
+ nomRaisonSociale: 'SAS POURCENTAGE',
74
+ ECOrderCity: 'Nancy',
75
+ phone: '01 86 90 82 15',
76
+ postalAddress: '30, rue des Mathurins',
77
+ rcs: '891 501 181',
78
+ statut: 'SAS',
79
+ zipCode: '75 008',
80
+ },
81
+ idPrestationsListAuthorized: [197],
82
+ logoUrl: 'logo-pourcentage.svg',
83
+ hiddenPages: [],
84
+ recaptchaSecretKey: '6Le0o3kaAAAAAIEcSOib77JdK_W3cyIilK-p2yOG',
85
+ urlExpert: 'https://pro.comptalib.com',
86
+ urlClient: 'https://www.pourcentage.fr',
45
87
  },
46
88
  ];
47
89
  //# sourceMappingURL=BrandComptalib.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"BrandComptalib.js","sourceRoot":"","sources":["../../../ts/types/Enum/BrandComptalib.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,MAAM,cAAc,GAAG;IAC5B;QACE,WAAW,EAAE,CAAC;QACd,IAAI,EAAE,WAAW;QACjB,SAAS,EAAE;YACT,aAAa,EAAE,uBAAuB;YACtC,GAAG,EAAE,uBAAuB;YAC5B,OAAO,EAAE,uBAAuB;YAChC,OAAO,EAAE,uBAAuB;YAChC,WAAW,EAAE,uBAAuB;YACpC,QAAQ,EAAE,uBAAuB;YACjC,SAAS,EAAE,uBAAuB;YAClC,YAAY,EAAE,uBAAuB;YACrC,GAAG,EAAE,uBAAuB;YAC5B,OAAO,EAAE,uBAAuB;YAChC,OAAO,EAAE,uBAAuB;YAChC,QAAQ,EAAE,uBAAuB;YACjC,MAAM,EAAE,uBAAuB;YAC/B,OAAO,EAAE,uBAAuB;YAChC,GAAG,EAAE,uBAAuB;YAC5B,EAAE,EAAE,uBAAuB;SAC5B;KACF;IACD;QACE,WAAW,EAAE,CAAC;QACd,IAAI,EAAE,aAAa;QACnB,SAAS,EAAE;YACT,aAAa,EAAE,wBAAwB;YACvC,GAAG,EAAE,wBAAwB;YAC7B,OAAO,EAAE,wBAAwB;YACjC,OAAO,EAAE,wBAAwB;YACjC,WAAW,EAAE,4BAA4B;YACzC,QAAQ,EAAE,wBAAwB;YAClC,SAAS,EAAE,wBAAwB;YACnC,YAAY,EAAE,wBAAwB;YACtC,GAAG,EAAE,wBAAwB;YAC7B,OAAO,EAAE,wBAAwB;YACjC,OAAO,EAAE,wBAAwB;YACjC,QAAQ,EAAE,wBAAwB;YAClC,MAAM,EAAE,wBAAwB;YAChC,OAAO,EAAE,wBAAwB;YACjC,GAAG,EAAE,wBAAwB;YAC7B,EAAE,EAAE,wBAAwB;SAC7B;KACF;CACF,CAAC","sourcesContent":["export const BrandComptalib = [\n {\n idTypeBrand: 1,\n name: 'Comptalib',\n listMails: {\n administratif: 'contact@comptalib.com',\n app: 'contact@comptalib.com',\n bonjour: 'contact@comptalib.com',\n contact: 'contact@comptalib.com',\n facturation: 'contact@comptalib.com',\n feedback: 'contact@comptalib.com',\n juridique: 'contact@comptalib.com',\n informatique: 'contact@comptalib.com',\n msd: 'contact@comptalib.com',\n noreply: 'noreply@comptalib.com',\n qualite: 'contact@comptalib.com',\n paiement: 'contact@comptalib.com',\n social: 'contact@comptalib.com',\n support: 'support@comptalib.com',\n tva: 'contact@comptalib.com',\n wb: 'contact@comptalib.com',\n },\n },\n {\n idTypeBrand: 2,\n name: 'Pourcentage',\n listMails: {\n administratif: 'contact@pourcentage.fr',\n app: 'contact@pourcentage.fr',\n bonjour: 'contact@pourcentage.fr',\n contact: 'contact@pourcentage.fr',\n facturation: 'facturation@pourcentage.fr',\n feedback: 'contact@pourcentage.fr',\n juridique: 'contact@pourcentage.fr',\n informatique: 'contact@pourcentage.fr',\n msd: 'contact@pourcentage.fr',\n noreply: 'contact@pourcentage.fr',\n qualite: 'contact@pourcentage.fr',\n paiement: 'contact@pourcentage.fr',\n social: 'contact@pourcentage.fr',\n support: 'contact@pourcentage.fr',\n tva: 'contact@pourcentage.fr',\n wb: 'contact@pourcentage.fr',\n },\n },\n];"]}
1
+ {"version":3,"file":"BrandComptalib.js","sourceRoot":"","sources":["../../../ts/types/Enum/BrandComptalib.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,MAAM,cAAc,GAAG;IAC5B;QACE,WAAW,EAAE,CAAC;QACd,IAAI,EAAE,WAAW;QACjB,MAAM,EAAE;YACN,OAAO,EAAE,SAAS;SACnB;QACD,SAAS,EAAE;YACT,aAAa,EAAE,uBAAuB;YACtC,GAAG,EAAE,uBAAuB;YAC5B,OAAO,EAAE,uBAAuB;YAChC,OAAO,EAAE,uBAAuB;YAChC,WAAW,EAAE,uBAAuB;YACpC,QAAQ,EAAE,uBAAuB;YACjC,SAAS,EAAE,uBAAuB;YAClC,YAAY,EAAE,uBAAuB;YACrC,GAAG,EAAE,uBAAuB;YAC5B,OAAO,EAAE,uBAAuB;YAChC,OAAO,EAAE,uBAAuB;YAChC,QAAQ,EAAE,uBAAuB;YACjC,MAAM,EAAE,uBAAuB;YAC/B,OAAO,EAAE,uBAAuB;YAChC,GAAG,EAAE,uBAAuB;YAC5B,EAAE,EAAE,uBAAuB;SAC5B;QACD,kBAAkB,EAAE;YAClB,EAAE,EAAE,EAAE;YACN,IAAI,EAAE,OAAO;YACb,cAAc,EAAE,QAAQ;YACxB,gBAAgB,EAAE,eAAe;YACjC,WAAW,EAAE,OAAO;YACpB,KAAK,EAAE,gBAAgB;YACvB,aAAa,EAAE,uBAAuB;YACtC,GAAG,EAAE,aAAa;YAClB,MAAM,EAAE,KAAK;YACb,OAAO,EAAE,QAAQ;SAClB;QACD,2BAA2B,EAAE,CAAC,GAAG,CAAC;QAClC,OAAO,EAAE,oBAAoB;QAC7B,WAAW,EAAE,EAAE;QACf,kBAAkB,EAAE,0CAA0C;QAC9D,SAAS,EAAE,2BAA2B;QACtC,SAAS,EAAE,EAAE;KACd;IACD;QACE,WAAW,EAAE,CAAC;QACd,IAAI,EAAE,aAAa;QACnB,MAAM,EAAE;YACN,OAAO,EAAE,SAAS;SACnB;QACD,SAAS,EAAE;YACT,aAAa,EAAE,wBAAwB;YACvC,GAAG,EAAE,wBAAwB;YAC7B,OAAO,EAAE,wBAAwB;YACjC,OAAO,EAAE,wBAAwB;YACjC,WAAW,EAAE,4BAA4B;YACzC,QAAQ,EAAE,wBAAwB;YAClC,SAAS,EAAE,wBAAwB;YACnC,YAAY,EAAE,wBAAwB;YACtC,GAAG,EAAE,wBAAwB;YAC7B,OAAO,EAAE,wBAAwB;YACjC,OAAO,EAAE,wBAAwB;YACjC,QAAQ,EAAE,wBAAwB;YAClC,MAAM,EAAE,wBAAwB;YAChC,OAAO,EAAE,wBAAwB;YACjC,GAAG,EAAE,wBAAwB;YAC7B,EAAE,EAAE,wBAAwB;SAC7B;QACD,kBAAkB,EAAE;YAClB,EAAE,EAAE,EAAE;YACN,IAAI,EAAE,OAAO;YACb,cAAc,EAAE,QAAQ;YACxB,gBAAgB,EAAE,iBAAiB;YACnC,WAAW,EAAE,OAAO;YACpB,KAAK,EAAE,gBAAgB;YACvB,aAAa,EAAE,uBAAuB;YACtC,GAAG,EAAE,aAAa;YAClB,MAAM,EAAE,KAAK;YACb,OAAO,EAAE,QAAQ;SAClB;QACD,2BAA2B,EAAE,CAAC,GAAG,CAAC;QAClC,OAAO,EAAE,sBAAsB;QAC/B,WAAW,EAAE,EAAE;QACf,kBAAkB,EAAE,0CAA0C;QAC9D,SAAS,EAAE,2BAA2B;QACtC,SAAS,EAAE,4BAA4B;KACxC;CACF,CAAC","sourcesContent":["export const BrandComptalib = [\n {\n idTypeBrand: 1,\n name: 'Comptalib',\n colors: {\n primary: '#1656ff',\n },\n listMails: {\n administratif: 'contact@comptalib.com',\n app: 'contact@comptalib.com',\n bonjour: 'contact@comptalib.com',\n contact: 'contact@comptalib.com',\n facturation: 'contact@comptalib.com',\n feedback: 'contact@comptalib.com',\n juridique: 'contact@comptalib.com',\n informatique: 'contact@comptalib.com',\n msd: 'contact@comptalib.com',\n noreply: 'noreply@comptalib.com',\n qualite: 'contact@comptalib.com',\n paiement: 'contact@comptalib.com',\n social: 'contact@comptalib.com',\n support: 'support@comptalib.com',\n tva: 'contact@comptalib.com',\n wb: 'contact@comptalib.com',\n },\n companyInformation: {\n bp: '',\n city: 'Paris',\n montantCapital: '10 000',\n nomRaisonSociale: 'SAS COMPTALIB',\n ECOrderCity: 'Nancy',\n phone: '01 86 90 92 80',\n postalAddress: '30, rue des Mathurins',\n rcs: '808 070 726',\n statut: 'SAS',\n zipCode: '75 008',\n },\n idPrestationsListAuthorized: [197],\n logoUrl: 'logo-comptalib.svg',\n hiddenPages: [],\n recaptchaSecretKey: '6Le0o3kaAAAAAIEcSOib77JdK_W3cyIilK-p2yOG',\n urlExpert: 'https://pro.comptalib.com',\n urlClient: '',\n },\n {\n idTypeBrand: 2,\n name: 'Pourcentage',\n colors: {\n primary: '#1e6f5c',\n },\n listMails: {\n administratif: 'contact@pourcentage.fr',\n app: 'contact@pourcentage.fr',\n bonjour: 'contact@pourcentage.fr',\n contact: 'contact@pourcentage.fr',\n facturation: 'facturation@pourcentage.fr',\n feedback: 'contact@pourcentage.fr',\n juridique: 'contact@pourcentage.fr',\n informatique: 'contact@pourcentage.fr',\n msd: 'contact@pourcentage.fr',\n noreply: 'contact@pourcentage.fr',\n qualite: 'contact@pourcentage.fr',\n paiement: 'contact@pourcentage.fr',\n social: 'contact@pourcentage.fr',\n support: 'contact@pourcentage.fr',\n tva: 'contact@pourcentage.fr',\n wb: 'contact@pourcentage.fr',\n },\n companyInformation: {\n bp: '',\n city: 'Paris',\n montantCapital: '10 000',\n nomRaisonSociale: 'SAS POURCENTAGE',\n ECOrderCity: 'Nancy',\n phone: '01 86 90 82 15',\n postalAddress: '30, rue des Mathurins',\n rcs: '891 501 181',\n statut: 'SAS',\n zipCode: '75 008',\n },\n idPrestationsListAuthorized: [197],\n logoUrl: 'logo-pourcentage.svg',\n hiddenPages: [],\n recaptchaSecretKey: '6Le0o3kaAAAAAIEcSOib77JdK_W3cyIilK-p2yOG',\n urlExpert: 'https://pro.comptalib.com',\n urlClient: 'https://www.pourcentage.fr',\n },\n];"]}
@@ -1,6 +1,9 @@
1
1
  export declare const BrandLegalstart: {
2
2
  idTypeBrand: number;
3
3
  name: string;
4
+ colors: {
5
+ primary: string;
6
+ };
4
7
  listMails: {
5
8
  administratif: string;
6
9
  app: string;
@@ -19,5 +22,23 @@ export declare const BrandLegalstart: {
19
22
  tva: string;
20
23
  wb: string;
21
24
  };
25
+ companyInformation: {
26
+ bp: string;
27
+ city: string;
28
+ montantCapital: string;
29
+ nomRaisonSociale: string;
30
+ ECOrderCity: string;
31
+ phone: string;
32
+ postalAddress: string;
33
+ rcs: string;
34
+ statut: string;
35
+ zipCode: string;
36
+ };
37
+ idPrestationsListHidden: number[];
38
+ logoUrl: string;
39
+ hiddenPages: never[];
40
+ recaptchaSecretKey: string;
41
+ urlExpert: string;
42
+ urlClient: string;
22
43
  }[];
23
44
  //# sourceMappingURL=BrandLegalstart.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"BrandLegalstart.d.ts","sourceRoot":"","sources":["../../../ts/types/Enum/BrandLegalstart.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;GAuB3B,CAAC"}
1
+ {"version":3,"file":"BrandLegalstart.d.ts","sourceRoot":"","sources":["../../../ts/types/Enum/BrandLegalstart.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA4C3B,CAAC"}
@@ -2,6 +2,9 @@ export const BrandLegalstart = [
2
2
  {
3
3
  idTypeBrand: 1,
4
4
  name: 'LegalStart',
5
+ colors: {
6
+ primary: '#16a974',
7
+ },
5
8
  listMails: {
6
9
  administratif: 'comptastart@legalstart.fr',
7
10
  app: 'comptastart@legalstart.fr',
@@ -20,6 +23,24 @@ export const BrandLegalstart = [
20
23
  tva: 'comptastart@legalstart.fr',
21
24
  wb: 'comptastart@legalstart.fr',
22
25
  },
26
+ companyInformation: {
27
+ bp: '',
28
+ city: 'Paris',
29
+ montantCapital: '11 051,85',
30
+ nomRaisonSociale: 'SAS Yolaw',
31
+ ECOrderCity: 'Nancy',
32
+ phone: '01 76 39 00 60',
33
+ postalAddress: '50, rue d\'Hauteville',
34
+ rcs: '753 892 926',
35
+ statut: 'SAS',
36
+ zipCode: '75 010',
37
+ },
38
+ idPrestationsListHidden: [197],
39
+ logoUrl: 'logo-legalstart.svg',
40
+ hiddenPages: [],
41
+ recaptchaSecretKey: '6Le0o3kaAAAAAIEcSOib77JdK_W3cyIilK-p2yOG',
42
+ urlExpert: 'https://pro.comptalib.com',
43
+ urlClient: 'https://www.pourcentage.fr',
23
44
  },
24
45
  ];
25
46
  //# sourceMappingURL=BrandLegalstart.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"BrandLegalstart.js","sourceRoot":"","sources":["../../../ts/types/Enum/BrandLegalstart.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,MAAM,eAAe,GAAG;IAC7B;QACE,WAAW,EAAE,CAAC;QACd,IAAI,EAAE,YAAY;QAClB,SAAS,EAAE;YACT,aAAa,EAAE,2BAA2B;YAC1C,GAAG,EAAE,2BAA2B;YAChC,OAAO,EAAE,2BAA2B;YACpC,OAAO,EAAE,2BAA2B;YACpC,WAAW,EAAE,2BAA2B;YACxC,QAAQ,EAAE,2BAA2B;YACrC,SAAS,EAAE,2BAA2B;YACtC,YAAY,EAAE,2BAA2B;YACzC,GAAG,EAAE,2BAA2B;YAChC,OAAO,EAAE,2BAA2B;YACpC,OAAO,EAAE,2BAA2B;YACpC,QAAQ,EAAE,2BAA2B;YACrC,MAAM,EAAE,2BAA2B;YACnC,OAAO,EAAE,2BAA2B;YACpC,GAAG,EAAE,2BAA2B;YAChC,EAAE,EAAE,2BAA2B;SAChC;KACF;CACF,CAAC","sourcesContent":["export const BrandLegalstart = [\n {\n idTypeBrand: 1,\n name: 'LegalStart',\n listMails: {\n administratif: 'comptastart@legalstart.fr',\n app: 'comptastart@legalstart.fr',\n bonjour: 'comptastart@legalstart.fr',\n contact: 'comptastart@legalstart.fr',\n facturation: 'comptastart@legalstart.fr',\n feedback: 'comptastart@legalstart.fr',\n juridique: 'comptastart@legalstart.fr',\n informatique: 'comptastart@legalstart.fr',\n msd: 'comptastart@legalstart.fr',\n noreply: 'comptastart@legalstart.fr',\n qualite: 'comptastart@legalstart.fr',\n paiement: 'comptastart@legalstart.fr',\n social: 'comptastart@legalstart.fr',\n support: 'comptastart@legalstart.fr',\n tva: 'comptastart@legalstart.fr',\n wb: 'comptastart@legalstart.fr',\n },\n },\n];"]}
1
+ {"version":3,"file":"BrandLegalstart.js","sourceRoot":"","sources":["../../../ts/types/Enum/BrandLegalstart.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,MAAM,eAAe,GAAG;IAC7B;QACE,WAAW,EAAE,CAAC;QACd,IAAI,EAAE,YAAY;QAClB,MAAM,EAAE;YACN,OAAO,EAAE,SAAS;SACnB;QACD,SAAS,EAAE;YACT,aAAa,EAAE,2BAA2B;YAC1C,GAAG,EAAE,2BAA2B;YAChC,OAAO,EAAE,2BAA2B;YACpC,OAAO,EAAE,2BAA2B;YACpC,WAAW,EAAE,2BAA2B;YACxC,QAAQ,EAAE,2BAA2B;YACrC,SAAS,EAAE,2BAA2B;YACtC,YAAY,EAAE,2BAA2B;YACzC,GAAG,EAAE,2BAA2B;YAChC,OAAO,EAAE,2BAA2B;YACpC,OAAO,EAAE,2BAA2B;YACpC,QAAQ,EAAE,2BAA2B;YACrC,MAAM,EAAE,2BAA2B;YACnC,OAAO,EAAE,2BAA2B;YACpC,GAAG,EAAE,2BAA2B;YAChC,EAAE,EAAE,2BAA2B;SAChC;QACD,kBAAkB,EAAE;YAClB,EAAE,EAAE,EAAE;YACN,IAAI,EAAE,OAAO;YACb,cAAc,EAAE,WAAW;YAC3B,gBAAgB,EAAE,WAAW;YAC7B,WAAW,EAAE,OAAO;YACpB,KAAK,EAAE,gBAAgB;YACvB,aAAa,EAAE,uBAAuB;YACtC,GAAG,EAAE,aAAa;YAClB,MAAM,EAAE,KAAK;YACb,OAAO,EAAE,QAAQ;SAClB;QACD,uBAAuB,EAAE,CAAC,GAAG,CAAC;QAC9B,OAAO,EAAE,qBAAqB;QAC9B,WAAW,EAAE,EAAE;QACf,kBAAkB,EAAE,0CAA0C;QAC9D,SAAS,EAAE,2BAA2B;QACtC,SAAS,EAAE,4BAA4B;KACxC;CACF,CAAC","sourcesContent":["export const BrandLegalstart = [\n {\n idTypeBrand: 1,\n name: 'LegalStart',\n colors: {\n primary: '#16a974',\n },\n listMails: {\n administratif: 'comptastart@legalstart.fr',\n app: 'comptastart@legalstart.fr',\n bonjour: 'comptastart@legalstart.fr',\n contact: 'comptastart@legalstart.fr',\n facturation: 'comptastart@legalstart.fr',\n feedback: 'comptastart@legalstart.fr',\n juridique: 'comptastart@legalstart.fr',\n informatique: 'comptastart@legalstart.fr',\n msd: 'comptastart@legalstart.fr',\n noreply: 'comptastart@legalstart.fr',\n qualite: 'comptastart@legalstart.fr',\n paiement: 'comptastart@legalstart.fr',\n social: 'comptastart@legalstart.fr',\n support: 'comptastart@legalstart.fr',\n tva: 'comptastart@legalstart.fr',\n wb: 'comptastart@legalstart.fr',\n },\n companyInformation: {\n bp: '',\n city: 'Paris',\n montantCapital: '11 051,85',\n nomRaisonSociale: 'SAS Yolaw',\n ECOrderCity: 'Nancy',\n phone: '01 76 39 00 60',\n postalAddress: '50, rue d\\'Hauteville',\n rcs: '753 892 926',\n statut: 'SAS',\n zipCode: '75 010',\n },\n idPrestationsListHidden: [197],\n logoUrl: 'logo-legalstart.svg',\n hiddenPages: [],\n recaptchaSecretKey: '6Le0o3kaAAAAAIEcSOib77JdK_W3cyIilK-p2yOG',\n urlExpert: 'https://pro.comptalib.com',\n urlClient: 'https://www.pourcentage.fr',\n },\n];"]}
@@ -6,6 +6,9 @@ Object.defineProperty(exports, "__esModule", {
6
6
  const BrandClementine = exports.BrandClementine = [{
7
7
  idTypeBrand: 1,
8
8
  name: 'Clementine',
9
+ colors: {
10
+ primary: '#ff7e3c'
11
+ },
9
12
  listMails: {
10
13
  administratif: 'administratif@compta-clementine.fr',
11
14
  app: 'app@compta-clementine.fr',
@@ -23,19 +26,63 @@ const BrandClementine = exports.BrandClementine = [{
23
26
  support: 'support@compta-clementine.fr',
24
27
  tva: 'tva@compta-clementine.fr',
25
28
  wb: 'wb@compta-clementine.fr'
26
- }
29
+ },
30
+ companyInformation: {
31
+ bp: 'BP 80016',
32
+ city: 'Ludres',
33
+ montantCapital: '500 000',
34
+ nomRaisonSociale: 'SAS EXPERTISE CHOIX B',
35
+ ECOrderCity: 'Nancy',
36
+ phone: '03 83 93 14 14',
37
+ postalAddress: '88, rue Pierre et Marie Curie',
38
+ rcs: '752 566 687',
39
+ statut: 'SAS',
40
+ zipCode: '54 710'
41
+ },
42
+ idPrestationsListHidden: [197],
43
+ logoUrl: 'logo-dark.svg',
44
+ hiddenPages: [],
45
+ urlExpert: 'https://expert.compta-clementine.fr',
46
+ urlClient: 'https://www.compta-clementine.fr'
27
47
  }, {
28
48
  idTypeBrand: 2,
29
49
  name: 'Legalstart',
50
+ colors: {
51
+ primary: '#16a974'
52
+ },
30
53
  listMails: {
31
54
  contact: 'comptastart@legalstart.fr'
32
- }
55
+ },
56
+ companyInformation: {
57
+ bp: '',
58
+ city: 'Paris',
59
+ montantCapital: '11 051,85',
60
+ nomRaisonSociale: 'SAS Yolaw',
61
+ ECOrderCity: 'Nancy',
62
+ phone: '01 76 39 00 60',
63
+ postalAddress: '50, rue d\'Hauteville',
64
+ rcs: '753 892 926',
65
+ statut: 'SAS',
66
+ zipCode: '75 010'
67
+ },
68
+ idPrestationsListHidden: [197],
69
+ logoUrl: 'logo-legalstart.svg',
70
+ hiddenPages: [],
71
+ recaptchaSecretKey: '6Le0o3kaAAAAAIEcSOib77JdK_W3cyIilK-p2yOG',
72
+ urlExpert: 'https://pro.comptalib.com',
73
+ urlClient: 'https://www.pourcentage.fr'
33
74
  }, {
34
75
  idTypeBrand: 3,
35
- name: 'BRED'
76
+ name: 'BRED',
77
+ colors: {
78
+ primary: '#24315e'
79
+ }
36
80
  }, {
37
81
  idTypeBrand: 4,
38
82
  name: 'Pourcentage',
83
+ colors: {
84
+ primary: '#1e6f5c'
85
+ },
39
86
  listMails: {
40
87
  administratif: 'administratif@pourcentage.fr',
41
88
  app: 'app@pourcentage.fr',
@@ -53,7 +100,25 @@ const BrandClementine = exports.BrandClementine = [{
53
100
  support: 'support@pourcentage.fr',
54
101
  tva: 'tva@pourcentage.fr',
55
102
  wb: 'wb@pourcentage.fr'
56
- }
103
+ },
104
+ companyInformation: {
105
+ bp: '',
106
+ city: 'Paris',
107
+ montantCapital: '10 000',
108
+ nomRaisonSociale: 'SAS POURCENTAGE',
109
+ ECOrderCity: 'Nancy',
110
+ phone: '01 86 90 82 15',
111
+ postalAddress: '30, rue des Mathurins',
112
+ rcs: '891 501 181',
113
+ statut: 'SAS',
114
+ zipCode: '75 008'
115
+ },
116
+ idPrestationsListAuthorized: [197],
117
+ logoUrl: 'logo-pourcentage.svg',
118
+ hiddenPages: [],
119
+ recaptchaSecretKey: '6Le0o3kaAAAAAIEcSOib77JdK_W3cyIilK-p2yOG',
120
+ urlExpert: 'https://pro.comptalib.com',
121
+ urlClient: 'https://www.pourcentage.fr'
57
122
  }, {
58
123
  idTypeBrand: 5,
59
124
  name: 'Kandbaz'
@@ -1 +1 @@
1
- {"version":3,"sources":["../../../ts/types/Enum/BrandClementine.ts"],"names":[],"mappings":";;;;;AAAO,MAAM,eAAe,WAAf,eAAe,GAAG,CAC7B;AACE,EAAA,WAAW,EAAE,CADf;AAEE,EAAA,IAAI,EAAE,YAFR;AAGE,EAAA,SAAS,EAAE;AACT,IAAA,aAAa,EAAE,oCADN;AAET,IAAA,GAAG,EAAE,0BAFI;AAGT,IAAA,OAAO,EAAE,8BAHA;AAIT,IAAA,OAAO,EAAE,8BAJA;AAKT,IAAA,WAAW,EAAE,kCALJ;AAMT,IAAA,QAAQ,EAAE,+BAND;AAOT,IAAA,SAAS,EAAE,gCAPF;AAQT,IAAA,YAAY,EAAE,mCARL;AAST,IAAA,GAAG,EAAE,0BATI;AAUT,IAAA,OAAO,EAAE,8BAVA;AAWT,IAAA,OAAO,EAAE,8BAXA;AAYT,IAAA,QAAQ,EAAE,+BAZD;AAaT,IAAA,MAAM,EAAE,6BAbC;AAcT,IAAA,OAAO,EAAE,8BAdA;AAeT,IAAA,GAAG,EAAE,0BAfI;AAgBT,IAAA,EAAE,EAAE;AAhBK;AAHb,CAD6B,EAuB7B;AACE,EAAA,WAAW,EAAE,CADf;AAEE,EAAA,IAAI,EAAE,YAFR;AAGE,EAAA,SAAS,EAAE;AACT,IAAA,OAAO,EAAE;AADA;AAHb,CAvB6B,EA8B7B;AACE,EAAA,WAAW,EAAE,CADf;AAEE,EAAA,IAAI,EAAE;AAFR,CA9B6B,EAkC7B;AACE,EAAA,WAAW,EAAE,CADf;AAEE,EAAA,IAAI,EAAE,aAFR;AAGE,EAAA,SAAS,EAAE;AACT,IAAA,aAAa,EAAE,8BADN;AAET,IAAA,GAAG,EAAE,oBAFI;AAGT,IAAA,OAAO,EAAE,wBAHA;AAIT,IAAA,OAAO,EAAE,wBAJA;AAKT,IAAA,WAAW,EAAE,4BALJ;AAMT,IAAA,QAAQ,EAAE,yBAND;AAOT,IAAA,SAAS,EAAE,0BAPF;AAQT,IAAA,YAAY,EAAE,6BARL;AAST,IAAA,GAAG,EAAE,oBATI;AAUT,IAAA,OAAO,EAAE,wBAVA;AAWT,IAAA,OAAO,EAAE,wBAXA;AAYT,IAAA,QAAQ,EAAE,yBAZD;AAaT,IAAA,MAAM,EAAE,uBAbC;AAcT,IAAA,OAAO,EAAE,wBAdA;AAeT,IAAA,GAAG,EAAE,oBAfI;AAgBT,IAAA,EAAE,EAAE;AAhBK;AAHb,CAlC6B,EAwD7B;AACE,EAAA,WAAW,EAAE,CADf;AAEE,EAAA,IAAI,EAAE;AAFR,CAxD6B,CAAxB","sourcesContent":["export const BrandClementine = [\n {\n idTypeBrand: 1,\n name: 'Clementine',\n listMails: {\n administratif: 'administratif@compta-clementine.fr',\n app: 'app@compta-clementine.fr',\n bonjour: 'bonjour@compta-clementine.fr',\n contact: 'contact@compta-clementine.fr',\n facturation: 'facturation@compta-clementine.fr',\n feedback: 'feedback@compta-clementine.fr',\n juridique: 'juridique@compta-clementine.fr',\n informatique: 'informatique@compta-clementine.fr',\n msd: 'msd@compta-clementine.fr',\n noreply: 'noreply@compta-clementine.fr',\n qualite: 'qualite@compta-clementine.fr',\n paiement: 'paiement@compta-clementine.fr',\n social: 'social@compta-clementine.fr',\n support: 'support@compta-clementine.fr',\n tva: 'tva@compta-clementine.fr',\n wb: 'wb@compta-clementine.fr',\n },\n },\n {\n idTypeBrand: 2,\n name: 'Legalstart',\n listMails: {\n contact: 'comptastart@legalstart.fr',\n },\n },\n {\n idTypeBrand: 3,\n name: 'BRED',\n },\n {\n idTypeBrand: 4,\n name: 'Pourcentage',\n listMails: {\n administratif: 'administratif@pourcentage.fr',\n app: 'app@pourcentage.fr',\n bonjour: 'bonjour@pourcentage.fr',\n contact: 'contact@pourcentage.fr',\n facturation: 'facturation@pourcentage.fr',\n feedback: 'feedback@pourcentage.fr',\n juridique: 'juridique@pourcentage.fr',\n informatique: 'informatique@pourcentage.fr',\n msd: 'msd@pourcentage.fr',\n noreply: 'noreply@pourcentage.fr',\n qualite: 'qualite@pourcentage.fr',\n paiement: 'paiement@pourcentage.fr',\n social: 'social@pourcentage.fr',\n support: 'support@pourcentage.fr',\n tva: 'tva@pourcentage.fr',\n wb: 'wb@pourcentage.fr',\n },\n },\n {\n idTypeBrand: 5,\n name: 'Kandbaz',\n },\n];"],"sourceRoot":"","file":"BrandClementine.js"}
1
+ {"version":3,"sources":["../../../ts/types/Enum/BrandClementine.ts"],"names":[],"mappings":"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","sourcesContent":["export const BrandClementine = [\n {\n idTypeBrand: 1,\n name: 'Clementine',\n colors: {\n primary: '#ff7e3c',\n },\n listMails: {\n administratif: 'administratif@compta-clementine.fr',\n app: 'app@compta-clementine.fr',\n bonjour: 'bonjour@compta-clementine.fr',\n contact: 'contact@compta-clementine.fr',\n facturation: 'facturation@compta-clementine.fr',\n feedback: 'feedback@compta-clementine.fr',\n juridique: 'juridique@compta-clementine.fr',\n informatique: 'informatique@compta-clementine.fr',\n msd: 'msd@compta-clementine.fr',\n noreply: 'noreply@compta-clementine.fr',\n qualite: 'qualite@compta-clementine.fr',\n paiement: 'paiement@compta-clementine.fr',\n social: 'social@compta-clementine.fr',\n support: 'support@compta-clementine.fr',\n tva: 'tva@compta-clementine.fr',\n wb: 'wb@compta-clementine.fr',\n },\n companyInformation: {\n bp: 'BP 80016',\n city: 'Ludres',\n montantCapital: '500 000',\n nomRaisonSociale: 'SAS EXPERTISE CHOIX B',\n ECOrderCity: 'Nancy',\n phone: '03 83 93 14 14',\n postalAddress: '88, rue Pierre et Marie Curie',\n rcs: '752 566 687',\n statut: 'SAS',\n zipCode: '54 710',\n },\n idPrestationsListHidden: [197], // TODO:\n logoUrl: 'logo-dark.svg',\n hiddenPages: [],\n urlExpert: 'https://expert.compta-clementine.fr',\n urlClient: 'https://www.compta-clementine.fr',\n },\n {\n idTypeBrand: 2,\n name: 'Legalstart',\n colors: {\n primary: '#16a974',\n },\n listMails: {\n contact: 'comptastart@legalstart.fr',\n },\n companyInformation: {\n bp: '',\n city: 'Paris',\n montantCapital: '11 051,85',\n nomRaisonSociale: 'SAS Yolaw',\n ECOrderCity: 'Nancy',\n phone: '01 76 39 00 60',\n postalAddress: '50, rue d\\'Hauteville',\n rcs: '753 892 926',\n statut: 'SAS',\n zipCode: '75 010',\n },\n idPrestationsListHidden: [197],\n logoUrl: 'logo-legalstart.svg',\n hiddenPages: [],\n recaptchaSecretKey: '6Le0o3kaAAAAAIEcSOib77JdK_W3cyIilK-p2yOG',\n urlExpert: 'https://pro.comptalib.com',\n urlClient: 'https://www.pourcentage.fr',\n },\n {\n idTypeBrand: 3,\n name: 'BRED',\n colors: {\n primary: '#24315e',\n },\n },\n {\n idTypeBrand: 4,\n name: 'Pourcentage',\n colors: {\n primary: '#1e6f5c',\n },\n listMails: {\n administratif: 'administratif@pourcentage.fr',\n app: 'app@pourcentage.fr',\n bonjour: 'bonjour@pourcentage.fr',\n contact: 'contact@pourcentage.fr',\n facturation: 'facturation@pourcentage.fr',\n feedback: 'feedback@pourcentage.fr',\n juridique: 'juridique@pourcentage.fr',\n informatique: 'informatique@pourcentage.fr',\n msd: 'msd@pourcentage.fr',\n noreply: 'noreply@pourcentage.fr',\n qualite: 'qualite@pourcentage.fr',\n paiement: 'paiement@pourcentage.fr',\n social: 'social@pourcentage.fr',\n support: 'support@pourcentage.fr',\n tva: 'tva@pourcentage.fr',\n wb: 'wb@pourcentage.fr',\n },\n companyInformation: {\n bp: '',\n city: 'Paris',\n montantCapital: '10 000',\n nomRaisonSociale: 'SAS POURCENTAGE',\n ECOrderCity: 'Nancy',\n phone: '01 86 90 82 15',\n postalAddress: '30, rue des Mathurins',\n rcs: '891 501 181',\n statut: 'SAS',\n zipCode: '75 008',\n },\n idPrestationsListAuthorized: [197],\n logoUrl: 'logo-pourcentage.svg',\n hiddenPages: [],\n recaptchaSecretKey: '6Le0o3kaAAAAAIEcSOib77JdK_W3cyIilK-p2yOG', // TODO:\n urlExpert: 'https://pro.comptalib.com',\n urlClient: 'https://www.pourcentage.fr',\n },\n {\n idTypeBrand: 5,\n name: 'Kandbaz',\n },\n];"],"sourceRoot":"","file":"BrandClementine.js"}
@@ -6,6 +6,9 @@ Object.defineProperty(exports, "__esModule", {
6
6
  const BrandComptalib = exports.BrandComptalib = [{
7
7
  idTypeBrand: 1,
8
8
  name: 'Comptalib',
9
+ colors: {
10
+ primary: '#1656ff'
11
+ },
9
12
  listMails: {
10
13
  administratif: 'contact@comptalib.com',
11
14
  app: 'contact@comptalib.com',
@@ -23,10 +26,31 @@ const BrandComptalib = exports.BrandComptalib = [{
23
26
  support: 'support@comptalib.com',
24
27
  tva: 'contact@comptalib.com',
25
28
  wb: 'contact@comptalib.com'
26
- }
29
+ },
30
+ companyInformation: {
31
+ bp: '',
32
+ city: 'Paris',
33
+ montantCapital: '10 000',
34
+ nomRaisonSociale: 'SAS COMPTALIB',
35
+ ECOrderCity: 'Nancy',
36
+ phone: '01 86 90 92 80',
37
+ postalAddress: '30, rue des Mathurins',
38
+ rcs: '808 070 726',
39
+ statut: 'SAS',
40
+ zipCode: '75 008'
41
+ },
42
+ idPrestationsListAuthorized: [197],
43
+ logoUrl: 'logo-comptalib.svg',
44
+ hiddenPages: [],
45
+ recaptchaSecretKey: '6Le0o3kaAAAAAIEcSOib77JdK_W3cyIilK-p2yOG',
46
+ urlExpert: 'https://pro.comptalib.com',
47
+ urlClient: ''
27
48
  }, {
28
49
  idTypeBrand: 2,
29
50
  name: 'Pourcentage',
51
+ colors: {
52
+ primary: '#1e6f5c'
53
+ },
30
54
  listMails: {
31
55
  administratif: 'contact@pourcentage.fr',
32
56
  app: 'contact@pourcentage.fr',
@@ -44,6 +68,24 @@ const BrandComptalib = exports.BrandComptalib = [{
44
68
  support: 'contact@pourcentage.fr',
45
69
  tva: 'contact@pourcentage.fr',
46
70
  wb: 'contact@pourcentage.fr'
47
- }
71
+ },
72
+ companyInformation: {
73
+ bp: '',
74
+ city: 'Paris',
75
+ montantCapital: '10 000',
76
+ nomRaisonSociale: 'SAS POURCENTAGE',
77
+ ECOrderCity: 'Nancy',
78
+ phone: '01 86 90 82 15',
79
+ postalAddress: '30, rue des Mathurins',
80
+ rcs: '891 501 181',
81
+ statut: 'SAS',
82
+ zipCode: '75 008'
83
+ },
84
+ idPrestationsListAuthorized: [197],
85
+ logoUrl: 'logo-pourcentage.svg',
86
+ hiddenPages: [],
87
+ recaptchaSecretKey: '6Le0o3kaAAAAAIEcSOib77JdK_W3cyIilK-p2yOG',
88
+ urlExpert: 'https://pro.comptalib.com',
89
+ urlClient: 'https://www.pourcentage.fr'
48
90
  }];
49
91
  //# sourceMappingURL=BrandComptalib.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../../../ts/types/Enum/BrandComptalib.ts"],"names":[],"mappings":";;;;;AAAO,MAAM,cAAc,WAAd,cAAc,GAAG,CAC5B;AACE,EAAA,WAAW,EAAE,CADf;AAEE,EAAA,IAAI,EAAE,WAFR;AAGE,EAAA,SAAS,EAAE;AACT,IAAA,aAAa,EAAE,uBADN;AAET,IAAA,GAAG,EAAE,uBAFI;AAGT,IAAA,OAAO,EAAE,uBAHA;AAIT,IAAA,OAAO,EAAE,uBAJA;AAKT,IAAA,WAAW,EAAE,uBALJ;AAMT,IAAA,QAAQ,EAAE,uBAND;AAOT,IAAA,SAAS,EAAE,uBAPF;AAQT,IAAA,YAAY,EAAE,uBARL;AAST,IAAA,GAAG,EAAE,uBATI;AAUT,IAAA,OAAO,EAAE,uBAVA;AAWT,IAAA,OAAO,EAAE,uBAXA;AAYT,IAAA,QAAQ,EAAE,uBAZD;AAaT,IAAA,MAAM,EAAE,uBAbC;AAcT,IAAA,OAAO,EAAE,uBAdA;AAeT,IAAA,GAAG,EAAE,uBAfI;AAgBT,IAAA,EAAE,EAAE;AAhBK;AAHb,CAD4B,EAuB5B;AACE,EAAA,WAAW,EAAE,CADf;AAEE,EAAA,IAAI,EAAE,aAFR;AAGE,EAAA,SAAS,EAAE;AACT,IAAA,aAAa,EAAE,wBADN;AAET,IAAA,GAAG,EAAE,wBAFI;AAGT,IAAA,OAAO,EAAE,wBAHA;AAIT,IAAA,OAAO,EAAE,wBAJA;AAKT,IAAA,WAAW,EAAE,4BALJ;AAMT,IAAA,QAAQ,EAAE,wBAND;AAOT,IAAA,SAAS,EAAE,wBAPF;AAQT,IAAA,YAAY,EAAE,wBARL;AAST,IAAA,GAAG,EAAE,wBATI;AAUT,IAAA,OAAO,EAAE,wBAVA;AAWT,IAAA,OAAO,EAAE,wBAXA;AAYT,IAAA,QAAQ,EAAE,wBAZD;AAaT,IAAA,MAAM,EAAE,wBAbC;AAcT,IAAA,OAAO,EAAE,wBAdA;AAeT,IAAA,GAAG,EAAE,wBAfI;AAgBT,IAAA,EAAE,EAAE;AAhBK;AAHb,CAvB4B,CAAvB","sourcesContent":["export const BrandComptalib = [\n {\n idTypeBrand: 1,\n name: 'Comptalib',\n listMails: {\n administratif: 'contact@comptalib.com',\n app: 'contact@comptalib.com',\n bonjour: 'contact@comptalib.com',\n contact: 'contact@comptalib.com',\n facturation: 'contact@comptalib.com',\n feedback: 'contact@comptalib.com',\n juridique: 'contact@comptalib.com',\n informatique: 'contact@comptalib.com',\n msd: 'contact@comptalib.com',\n noreply: 'noreply@comptalib.com',\n qualite: 'contact@comptalib.com',\n paiement: 'contact@comptalib.com',\n social: 'contact@comptalib.com',\n support: 'support@comptalib.com',\n tva: 'contact@comptalib.com',\n wb: 'contact@comptalib.com',\n },\n },\n {\n idTypeBrand: 2,\n name: 'Pourcentage',\n listMails: {\n administratif: 'contact@pourcentage.fr',\n app: 'contact@pourcentage.fr',\n bonjour: 'contact@pourcentage.fr',\n contact: 'contact@pourcentage.fr',\n facturation: 'facturation@pourcentage.fr',\n feedback: 'contact@pourcentage.fr',\n juridique: 'contact@pourcentage.fr',\n informatique: 'contact@pourcentage.fr',\n msd: 'contact@pourcentage.fr',\n noreply: 'contact@pourcentage.fr',\n qualite: 'contact@pourcentage.fr',\n paiement: 'contact@pourcentage.fr',\n social: 'contact@pourcentage.fr',\n support: 'contact@pourcentage.fr',\n tva: 'contact@pourcentage.fr',\n wb: 'contact@pourcentage.fr',\n },\n },\n];"],"sourceRoot":"","file":"BrandComptalib.js"}
1
+ {"version":3,"sources":["../../../ts/types/Enum/BrandComptalib.ts"],"names":[],"mappings":"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","sourcesContent":["export const BrandComptalib = [\n {\n idTypeBrand: 1,\n name: 'Comptalib',\n colors: {\n primary: '#1656ff',\n },\n listMails: {\n administratif: 'contact@comptalib.com',\n app: 'contact@comptalib.com',\n bonjour: 'contact@comptalib.com',\n contact: 'contact@comptalib.com',\n facturation: 'contact@comptalib.com',\n feedback: 'contact@comptalib.com',\n juridique: 'contact@comptalib.com',\n informatique: 'contact@comptalib.com',\n msd: 'contact@comptalib.com',\n noreply: 'noreply@comptalib.com',\n qualite: 'contact@comptalib.com',\n paiement: 'contact@comptalib.com',\n social: 'contact@comptalib.com',\n support: 'support@comptalib.com',\n tva: 'contact@comptalib.com',\n wb: 'contact@comptalib.com',\n },\n companyInformation: {\n bp: '',\n city: 'Paris',\n montantCapital: '10 000',\n nomRaisonSociale: 'SAS COMPTALIB',\n ECOrderCity: 'Nancy',\n phone: '01 86 90 92 80',\n postalAddress: '30, rue des Mathurins',\n rcs: '808 070 726',\n statut: 'SAS',\n zipCode: '75 008',\n },\n idPrestationsListAuthorized: [197],\n logoUrl: 'logo-comptalib.svg',\n hiddenPages: [],\n recaptchaSecretKey: '6Le0o3kaAAAAAIEcSOib77JdK_W3cyIilK-p2yOG',\n urlExpert: 'https://pro.comptalib.com',\n urlClient: '',\n },\n {\n idTypeBrand: 2,\n name: 'Pourcentage',\n colors: {\n primary: '#1e6f5c',\n },\n listMails: {\n administratif: 'contact@pourcentage.fr',\n app: 'contact@pourcentage.fr',\n bonjour: 'contact@pourcentage.fr',\n contact: 'contact@pourcentage.fr',\n facturation: 'facturation@pourcentage.fr',\n feedback: 'contact@pourcentage.fr',\n juridique: 'contact@pourcentage.fr',\n informatique: 'contact@pourcentage.fr',\n msd: 'contact@pourcentage.fr',\n noreply: 'contact@pourcentage.fr',\n qualite: 'contact@pourcentage.fr',\n paiement: 'contact@pourcentage.fr',\n social: 'contact@pourcentage.fr',\n support: 'contact@pourcentage.fr',\n tva: 'contact@pourcentage.fr',\n wb: 'contact@pourcentage.fr',\n },\n companyInformation: {\n bp: '',\n city: 'Paris',\n montantCapital: '10 000',\n nomRaisonSociale: 'SAS POURCENTAGE',\n ECOrderCity: 'Nancy',\n phone: '01 86 90 82 15',\n postalAddress: '30, rue des Mathurins',\n rcs: '891 501 181',\n statut: 'SAS',\n zipCode: '75 008',\n },\n idPrestationsListAuthorized: [197],\n logoUrl: 'logo-pourcentage.svg',\n hiddenPages: [],\n recaptchaSecretKey: '6Le0o3kaAAAAAIEcSOib77JdK_W3cyIilK-p2yOG',\n urlExpert: 'https://pro.comptalib.com',\n urlClient: 'https://www.pourcentage.fr',\n },\n];"],"sourceRoot":"","file":"BrandComptalib.js"}
@@ -6,6 +6,9 @@ Object.defineProperty(exports, "__esModule", {
6
6
  const BrandLegalstart = exports.BrandLegalstart = [{
7
7
  idTypeBrand: 1,
8
8
  name: 'LegalStart',
9
+ colors: {
10
+ primary: '#16a974'
11
+ },
9
12
  listMails: {
10
13
  administratif: 'comptastart@legalstart.fr',
11
14
  app: 'comptastart@legalstart.fr',
@@ -23,6 +26,24 @@ const BrandLegalstart = exports.BrandLegalstart = [{
23
26
  support: 'comptastart@legalstart.fr',
24
27
  tva: 'comptastart@legalstart.fr',
25
28
  wb: 'comptastart@legalstart.fr'
26
- }
29
+ },
30
+ companyInformation: {
31
+ bp: '',
32
+ city: 'Paris',
33
+ montantCapital: '11 051,85',
34
+ nomRaisonSociale: 'SAS Yolaw',
35
+ ECOrderCity: 'Nancy',
36
+ phone: '01 76 39 00 60',
37
+ postalAddress: '50, rue d\'Hauteville',
38
+ rcs: '753 892 926',
39
+ statut: 'SAS',
40
+ zipCode: '75 010'
41
+ },
42
+ idPrestationsListHidden: [197],
43
+ logoUrl: 'logo-legalstart.svg',
44
+ hiddenPages: [],
45
+ recaptchaSecretKey: '6Le0o3kaAAAAAIEcSOib77JdK_W3cyIilK-p2yOG',
46
+ urlExpert: 'https://pro.comptalib.com',
47
+ urlClient: 'https://www.pourcentage.fr'
27
48
  }];
28
49
  //# sourceMappingURL=BrandLegalstart.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../../../ts/types/Enum/BrandLegalstart.ts"],"names":[],"mappings":";;;;;AAAO,MAAM,eAAe,WAAf,eAAe,GAAG,CAC7B;AACE,EAAA,WAAW,EAAE,CADf;AAEE,EAAA,IAAI,EAAE,YAFR;AAGE,EAAA,SAAS,EAAE;AACT,IAAA,aAAa,EAAE,2BADN;AAET,IAAA,GAAG,EAAE,2BAFI;AAGT,IAAA,OAAO,EAAE,2BAHA;AAIT,IAAA,OAAO,EAAE,2BAJA;AAKT,IAAA,WAAW,EAAE,2BALJ;AAMT,IAAA,QAAQ,EAAE,2BAND;AAOT,IAAA,SAAS,EAAE,2BAPF;AAQT,IAAA,YAAY,EAAE,2BARL;AAST,IAAA,GAAG,EAAE,2BATI;AAUT,IAAA,OAAO,EAAE,2BAVA;AAWT,IAAA,OAAO,EAAE,2BAXA;AAYT,IAAA,QAAQ,EAAE,2BAZD;AAaT,IAAA,MAAM,EAAE,2BAbC;AAcT,IAAA,OAAO,EAAE,2BAdA;AAeT,IAAA,GAAG,EAAE,2BAfI;AAgBT,IAAA,EAAE,EAAE;AAhBK;AAHb,CAD6B,CAAxB","sourcesContent":["export const BrandLegalstart = [\n {\n idTypeBrand: 1,\n name: 'LegalStart',\n listMails: {\n administratif: 'comptastart@legalstart.fr',\n app: 'comptastart@legalstart.fr',\n bonjour: 'comptastart@legalstart.fr',\n contact: 'comptastart@legalstart.fr',\n facturation: 'comptastart@legalstart.fr',\n feedback: 'comptastart@legalstart.fr',\n juridique: 'comptastart@legalstart.fr',\n informatique: 'comptastart@legalstart.fr',\n msd: 'comptastart@legalstart.fr',\n noreply: 'comptastart@legalstart.fr',\n qualite: 'comptastart@legalstart.fr',\n paiement: 'comptastart@legalstart.fr',\n social: 'comptastart@legalstart.fr',\n support: 'comptastart@legalstart.fr',\n tva: 'comptastart@legalstart.fr',\n wb: 'comptastart@legalstart.fr',\n },\n },\n];"],"sourceRoot":"","file":"BrandLegalstart.js"}
1
+ {"version":3,"sources":["../../../ts/types/Enum/BrandLegalstart.ts"],"names":[],"mappings":";;;;;AAAO,MAAM,eAAe,WAAf,eAAe,GAAG,CAC7B;AACE,EAAA,WAAW,EAAE,CADf;AAEE,EAAA,IAAI,EAAE,YAFR;AAGE,EAAA,MAAM,EAAE;AACN,IAAA,OAAO,EAAE;AADH,GAHV;AAME,EAAA,SAAS,EAAE;AACT,IAAA,aAAa,EAAE,2BADN;AAET,IAAA,GAAG,EAAE,2BAFI;AAGT,IAAA,OAAO,EAAE,2BAHA;AAIT,IAAA,OAAO,EAAE,2BAJA;AAKT,IAAA,WAAW,EAAE,2BALJ;AAMT,IAAA,QAAQ,EAAE,2BAND;AAOT,IAAA,SAAS,EAAE,2BAPF;AAQT,IAAA,YAAY,EAAE,2BARL;AAST,IAAA,GAAG,EAAE,2BATI;AAUT,IAAA,OAAO,EAAE,2BAVA;AAWT,IAAA,OAAO,EAAE,2BAXA;AAYT,IAAA,QAAQ,EAAE,2BAZD;AAaT,IAAA,MAAM,EAAE,2BAbC;AAcT,IAAA,OAAO,EAAE,2BAdA;AAeT,IAAA,GAAG,EAAE,2BAfI;AAgBT,IAAA,EAAE,EAAE;AAhBK,GANb;AAwBE,EAAA,kBAAkB,EAAE;AAClB,IAAA,EAAE,EAAE,EADc;AAElB,IAAA,IAAI,EAAE,OAFY;AAGlB,IAAA,cAAc,EAAE,WAHE;AAIlB,IAAA,gBAAgB,EAAE,WAJA;AAKlB,IAAA,WAAW,EAAE,OALK;AAMlB,IAAA,KAAK,EAAE,gBANW;AAOlB,IAAA,aAAa,EAAE,uBAPG;AAQlB,IAAA,GAAG,EAAE,aARa;AASlB,IAAA,MAAM,EAAE,KATU;AAUlB,IAAA,OAAO,EAAE;AAVS,GAxBtB;AAoCE,EAAA,uBAAuB,EAAE,CAAC,GAAD,CApC3B;AAqCE,EAAA,OAAO,EAAE,qBArCX;AAsCE,EAAA,WAAW,EAAE,EAtCf;AAuCE,EAAA,kBAAkB,EAAE,0CAvCtB;AAwCE,EAAA,SAAS,EAAE,2BAxCb;AAyCE,EAAA,SAAS,EAAE;AAzCb,CAD6B,CAAxB","sourcesContent":["export const BrandLegalstart = [\n {\n idTypeBrand: 1,\n name: 'LegalStart',\n colors: {\n primary: '#16a974',\n },\n listMails: {\n administratif: 'comptastart@legalstart.fr',\n app: 'comptastart@legalstart.fr',\n bonjour: 'comptastart@legalstart.fr',\n contact: 'comptastart@legalstart.fr',\n facturation: 'comptastart@legalstart.fr',\n feedback: 'comptastart@legalstart.fr',\n juridique: 'comptastart@legalstart.fr',\n informatique: 'comptastart@legalstart.fr',\n msd: 'comptastart@legalstart.fr',\n noreply: 'comptastart@legalstart.fr',\n qualite: 'comptastart@legalstart.fr',\n paiement: 'comptastart@legalstart.fr',\n social: 'comptastart@legalstart.fr',\n support: 'comptastart@legalstart.fr',\n tva: 'comptastart@legalstart.fr',\n wb: 'comptastart@legalstart.fr',\n },\n companyInformation: {\n bp: '',\n city: 'Paris',\n montantCapital: '11 051,85',\n nomRaisonSociale: 'SAS Yolaw',\n ECOrderCity: 'Nancy',\n phone: '01 76 39 00 60',\n postalAddress: '50, rue d\\'Hauteville',\n rcs: '753 892 926',\n statut: 'SAS',\n zipCode: '75 010',\n },\n idPrestationsListHidden: [197],\n logoUrl: 'logo-legalstart.svg',\n hiddenPages: [],\n recaptchaSecretKey: '6Le0o3kaAAAAAIEcSOib77JdK_W3cyIilK-p2yOG',\n urlExpert: 'https://pro.comptalib.com',\n urlClient: 'https://www.pourcentage.fr',\n },\n];"],"sourceRoot":"","file":"BrandLegalstart.js"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@silexpert/core",
3
- "version": "0.4.85",
3
+ "version": "0.4.87",
4
4
  "description": "Silex Core perform HTTP Request and object binding. Silex core helps developers to retrieve and return formatted object",
5
5
  "homepage": "https://gitlab.compta-clementine.fr/dev/silex-api",
6
6
  "main": "js/index.js",
@@ -2,6 +2,9 @@ export const BrandClementine = [
2
2
  {
3
3
  idTypeBrand: 1,
4
4
  name: 'Clementine',
5
+ colors: {
6
+ primary: '#ff7e3c',
7
+ },
5
8
  listMails: {
6
9
  administratif: 'administratif@compta-clementine.fr',
7
10
  app: 'app@compta-clementine.fr',
@@ -20,21 +23,65 @@ export const BrandClementine = [
20
23
  tva: 'tva@compta-clementine.fr',
21
24
  wb: 'wb@compta-clementine.fr',
22
25
  },
26
+ companyInformation: {
27
+ bp: 'BP 80016',
28
+ city: 'Ludres',
29
+ montantCapital: '500 000',
30
+ nomRaisonSociale: 'SAS EXPERTISE CHOIX B',
31
+ ECOrderCity: 'Nancy',
32
+ phone: '03 83 93 14 14',
33
+ postalAddress: '88, rue Pierre et Marie Curie',
34
+ rcs: '752 566 687',
35
+ statut: 'SAS',
36
+ zipCode: '54 710',
37
+ },
38
+ idPrestationsListHidden: [197], // TODO:
39
+ logoUrl: 'logo-dark.svg',
40
+ hiddenPages: [],
41
+ urlExpert: 'https://expert.compta-clementine.fr',
42
+ urlClient: 'https://www.compta-clementine.fr',
23
43
  },
24
44
  {
25
45
  idTypeBrand: 2,
26
46
  name: 'Legalstart',
47
+ colors: {
48
+ primary: '#16a974',
49
+ },
27
50
  listMails: {
28
51
  contact: 'comptastart@legalstart.fr',
29
52
  },
53
+ companyInformation: {
54
+ bp: '',
55
+ city: 'Paris',
56
+ montantCapital: '11 051,85',
57
+ nomRaisonSociale: 'SAS Yolaw',
58
+ ECOrderCity: 'Nancy',
59
+ phone: '01 76 39 00 60',
60
+ postalAddress: '50, rue d\'Hauteville',
61
+ rcs: '753 892 926',
62
+ statut: 'SAS',
63
+ zipCode: '75 010',
64
+ },
65
+ idPrestationsListHidden: [197],
66
+ logoUrl: 'logo-legalstart.svg',
67
+ hiddenPages: [],
68
+ recaptchaSecretKey: '6Le0o3kaAAAAAIEcSOib77JdK_W3cyIilK-p2yOG',
69
+ urlExpert: 'https://pro.comptalib.com',
70
+ urlClient: 'https://www.pourcentage.fr',
30
71
  },
31
72
  {
32
73
  idTypeBrand: 3,
33
74
  name: 'BRED',
75
+ colors: {
76
+ primary: '#24315e',
77
+ },
34
78
  },
35
79
  {
36
80
  idTypeBrand: 4,
37
81
  name: 'Pourcentage',
82
+ colors: {
83
+ primary: '#1e6f5c',
84
+ },
38
85
  listMails: {
39
86
  administratif: 'administratif@pourcentage.fr',
40
87
  app: 'app@pourcentage.fr',
@@ -53,6 +100,24 @@ export const BrandClementine = [
53
100
  tva: 'tva@pourcentage.fr',
54
101
  wb: 'wb@pourcentage.fr',
55
102
  },
103
+ companyInformation: {
104
+ bp: '',
105
+ city: 'Paris',
106
+ montantCapital: '10 000',
107
+ nomRaisonSociale: 'SAS POURCENTAGE',
108
+ ECOrderCity: 'Nancy',
109
+ phone: '01 86 90 82 15',
110
+ postalAddress: '30, rue des Mathurins',
111
+ rcs: '891 501 181',
112
+ statut: 'SAS',
113
+ zipCode: '75 008',
114
+ },
115
+ idPrestationsListAuthorized: [197],
116
+ logoUrl: 'logo-pourcentage.svg',
117
+ hiddenPages: [],
118
+ recaptchaSecretKey: '6Le0o3kaAAAAAIEcSOib77JdK_W3cyIilK-p2yOG', // TODO:
119
+ urlExpert: 'https://pro.comptalib.com',
120
+ urlClient: 'https://www.pourcentage.fr',
56
121
  },
57
122
  {
58
123
  idTypeBrand: 5,
@@ -2,6 +2,9 @@ export const BrandComptalib = [
2
2
  {
3
3
  idTypeBrand: 1,
4
4
  name: 'Comptalib',
5
+ colors: {
6
+ primary: '#1656ff',
7
+ },
5
8
  listMails: {
6
9
  administratif: 'contact@comptalib.com',
7
10
  app: 'contact@comptalib.com',
@@ -20,10 +23,31 @@ export const BrandComptalib = [
20
23
  tva: 'contact@comptalib.com',
21
24
  wb: 'contact@comptalib.com',
22
25
  },
26
+ companyInformation: {
27
+ bp: '',
28
+ city: 'Paris',
29
+ montantCapital: '10 000',
30
+ nomRaisonSociale: 'SAS COMPTALIB',
31
+ ECOrderCity: 'Nancy',
32
+ phone: '01 86 90 92 80',
33
+ postalAddress: '30, rue des Mathurins',
34
+ rcs: '808 070 726',
35
+ statut: 'SAS',
36
+ zipCode: '75 008',
37
+ },
38
+ idPrestationsListAuthorized: [197],
39
+ logoUrl: 'logo-comptalib.svg',
40
+ hiddenPages: [],
41
+ recaptchaSecretKey: '6Le0o3kaAAAAAIEcSOib77JdK_W3cyIilK-p2yOG',
42
+ urlExpert: 'https://pro.comptalib.com',
43
+ urlClient: '',
23
44
  },
24
45
  {
25
46
  idTypeBrand: 2,
26
47
  name: 'Pourcentage',
48
+ colors: {
49
+ primary: '#1e6f5c',
50
+ },
27
51
  listMails: {
28
52
  administratif: 'contact@pourcentage.fr',
29
53
  app: 'contact@pourcentage.fr',
@@ -42,5 +66,23 @@ export const BrandComptalib = [
42
66
  tva: 'contact@pourcentage.fr',
43
67
  wb: 'contact@pourcentage.fr',
44
68
  },
69
+ companyInformation: {
70
+ bp: '',
71
+ city: 'Paris',
72
+ montantCapital: '10 000',
73
+ nomRaisonSociale: 'SAS POURCENTAGE',
74
+ ECOrderCity: 'Nancy',
75
+ phone: '01 86 90 82 15',
76
+ postalAddress: '30, rue des Mathurins',
77
+ rcs: '891 501 181',
78
+ statut: 'SAS',
79
+ zipCode: '75 008',
80
+ },
81
+ idPrestationsListAuthorized: [197],
82
+ logoUrl: 'logo-pourcentage.svg',
83
+ hiddenPages: [],
84
+ recaptchaSecretKey: '6Le0o3kaAAAAAIEcSOib77JdK_W3cyIilK-p2yOG',
85
+ urlExpert: 'https://pro.comptalib.com',
86
+ urlClient: 'https://www.pourcentage.fr',
45
87
  },
46
88
  ];
@@ -2,6 +2,9 @@ export const BrandLegalstart = [
2
2
  {
3
3
  idTypeBrand: 1,
4
4
  name: 'LegalStart',
5
+ colors: {
6
+ primary: '#16a974',
7
+ },
5
8
  listMails: {
6
9
  administratif: 'comptastart@legalstart.fr',
7
10
  app: 'comptastart@legalstart.fr',
@@ -20,5 +23,23 @@ export const BrandLegalstart = [
20
23
  tva: 'comptastart@legalstart.fr',
21
24
  wb: 'comptastart@legalstart.fr',
22
25
  },
26
+ companyInformation: {
27
+ bp: '',
28
+ city: 'Paris',
29
+ montantCapital: '11 051,85',
30
+ nomRaisonSociale: 'SAS Yolaw',
31
+ ECOrderCity: 'Nancy',
32
+ phone: '01 76 39 00 60',
33
+ postalAddress: '50, rue d\'Hauteville',
34
+ rcs: '753 892 926',
35
+ statut: 'SAS',
36
+ zipCode: '75 010',
37
+ },
38
+ idPrestationsListHidden: [197],
39
+ logoUrl: 'logo-legalstart.svg',
40
+ hiddenPages: [],
41
+ recaptchaSecretKey: '6Le0o3kaAAAAAIEcSOib77JdK_W3cyIilK-p2yOG',
42
+ urlExpert: 'https://pro.comptalib.com',
43
+ urlClient: 'https://www.pourcentage.fr',
23
44
  },
24
45
  ];