@silexpert/core 0.4.86 → 0.4.88
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/es/types/Enum/BrandClementine.d.ts +120 -0
- package/es/types/Enum/BrandClementine.d.ts.map +1 -1
- package/es/types/Enum/BrandClementine.js +73 -0
- package/es/types/Enum/BrandClementine.js.map +1 -1
- package/es/types/Enum/BrandComptalib.d.ts +76 -2
- package/es/types/Enum/BrandComptalib.d.ts.map +1 -1
- package/es/types/Enum/BrandComptalib.js +49 -0
- package/es/types/Enum/BrandComptalib.js.map +1 -1
- package/es/types/Enum/BrandLegalstart.d.ts +24 -0
- package/es/types/Enum/BrandLegalstart.d.ts.map +1 -1
- package/es/types/Enum/BrandLegalstart.js +24 -0
- package/es/types/Enum/BrandLegalstart.js.map +1 -1
- package/js/types/Enum/BrandClementine.js +76 -3
- package/js/types/Enum/BrandClementine.js.map +1 -1
- package/js/types/Enum/BrandComptalib.js +51 -2
- package/js/types/Enum/BrandComptalib.js.map +1 -1
- package/js/types/Enum/BrandLegalstart.js +25 -1
- package/js/types/Enum/BrandLegalstart.js.map +1 -1
- package/package.json +1 -1
- package/ts/types/Enum/BrandClementine.ts +73 -0
- package/ts/types/Enum/BrandComptalib.ts +49 -0
- package/ts/types/Enum/BrandLegalstart.ts +24 -0
|
@@ -4,6 +4,11 @@ export declare const BrandClementine: ({
|
|
|
4
4
|
colors: {
|
|
5
5
|
primary: string;
|
|
6
6
|
};
|
|
7
|
+
listPhones: {
|
|
8
|
+
contact: string;
|
|
9
|
+
qualite: string;
|
|
10
|
+
juridique: string;
|
|
11
|
+
};
|
|
7
12
|
listMails: {
|
|
8
13
|
administratif: string;
|
|
9
14
|
app: string;
|
|
@@ -22,12 +27,38 @@ export declare const BrandClementine: ({
|
|
|
22
27
|
tva: string;
|
|
23
28
|
wb: string;
|
|
24
29
|
};
|
|
30
|
+
companyInformation: {
|
|
31
|
+
ape: string;
|
|
32
|
+
bp: string;
|
|
33
|
+
city: string;
|
|
34
|
+
montantCapital: string;
|
|
35
|
+
nomRaisonSociale: string;
|
|
36
|
+
ECName: string;
|
|
37
|
+
ECOrderCity: string;
|
|
38
|
+
phone: string;
|
|
39
|
+
postalAddress: string;
|
|
40
|
+
rcs: string;
|
|
41
|
+
statut: string;
|
|
42
|
+
zipCode: string;
|
|
43
|
+
};
|
|
44
|
+
idPrestationsListHidden: number[];
|
|
45
|
+
logoUrl: string;
|
|
46
|
+
hiddenPages: never[];
|
|
47
|
+
urlExpert: string;
|
|
48
|
+
urlClient: string;
|
|
49
|
+
recaptchaSecretKey?: undefined;
|
|
50
|
+
idPrestationsListAuthorized?: undefined;
|
|
25
51
|
} | {
|
|
26
52
|
idTypeBrand: number;
|
|
27
53
|
name: string;
|
|
28
54
|
colors: {
|
|
29
55
|
primary: string;
|
|
30
56
|
};
|
|
57
|
+
listPhones: {
|
|
58
|
+
contact: string;
|
|
59
|
+
qualite: string;
|
|
60
|
+
juridique: string;
|
|
61
|
+
};
|
|
31
62
|
listMails: {
|
|
32
63
|
contact: string;
|
|
33
64
|
administratif?: undefined;
|
|
@@ -46,17 +77,106 @@ export declare const BrandClementine: ({
|
|
|
46
77
|
tva?: undefined;
|
|
47
78
|
wb?: undefined;
|
|
48
79
|
};
|
|
80
|
+
companyInformation: {
|
|
81
|
+
ape: string;
|
|
82
|
+
bp: string;
|
|
83
|
+
city: string;
|
|
84
|
+
montantCapital: string;
|
|
85
|
+
nomRaisonSociale: string;
|
|
86
|
+
ECOrderCity: string;
|
|
87
|
+
phone: string;
|
|
88
|
+
postalAddress: string;
|
|
89
|
+
rcs: string;
|
|
90
|
+
statut: string;
|
|
91
|
+
zipCode: string;
|
|
92
|
+
ECName?: undefined;
|
|
93
|
+
};
|
|
94
|
+
idPrestationsListHidden: number[];
|
|
95
|
+
logoUrl: string;
|
|
96
|
+
hiddenPages: never[];
|
|
97
|
+
recaptchaSecretKey: string;
|
|
98
|
+
urlExpert: string;
|
|
99
|
+
urlClient: string;
|
|
100
|
+
idPrestationsListAuthorized?: undefined;
|
|
49
101
|
} | {
|
|
50
102
|
idTypeBrand: number;
|
|
51
103
|
name: string;
|
|
52
104
|
colors: {
|
|
53
105
|
primary: string;
|
|
54
106
|
};
|
|
107
|
+
listPhones?: undefined;
|
|
55
108
|
listMails?: undefined;
|
|
109
|
+
companyInformation?: undefined;
|
|
110
|
+
idPrestationsListHidden?: undefined;
|
|
111
|
+
logoUrl?: undefined;
|
|
112
|
+
hiddenPages?: undefined;
|
|
113
|
+
urlExpert?: undefined;
|
|
114
|
+
urlClient?: undefined;
|
|
115
|
+
recaptchaSecretKey?: undefined;
|
|
116
|
+
idPrestationsListAuthorized?: undefined;
|
|
117
|
+
} | {
|
|
118
|
+
idTypeBrand: number;
|
|
119
|
+
name: string;
|
|
120
|
+
colors: {
|
|
121
|
+
primary: string;
|
|
122
|
+
};
|
|
123
|
+
listPhones: {
|
|
124
|
+
contact: string;
|
|
125
|
+
qualite: string;
|
|
126
|
+
juridique: string;
|
|
127
|
+
};
|
|
128
|
+
listMails: {
|
|
129
|
+
administratif: string;
|
|
130
|
+
app: string;
|
|
131
|
+
bonjour: string;
|
|
132
|
+
contact: string;
|
|
133
|
+
facturation: string;
|
|
134
|
+
feedback: string;
|
|
135
|
+
juridique: string;
|
|
136
|
+
informatique: string;
|
|
137
|
+
msd: string;
|
|
138
|
+
noreply: string;
|
|
139
|
+
qualite: string;
|
|
140
|
+
paiement: string;
|
|
141
|
+
social: string;
|
|
142
|
+
support: string;
|
|
143
|
+
tva: string;
|
|
144
|
+
wb: string;
|
|
145
|
+
};
|
|
146
|
+
companyInformation: {
|
|
147
|
+
ape: string;
|
|
148
|
+
bp: string;
|
|
149
|
+
city: string;
|
|
150
|
+
montantCapital: string;
|
|
151
|
+
nomRaisonSociale: string;
|
|
152
|
+
ECName: string;
|
|
153
|
+
ECOrderCity: string;
|
|
154
|
+
phone: string;
|
|
155
|
+
postalAddress: string;
|
|
156
|
+
rcs: string;
|
|
157
|
+
statut: string;
|
|
158
|
+
zipCode: string;
|
|
159
|
+
};
|
|
160
|
+
idPrestationsListAuthorized: number[];
|
|
161
|
+
logoUrl: string;
|
|
162
|
+
hiddenPages: never[];
|
|
163
|
+
recaptchaSecretKey: string;
|
|
164
|
+
urlExpert: string;
|
|
165
|
+
urlClient: string;
|
|
166
|
+
idPrestationsListHidden?: undefined;
|
|
56
167
|
} | {
|
|
57
168
|
idTypeBrand: number;
|
|
58
169
|
name: string;
|
|
59
170
|
colors?: undefined;
|
|
171
|
+
listPhones?: undefined;
|
|
60
172
|
listMails?: undefined;
|
|
173
|
+
companyInformation?: undefined;
|
|
174
|
+
idPrestationsListHidden?: undefined;
|
|
175
|
+
logoUrl?: undefined;
|
|
176
|
+
hiddenPages?: undefined;
|
|
177
|
+
urlExpert?: undefined;
|
|
178
|
+
urlClient?: undefined;
|
|
179
|
+
recaptchaSecretKey?: undefined;
|
|
180
|
+
idPrestationsListAuthorized?: undefined;
|
|
61
181
|
})[];
|
|
62
182
|
//# 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
|
|
1
|
+
{"version":3,"file":"BrandClementine.d.ts","sourceRoot":"","sources":["../../../ts/types/Enum/BrandClementine.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAiJ3B,CAAC"}
|
|
@@ -5,6 +5,11 @@ export const BrandClementine = [
|
|
|
5
5
|
colors: {
|
|
6
6
|
primary: '#ff7e3c',
|
|
7
7
|
},
|
|
8
|
+
listPhones: {
|
|
9
|
+
contact: '03 83 93 14 14',
|
|
10
|
+
qualite: '03 83 93 30 44',
|
|
11
|
+
juridique: '03 83 93 16 22',
|
|
12
|
+
},
|
|
8
13
|
listMails: {
|
|
9
14
|
administratif: 'administratif@compta-clementine.fr',
|
|
10
15
|
app: 'app@compta-clementine.fr',
|
|
@@ -23,6 +28,25 @@ export const BrandClementine = [
|
|
|
23
28
|
tva: 'tva@compta-clementine.fr',
|
|
24
29
|
wb: 'wb@compta-clementine.fr',
|
|
25
30
|
},
|
|
31
|
+
companyInformation: {
|
|
32
|
+
ape: '6920Z',
|
|
33
|
+
bp: 'BP 80016',
|
|
34
|
+
city: 'Ludres',
|
|
35
|
+
montantCapital: '500 000',
|
|
36
|
+
nomRaisonSociale: 'EXPERTISE CHOIX B',
|
|
37
|
+
ECName: 'M. Jean-Louis BOICHÉ',
|
|
38
|
+
ECOrderCity: 'Nancy',
|
|
39
|
+
phone: '03 83 93 14 14',
|
|
40
|
+
postalAddress: '88, rue Pierre et Marie Curie',
|
|
41
|
+
rcs: '752 566 687',
|
|
42
|
+
statut: 'SAS',
|
|
43
|
+
zipCode: '54 710',
|
|
44
|
+
},
|
|
45
|
+
idPrestationsListHidden: [197],
|
|
46
|
+
logoUrl: 'logo-dark.svg',
|
|
47
|
+
hiddenPages: [],
|
|
48
|
+
urlExpert: 'https://expert.compta-clementine.fr',
|
|
49
|
+
urlClient: 'https://www.compta-clementine.fr',
|
|
26
50
|
},
|
|
27
51
|
{
|
|
28
52
|
idTypeBrand: 2,
|
|
@@ -30,9 +54,33 @@ export const BrandClementine = [
|
|
|
30
54
|
colors: {
|
|
31
55
|
primary: '#16a974',
|
|
32
56
|
},
|
|
57
|
+
listPhones: {
|
|
58
|
+
contact: '01 76 39 00 60',
|
|
59
|
+
qualite: '01 76 39 00 60',
|
|
60
|
+
juridique: '01 76 39 00 60',
|
|
61
|
+
},
|
|
33
62
|
listMails: {
|
|
34
63
|
contact: 'comptastart@legalstart.fr',
|
|
35
64
|
},
|
|
65
|
+
companyInformation: {
|
|
66
|
+
ape: '5829C',
|
|
67
|
+
bp: '',
|
|
68
|
+
city: 'Paris',
|
|
69
|
+
montantCapital: '11 051,85',
|
|
70
|
+
nomRaisonSociale: 'Yolaw',
|
|
71
|
+
ECOrderCity: 'Nancy',
|
|
72
|
+
phone: '01 76 39 00 60',
|
|
73
|
+
postalAddress: '50, rue d\'Hauteville',
|
|
74
|
+
rcs: '753 892 926',
|
|
75
|
+
statut: 'SAS',
|
|
76
|
+
zipCode: '75 010',
|
|
77
|
+
},
|
|
78
|
+
idPrestationsListHidden: [197],
|
|
79
|
+
logoUrl: 'logo-legalstart.svg',
|
|
80
|
+
hiddenPages: [],
|
|
81
|
+
recaptchaSecretKey: '6Le0o3kaAAAAAIEcSOib77JdK_W3cyIilK-p2yOG',
|
|
82
|
+
urlExpert: 'https://pro.comptalib.com',
|
|
83
|
+
urlClient: 'https://www.pourcentage.fr',
|
|
36
84
|
},
|
|
37
85
|
{
|
|
38
86
|
idTypeBrand: 3,
|
|
@@ -47,6 +95,11 @@ export const BrandClementine = [
|
|
|
47
95
|
colors: {
|
|
48
96
|
primary: '#1e6f5c',
|
|
49
97
|
},
|
|
98
|
+
listPhones: {
|
|
99
|
+
contact: '01 86 90 82 15',
|
|
100
|
+
qualite: '01 86 90 82 15',
|
|
101
|
+
juridique: '01 86 90 82 15',
|
|
102
|
+
},
|
|
50
103
|
listMails: {
|
|
51
104
|
administratif: 'administratif@pourcentage.fr',
|
|
52
105
|
app: 'app@pourcentage.fr',
|
|
@@ -65,6 +118,26 @@ export const BrandClementine = [
|
|
|
65
118
|
tva: 'tva@pourcentage.fr',
|
|
66
119
|
wb: 'wb@pourcentage.fr',
|
|
67
120
|
},
|
|
121
|
+
companyInformation: {
|
|
122
|
+
ape: '6920Z',
|
|
123
|
+
bp: '',
|
|
124
|
+
city: 'Paris',
|
|
125
|
+
montantCapital: '10 000',
|
|
126
|
+
nomRaisonSociale: 'POURCENTAGE',
|
|
127
|
+
ECName: 'M. Jean-Louis BOICHÉ',
|
|
128
|
+
ECOrderCity: 'Nancy',
|
|
129
|
+
phone: '01 86 90 82 15',
|
|
130
|
+
postalAddress: '30, rue des Mathurins',
|
|
131
|
+
rcs: '891 501 181',
|
|
132
|
+
statut: 'SAS',
|
|
133
|
+
zipCode: '75 008',
|
|
134
|
+
},
|
|
135
|
+
idPrestationsListAuthorized: [197],
|
|
136
|
+
logoUrl: 'logo-pourcentage.svg',
|
|
137
|
+
hiddenPages: [],
|
|
138
|
+
recaptchaSecretKey: '6Le0o3kaAAAAAIEcSOib77JdK_W3cyIilK-p2yOG',
|
|
139
|
+
urlExpert: 'https://pro.comptalib.com',
|
|
140
|
+
urlClient: 'https://www.pourcentage.fr',
|
|
68
141
|
},
|
|
69
142
|
{
|
|
70
143
|
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,MAAM,EAAE;YACN,OAAO,EAAE,SAAS;SACnB;QACD,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;
|
|
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 listPhones: {\n contact: '03 83 93 14 14',\n qualite: '03 83 93 30 44',\n juridique: '03 83 93 16 22',\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 ape: '6920Z',\n bp: 'BP 80016',\n city: 'Ludres',\n montantCapital: '500 000',\n nomRaisonSociale: 'EXPERTISE CHOIX B',\n ECName: 'M. Jean-Louis BOICHÉ',\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 listPhones: {\n contact: '01 76 39 00 60',\n qualite: '01 76 39 00 60',\n juridique: '01 76 39 00 60',\n },\n listMails: {\n contact: 'comptastart@legalstart.fr',\n },\n companyInformation: {\n ape: '5829C',\n bp: '',\n city: 'Paris',\n montantCapital: '11 051,85',\n nomRaisonSociale: '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 listPhones: {\n contact: '01 86 90 82 15',\n qualite: '01 86 90 82 15',\n juridique: '01 86 90 82 15',\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 ape: '6920Z',\n bp: '',\n city: 'Paris',\n montantCapital: '10 000',\n nomRaisonSociale: 'POURCENTAGE',\n ECName: 'M. Jean-Louis BOICHÉ',\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,9 +1,14 @@
|
|
|
1
|
-
export declare const BrandComptalib: {
|
|
1
|
+
export declare const BrandComptalib: ({
|
|
2
2
|
idTypeBrand: number;
|
|
3
3
|
name: string;
|
|
4
4
|
colors: {
|
|
5
5
|
primary: string;
|
|
6
6
|
};
|
|
7
|
+
listPhones: {
|
|
8
|
+
contact: string;
|
|
9
|
+
qualite: string;
|
|
10
|
+
juridique: string;
|
|
11
|
+
};
|
|
7
12
|
listMails: {
|
|
8
13
|
administratif: string;
|
|
9
14
|
app: string;
|
|
@@ -22,5 +27,74 @@ export declare const BrandComptalib: {
|
|
|
22
27
|
tva: string;
|
|
23
28
|
wb: string;
|
|
24
29
|
};
|
|
25
|
-
|
|
30
|
+
companyInformation: {
|
|
31
|
+
ape: string;
|
|
32
|
+
bp: string;
|
|
33
|
+
city: string;
|
|
34
|
+
montantCapital: string;
|
|
35
|
+
nomRaisonSociale: string;
|
|
36
|
+
ECOrderCity: string;
|
|
37
|
+
phone: string;
|
|
38
|
+
postalAddress: string;
|
|
39
|
+
rcs: string;
|
|
40
|
+
statut: string;
|
|
41
|
+
zipCode: string;
|
|
42
|
+
ECName?: undefined;
|
|
43
|
+
};
|
|
44
|
+
idPrestationsListAuthorized: number[];
|
|
45
|
+
logoUrl: string;
|
|
46
|
+
hiddenPages: never[];
|
|
47
|
+
recaptchaSecretKey: string;
|
|
48
|
+
urlExpert: string;
|
|
49
|
+
urlClient: string;
|
|
50
|
+
} | {
|
|
51
|
+
idTypeBrand: number;
|
|
52
|
+
name: string;
|
|
53
|
+
colors: {
|
|
54
|
+
primary: string;
|
|
55
|
+
};
|
|
56
|
+
listPhones: {
|
|
57
|
+
contact: string;
|
|
58
|
+
qualite: string;
|
|
59
|
+
juridique: string;
|
|
60
|
+
};
|
|
61
|
+
listMails: {
|
|
62
|
+
administratif: string;
|
|
63
|
+
app: string;
|
|
64
|
+
bonjour: string;
|
|
65
|
+
contact: string;
|
|
66
|
+
facturation: string;
|
|
67
|
+
feedback: string;
|
|
68
|
+
juridique: string;
|
|
69
|
+
informatique: string;
|
|
70
|
+
msd: string;
|
|
71
|
+
noreply: string;
|
|
72
|
+
qualite: string;
|
|
73
|
+
paiement: string;
|
|
74
|
+
social: string;
|
|
75
|
+
support: string;
|
|
76
|
+
tva: string;
|
|
77
|
+
wb: string;
|
|
78
|
+
};
|
|
79
|
+
companyInformation: {
|
|
80
|
+
ape: string;
|
|
81
|
+
bp: string;
|
|
82
|
+
city: string;
|
|
83
|
+
montantCapital: string;
|
|
84
|
+
nomRaisonSociale: string;
|
|
85
|
+
ECName: string;
|
|
86
|
+
ECOrderCity: string;
|
|
87
|
+
phone: string;
|
|
88
|
+
postalAddress: string;
|
|
89
|
+
rcs: string;
|
|
90
|
+
statut: string;
|
|
91
|
+
zipCode: string;
|
|
92
|
+
};
|
|
93
|
+
idPrestationsListAuthorized: number[];
|
|
94
|
+
logoUrl: string;
|
|
95
|
+
hiddenPages: never[];
|
|
96
|
+
recaptchaSecretKey: string;
|
|
97
|
+
urlExpert: string;
|
|
98
|
+
urlClient: string;
|
|
99
|
+
})[];
|
|
26
100
|
//# 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
|
|
1
|
+
{"version":3,"file":"BrandComptalib.d.ts","sourceRoot":"","sources":["../../../ts/types/Enum/BrandComptalib.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAoG1B,CAAC"}
|
|
@@ -5,6 +5,11 @@ export const BrandComptalib = [
|
|
|
5
5
|
colors: {
|
|
6
6
|
primary: '#1656ff',
|
|
7
7
|
},
|
|
8
|
+
listPhones: {
|
|
9
|
+
contact: '01 86 90 92 80',
|
|
10
|
+
qualite: '01 86 90 92 80',
|
|
11
|
+
juridique: '01 86 90 92 80',
|
|
12
|
+
},
|
|
8
13
|
listMails: {
|
|
9
14
|
administratif: 'contact@comptalib.com',
|
|
10
15
|
app: 'contact@comptalib.com',
|
|
@@ -23,6 +28,25 @@ export const BrandComptalib = [
|
|
|
23
28
|
tva: 'contact@comptalib.com',
|
|
24
29
|
wb: 'contact@comptalib.com',
|
|
25
30
|
},
|
|
31
|
+
companyInformation: {
|
|
32
|
+
ape: '6201Z',
|
|
33
|
+
bp: '',
|
|
34
|
+
city: 'Paris',
|
|
35
|
+
montantCapital: '10 000',
|
|
36
|
+
nomRaisonSociale: 'COMPTALIB',
|
|
37
|
+
ECOrderCity: 'Nancy',
|
|
38
|
+
phone: '01 86 90 92 80',
|
|
39
|
+
postalAddress: '30, rue des Mathurins',
|
|
40
|
+
rcs: '808 070 726',
|
|
41
|
+
statut: 'SAS',
|
|
42
|
+
zipCode: '75 008',
|
|
43
|
+
},
|
|
44
|
+
idPrestationsListAuthorized: [197],
|
|
45
|
+
logoUrl: 'logo-comptalib.svg',
|
|
46
|
+
hiddenPages: [],
|
|
47
|
+
recaptchaSecretKey: '6Le0o3kaAAAAAIEcSOib77JdK_W3cyIilK-p2yOG',
|
|
48
|
+
urlExpert: 'https://pro.comptalib.com',
|
|
49
|
+
urlClient: '',
|
|
26
50
|
},
|
|
27
51
|
{
|
|
28
52
|
idTypeBrand: 2,
|
|
@@ -30,6 +54,11 @@ export const BrandComptalib = [
|
|
|
30
54
|
colors: {
|
|
31
55
|
primary: '#1e6f5c',
|
|
32
56
|
},
|
|
57
|
+
listPhones: {
|
|
58
|
+
contact: '01 86 90 82 15',
|
|
59
|
+
qualite: '01 86 90 82 15',
|
|
60
|
+
juridique: '01 86 90 82 15',
|
|
61
|
+
},
|
|
33
62
|
listMails: {
|
|
34
63
|
administratif: 'contact@pourcentage.fr',
|
|
35
64
|
app: 'contact@pourcentage.fr',
|
|
@@ -48,6 +77,26 @@ export const BrandComptalib = [
|
|
|
48
77
|
tva: 'contact@pourcentage.fr',
|
|
49
78
|
wb: 'contact@pourcentage.fr',
|
|
50
79
|
},
|
|
80
|
+
companyInformation: {
|
|
81
|
+
ape: '6920Z',
|
|
82
|
+
bp: '',
|
|
83
|
+
city: 'Paris',
|
|
84
|
+
montantCapital: '10 000',
|
|
85
|
+
nomRaisonSociale: 'POURCENTAGE',
|
|
86
|
+
ECName: 'M. Jean-Louis BOICHÉ',
|
|
87
|
+
ECOrderCity: 'Nancy',
|
|
88
|
+
phone: '01 86 90 82 15',
|
|
89
|
+
postalAddress: '30, rue des Mathurins',
|
|
90
|
+
rcs: '891 501 181',
|
|
91
|
+
statut: 'SAS',
|
|
92
|
+
zipCode: '75 008',
|
|
93
|
+
},
|
|
94
|
+
idPrestationsListAuthorized: [197],
|
|
95
|
+
logoUrl: 'logo-pourcentage.svg',
|
|
96
|
+
hiddenPages: [],
|
|
97
|
+
recaptchaSecretKey: '6Le0o3kaAAAAAIEcSOib77JdK_W3cyIilK-p2yOG',
|
|
98
|
+
urlExpert: 'https://pro.comptalib.com',
|
|
99
|
+
urlClient: 'https://www.pourcentage.fr',
|
|
51
100
|
},
|
|
52
101
|
];
|
|
53
102
|
//# 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,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;
|
|
1
|
+
{"version":3,"file":"BrandComptalib.js","sourceRoot":"","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 listPhones: {\n contact: '01 86 90 92 80',\n qualite: '01 86 90 92 80',\n juridique: '01 86 90 92 80',\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 ape: '6201Z',\n bp: '',\n city: 'Paris',\n montantCapital: '10 000',\n nomRaisonSociale: '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 listPhones: {\n contact: '01 86 90 82 15',\n qualite: '01 86 90 82 15',\n juridique: '01 86 90 82 15',\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 ape: '6920Z',\n bp: '',\n city: 'Paris',\n montantCapital: '10 000',\n nomRaisonSociale: 'POURCENTAGE',\n ECName: 'M. Jean-Louis BOICHÉ',\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];"]}
|
|
@@ -4,6 +4,11 @@ export declare const BrandLegalstart: {
|
|
|
4
4
|
colors: {
|
|
5
5
|
primary: string;
|
|
6
6
|
};
|
|
7
|
+
listPhones: {
|
|
8
|
+
contact: string;
|
|
9
|
+
qualite: string;
|
|
10
|
+
juridique: string;
|
|
11
|
+
};
|
|
7
12
|
listMails: {
|
|
8
13
|
administratif: string;
|
|
9
14
|
app: string;
|
|
@@ -22,5 +27,24 @@ export declare const BrandLegalstart: {
|
|
|
22
27
|
tva: string;
|
|
23
28
|
wb: string;
|
|
24
29
|
};
|
|
30
|
+
companyInformation: {
|
|
31
|
+
ape: string;
|
|
32
|
+
bp: string;
|
|
33
|
+
city: string;
|
|
34
|
+
montantCapital: string;
|
|
35
|
+
nomRaisonSociale: string;
|
|
36
|
+
ECOrderCity: string;
|
|
37
|
+
phone: string;
|
|
38
|
+
postalAddress: string;
|
|
39
|
+
rcs: string;
|
|
40
|
+
statut: string;
|
|
41
|
+
zipCode: string;
|
|
42
|
+
};
|
|
43
|
+
idPrestationsListHidden: number[];
|
|
44
|
+
logoUrl: string;
|
|
45
|
+
hiddenPages: never[];
|
|
46
|
+
recaptchaSecretKey: string;
|
|
47
|
+
urlExpert: string;
|
|
48
|
+
urlClient: string;
|
|
25
49
|
}[];
|
|
26
50
|
//# 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
|
|
1
|
+
{"version":3,"file":"BrandLegalstart.d.ts","sourceRoot":"","sources":["../../../ts/types/Enum/BrandLegalstart.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAkD3B,CAAC"}
|
|
@@ -5,6 +5,11 @@ export const BrandLegalstart = [
|
|
|
5
5
|
colors: {
|
|
6
6
|
primary: '#16a974',
|
|
7
7
|
},
|
|
8
|
+
listPhones: {
|
|
9
|
+
contact: '01 76 39 00 60',
|
|
10
|
+
qualite: '01 76 39 00 60',
|
|
11
|
+
juridique: '01 76 39 00 60',
|
|
12
|
+
},
|
|
8
13
|
listMails: {
|
|
9
14
|
administratif: 'comptastart@legalstart.fr',
|
|
10
15
|
app: 'comptastart@legalstart.fr',
|
|
@@ -23,6 +28,25 @@ export const BrandLegalstart = [
|
|
|
23
28
|
tva: 'comptastart@legalstart.fr',
|
|
24
29
|
wb: 'comptastart@legalstart.fr',
|
|
25
30
|
},
|
|
31
|
+
companyInformation: {
|
|
32
|
+
ape: '5829C',
|
|
33
|
+
bp: '',
|
|
34
|
+
city: 'Paris',
|
|
35
|
+
montantCapital: '11 051,85',
|
|
36
|
+
nomRaisonSociale: 'Yolaw',
|
|
37
|
+
ECOrderCity: 'Nancy',
|
|
38
|
+
phone: '01 76 39 00 60',
|
|
39
|
+
postalAddress: '50, rue d\'Hauteville',
|
|
40
|
+
rcs: '753 892 926',
|
|
41
|
+
statut: 'SAS',
|
|
42
|
+
zipCode: '75 010',
|
|
43
|
+
},
|
|
44
|
+
idPrestationsListHidden: [197],
|
|
45
|
+
logoUrl: 'logo-legalstart.svg',
|
|
46
|
+
hiddenPages: [],
|
|
47
|
+
recaptchaSecretKey: '6Le0o3kaAAAAAIEcSOib77JdK_W3cyIilK-p2yOG',
|
|
48
|
+
urlExpert: 'https://pro.comptalib.com',
|
|
49
|
+
urlClient: 'https://www.pourcentage.fr',
|
|
26
50
|
},
|
|
27
51
|
];
|
|
28
52
|
//# 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,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;
|
|
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,UAAU,EAAE;YACV,OAAO,EAAE,gBAAgB;YACzB,OAAO,EAAE,gBAAgB;YACzB,SAAS,EAAE,gBAAgB;SAC5B;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,GAAG,EAAE,OAAO;YACZ,EAAE,EAAE,EAAE;YACN,IAAI,EAAE,OAAO;YACb,cAAc,EAAE,WAAW;YAC3B,gBAAgB,EAAE,OAAO;YACzB,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 listPhones: {\n contact: '01 76 39 00 60',\n qualite: '01 76 39 00 60',\n juridique: '01 76 39 00 60',\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 ape: '5829C',\n bp: '',\n city: 'Paris',\n montantCapital: '11 051,85',\n nomRaisonSociale: '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];"]}
|
|
@@ -9,6 +9,11 @@ const BrandClementine = exports.BrandClementine = [{
|
|
|
9
9
|
colors: {
|
|
10
10
|
primary: '#ff7e3c'
|
|
11
11
|
},
|
|
12
|
+
listPhones: {
|
|
13
|
+
contact: '03 83 93 14 14',
|
|
14
|
+
qualite: '03 83 93 30 44',
|
|
15
|
+
juridique: '03 83 93 16 22'
|
|
16
|
+
},
|
|
12
17
|
listMails: {
|
|
13
18
|
administratif: 'administratif@compta-clementine.fr',
|
|
14
19
|
app: 'app@compta-clementine.fr',
|
|
@@ -26,16 +31,59 @@ const BrandClementine = exports.BrandClementine = [{
|
|
|
26
31
|
support: 'support@compta-clementine.fr',
|
|
27
32
|
tva: 'tva@compta-clementine.fr',
|
|
28
33
|
wb: 'wb@compta-clementine.fr'
|
|
29
|
-
}
|
|
34
|
+
},
|
|
35
|
+
companyInformation: {
|
|
36
|
+
ape: '6920Z',
|
|
37
|
+
bp: 'BP 80016',
|
|
38
|
+
city: 'Ludres',
|
|
39
|
+
montantCapital: '500 000',
|
|
40
|
+
nomRaisonSociale: 'EXPERTISE CHOIX B',
|
|
41
|
+
ECName: 'M. Jean-Louis BOICHÉ',
|
|
42
|
+
ECOrderCity: 'Nancy',
|
|
43
|
+
phone: '03 83 93 14 14',
|
|
44
|
+
postalAddress: '88, rue Pierre et Marie Curie',
|
|
45
|
+
rcs: '752 566 687',
|
|
46
|
+
statut: 'SAS',
|
|
47
|
+
zipCode: '54 710'
|
|
48
|
+
},
|
|
49
|
+
idPrestationsListHidden: [197],
|
|
50
|
+
logoUrl: 'logo-dark.svg',
|
|
51
|
+
hiddenPages: [],
|
|
52
|
+
urlExpert: 'https://expert.compta-clementine.fr',
|
|
53
|
+
urlClient: 'https://www.compta-clementine.fr'
|
|
30
54
|
}, {
|
|
31
55
|
idTypeBrand: 2,
|
|
32
56
|
name: 'Legalstart',
|
|
33
57
|
colors: {
|
|
34
58
|
primary: '#16a974'
|
|
35
59
|
},
|
|
60
|
+
listPhones: {
|
|
61
|
+
contact: '01 76 39 00 60',
|
|
62
|
+
qualite: '01 76 39 00 60',
|
|
63
|
+
juridique: '01 76 39 00 60'
|
|
64
|
+
},
|
|
36
65
|
listMails: {
|
|
37
66
|
contact: 'comptastart@legalstart.fr'
|
|
38
|
-
}
|
|
67
|
+
},
|
|
68
|
+
companyInformation: {
|
|
69
|
+
ape: '5829C',
|
|
70
|
+
bp: '',
|
|
71
|
+
city: 'Paris',
|
|
72
|
+
montantCapital: '11 051,85',
|
|
73
|
+
nomRaisonSociale: 'Yolaw',
|
|
74
|
+
ECOrderCity: 'Nancy',
|
|
75
|
+
phone: '01 76 39 00 60',
|
|
76
|
+
postalAddress: '50, rue d\'Hauteville',
|
|
77
|
+
rcs: '753 892 926',
|
|
78
|
+
statut: 'SAS',
|
|
79
|
+
zipCode: '75 010'
|
|
80
|
+
},
|
|
81
|
+
idPrestationsListHidden: [197],
|
|
82
|
+
logoUrl: 'logo-legalstart.svg',
|
|
83
|
+
hiddenPages: [],
|
|
84
|
+
recaptchaSecretKey: '6Le0o3kaAAAAAIEcSOib77JdK_W3cyIilK-p2yOG',
|
|
85
|
+
urlExpert: 'https://pro.comptalib.com',
|
|
86
|
+
urlClient: 'https://www.pourcentage.fr'
|
|
39
87
|
}, {
|
|
40
88
|
idTypeBrand: 3,
|
|
41
89
|
name: 'BRED',
|
|
@@ -48,6 +96,11 @@ const BrandClementine = exports.BrandClementine = [{
|
|
|
48
96
|
colors: {
|
|
49
97
|
primary: '#1e6f5c'
|
|
50
98
|
},
|
|
99
|
+
listPhones: {
|
|
100
|
+
contact: '01 86 90 82 15',
|
|
101
|
+
qualite: '01 86 90 82 15',
|
|
102
|
+
juridique: '01 86 90 82 15'
|
|
103
|
+
},
|
|
51
104
|
listMails: {
|
|
52
105
|
administratif: 'administratif@pourcentage.fr',
|
|
53
106
|
app: 'app@pourcentage.fr',
|
|
@@ -65,7 +118,27 @@ const BrandClementine = exports.BrandClementine = [{
|
|
|
65
118
|
support: 'support@pourcentage.fr',
|
|
66
119
|
tva: 'tva@pourcentage.fr',
|
|
67
120
|
wb: 'wb@pourcentage.fr'
|
|
68
|
-
}
|
|
121
|
+
},
|
|
122
|
+
companyInformation: {
|
|
123
|
+
ape: '6920Z',
|
|
124
|
+
bp: '',
|
|
125
|
+
city: 'Paris',
|
|
126
|
+
montantCapital: '10 000',
|
|
127
|
+
nomRaisonSociale: 'POURCENTAGE',
|
|
128
|
+
ECName: 'M. Jean-Louis BOICHÉ',
|
|
129
|
+
ECOrderCity: 'Nancy',
|
|
130
|
+
phone: '01 86 90 82 15',
|
|
131
|
+
postalAddress: '30, rue des Mathurins',
|
|
132
|
+
rcs: '891 501 181',
|
|
133
|
+
statut: 'SAS',
|
|
134
|
+
zipCode: '75 008'
|
|
135
|
+
},
|
|
136
|
+
idPrestationsListAuthorized: [197],
|
|
137
|
+
logoUrl: 'logo-pourcentage.svg',
|
|
138
|
+
hiddenPages: [],
|
|
139
|
+
recaptchaSecretKey: '6Le0o3kaAAAAAIEcSOib77JdK_W3cyIilK-p2yOG',
|
|
140
|
+
urlExpert: 'https://pro.comptalib.com',
|
|
141
|
+
urlClient: 'https://www.pourcentage.fr'
|
|
69
142
|
}, {
|
|
70
143
|
idTypeBrand: 5,
|
|
71
144
|
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,MAAM,EAAE;AACN,IAAA,OAAO,EAAE;AADH,GAHV;AAME,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;
|
|
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 listPhones: {\n contact: '03 83 93 14 14',\n qualite: '03 83 93 30 44',\n juridique: '03 83 93 16 22',\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 ape: '6920Z',\n bp: 'BP 80016',\n city: 'Ludres',\n montantCapital: '500 000',\n nomRaisonSociale: 'EXPERTISE CHOIX B',\n ECName: 'M. Jean-Louis BOICHÉ',\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 listPhones: {\n contact: '01 76 39 00 60',\n qualite: '01 76 39 00 60',\n juridique: '01 76 39 00 60',\n },\n listMails: {\n contact: 'comptastart@legalstart.fr',\n },\n companyInformation: {\n ape: '5829C',\n bp: '',\n city: 'Paris',\n montantCapital: '11 051,85',\n nomRaisonSociale: '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 listPhones: {\n contact: '01 86 90 82 15',\n qualite: '01 86 90 82 15',\n juridique: '01 86 90 82 15',\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 ape: '6920Z',\n bp: '',\n city: 'Paris',\n montantCapital: '10 000',\n nomRaisonSociale: 'POURCENTAGE',\n ECName: 'M. Jean-Louis BOICHÉ',\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"}
|
|
@@ -9,6 +9,11 @@ const BrandComptalib = exports.BrandComptalib = [{
|
|
|
9
9
|
colors: {
|
|
10
10
|
primary: '#1656ff'
|
|
11
11
|
},
|
|
12
|
+
listPhones: {
|
|
13
|
+
contact: '01 86 90 92 80',
|
|
14
|
+
qualite: '01 86 90 92 80',
|
|
15
|
+
juridique: '01 86 90 92 80'
|
|
16
|
+
},
|
|
12
17
|
listMails: {
|
|
13
18
|
administratif: 'contact@comptalib.com',
|
|
14
19
|
app: 'contact@comptalib.com',
|
|
@@ -26,13 +31,37 @@ const BrandComptalib = exports.BrandComptalib = [{
|
|
|
26
31
|
support: 'support@comptalib.com',
|
|
27
32
|
tva: 'contact@comptalib.com',
|
|
28
33
|
wb: 'contact@comptalib.com'
|
|
29
|
-
}
|
|
34
|
+
},
|
|
35
|
+
companyInformation: {
|
|
36
|
+
ape: '6201Z',
|
|
37
|
+
bp: '',
|
|
38
|
+
city: 'Paris',
|
|
39
|
+
montantCapital: '10 000',
|
|
40
|
+
nomRaisonSociale: 'COMPTALIB',
|
|
41
|
+
ECOrderCity: 'Nancy',
|
|
42
|
+
phone: '01 86 90 92 80',
|
|
43
|
+
postalAddress: '30, rue des Mathurins',
|
|
44
|
+
rcs: '808 070 726',
|
|
45
|
+
statut: 'SAS',
|
|
46
|
+
zipCode: '75 008'
|
|
47
|
+
},
|
|
48
|
+
idPrestationsListAuthorized: [197],
|
|
49
|
+
logoUrl: 'logo-comptalib.svg',
|
|
50
|
+
hiddenPages: [],
|
|
51
|
+
recaptchaSecretKey: '6Le0o3kaAAAAAIEcSOib77JdK_W3cyIilK-p2yOG',
|
|
52
|
+
urlExpert: 'https://pro.comptalib.com',
|
|
53
|
+
urlClient: ''
|
|
30
54
|
}, {
|
|
31
55
|
idTypeBrand: 2,
|
|
32
56
|
name: 'Pourcentage',
|
|
33
57
|
colors: {
|
|
34
58
|
primary: '#1e6f5c'
|
|
35
59
|
},
|
|
60
|
+
listPhones: {
|
|
61
|
+
contact: '01 86 90 82 15',
|
|
62
|
+
qualite: '01 86 90 82 15',
|
|
63
|
+
juridique: '01 86 90 82 15'
|
|
64
|
+
},
|
|
36
65
|
listMails: {
|
|
37
66
|
administratif: 'contact@pourcentage.fr',
|
|
38
67
|
app: 'contact@pourcentage.fr',
|
|
@@ -50,6 +79,26 @@ const BrandComptalib = exports.BrandComptalib = [{
|
|
|
50
79
|
support: 'contact@pourcentage.fr',
|
|
51
80
|
tva: 'contact@pourcentage.fr',
|
|
52
81
|
wb: 'contact@pourcentage.fr'
|
|
53
|
-
}
|
|
82
|
+
},
|
|
83
|
+
companyInformation: {
|
|
84
|
+
ape: '6920Z',
|
|
85
|
+
bp: '',
|
|
86
|
+
city: 'Paris',
|
|
87
|
+
montantCapital: '10 000',
|
|
88
|
+
nomRaisonSociale: 'POURCENTAGE',
|
|
89
|
+
ECName: 'M. Jean-Louis BOICHÉ',
|
|
90
|
+
ECOrderCity: 'Nancy',
|
|
91
|
+
phone: '01 86 90 82 15',
|
|
92
|
+
postalAddress: '30, rue des Mathurins',
|
|
93
|
+
rcs: '891 501 181',
|
|
94
|
+
statut: 'SAS',
|
|
95
|
+
zipCode: '75 008'
|
|
96
|
+
},
|
|
97
|
+
idPrestationsListAuthorized: [197],
|
|
98
|
+
logoUrl: 'logo-pourcentage.svg',
|
|
99
|
+
hiddenPages: [],
|
|
100
|
+
recaptchaSecretKey: '6Le0o3kaAAAAAIEcSOib77JdK_W3cyIilK-p2yOG',
|
|
101
|
+
urlExpert: 'https://pro.comptalib.com',
|
|
102
|
+
urlClient: 'https://www.pourcentage.fr'
|
|
54
103
|
}];
|
|
55
104
|
//# 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,MAAM,EAAE;AACN,IAAA,OAAO,EAAE;AADH,GAHV;AAME,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;
|
|
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 listPhones: {\n contact: '01 86 90 92 80',\n qualite: '01 86 90 92 80',\n juridique: '01 86 90 92 80',\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 ape: '6201Z',\n bp: '',\n city: 'Paris',\n montantCapital: '10 000',\n nomRaisonSociale: '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 listPhones: {\n contact: '01 86 90 82 15',\n qualite: '01 86 90 82 15',\n juridique: '01 86 90 82 15',\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 ape: '6920Z',\n bp: '',\n city: 'Paris',\n montantCapital: '10 000',\n nomRaisonSociale: 'POURCENTAGE',\n ECName: 'M. Jean-Louis BOICHÉ',\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"}
|
|
@@ -9,6 +9,11 @@ const BrandLegalstart = exports.BrandLegalstart = [{
|
|
|
9
9
|
colors: {
|
|
10
10
|
primary: '#16a974'
|
|
11
11
|
},
|
|
12
|
+
listPhones: {
|
|
13
|
+
contact: '01 76 39 00 60',
|
|
14
|
+
qualite: '01 76 39 00 60',
|
|
15
|
+
juridique: '01 76 39 00 60'
|
|
16
|
+
},
|
|
12
17
|
listMails: {
|
|
13
18
|
administratif: 'comptastart@legalstart.fr',
|
|
14
19
|
app: 'comptastart@legalstart.fr',
|
|
@@ -26,6 +31,25 @@ const BrandLegalstart = exports.BrandLegalstart = [{
|
|
|
26
31
|
support: 'comptastart@legalstart.fr',
|
|
27
32
|
tva: 'comptastart@legalstart.fr',
|
|
28
33
|
wb: 'comptastart@legalstart.fr'
|
|
29
|
-
}
|
|
34
|
+
},
|
|
35
|
+
companyInformation: {
|
|
36
|
+
ape: '5829C',
|
|
37
|
+
bp: '',
|
|
38
|
+
city: 'Paris',
|
|
39
|
+
montantCapital: '11 051,85',
|
|
40
|
+
nomRaisonSociale: 'Yolaw',
|
|
41
|
+
ECOrderCity: 'Nancy',
|
|
42
|
+
phone: '01 76 39 00 60',
|
|
43
|
+
postalAddress: '50, rue d\'Hauteville',
|
|
44
|
+
rcs: '753 892 926',
|
|
45
|
+
statut: 'SAS',
|
|
46
|
+
zipCode: '75 010'
|
|
47
|
+
},
|
|
48
|
+
idPrestationsListHidden: [197],
|
|
49
|
+
logoUrl: 'logo-legalstart.svg',
|
|
50
|
+
hiddenPages: [],
|
|
51
|
+
recaptchaSecretKey: '6Le0o3kaAAAAAIEcSOib77JdK_W3cyIilK-p2yOG',
|
|
52
|
+
urlExpert: 'https://pro.comptalib.com',
|
|
53
|
+
urlClient: 'https://www.pourcentage.fr'
|
|
30
54
|
}];
|
|
31
55
|
//# 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,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;
|
|
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,UAAU,EAAE;AACV,IAAA,OAAO,EAAE,gBADC;AAEV,IAAA,OAAO,EAAE,gBAFC;AAGV,IAAA,SAAS,EAAE;AAHD,GANd;AAWE,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,GAXb;AA6BE,EAAA,kBAAkB,EAAE;AAClB,IAAA,GAAG,EAAE,OADa;AAElB,IAAA,EAAE,EAAE,EAFc;AAGlB,IAAA,IAAI,EAAE,OAHY;AAIlB,IAAA,cAAc,EAAE,WAJE;AAKlB,IAAA,gBAAgB,EAAE,OALA;AAMlB,IAAA,WAAW,EAAE,OANK;AAOlB,IAAA,KAAK,EAAE,gBAPW;AAQlB,IAAA,aAAa,EAAE,uBARG;AASlB,IAAA,GAAG,EAAE,aATa;AAUlB,IAAA,MAAM,EAAE,KAVU;AAWlB,IAAA,OAAO,EAAE;AAXS,GA7BtB;AA0CE,EAAA,uBAAuB,EAAE,CAAC,GAAD,CA1C3B;AA2CE,EAAA,OAAO,EAAE,qBA3CX;AA4CE,EAAA,WAAW,EAAE,EA5Cf;AA6CE,EAAA,kBAAkB,EAAE,0CA7CtB;AA8CE,EAAA,SAAS,EAAE,2BA9Cb;AA+CE,EAAA,SAAS,EAAE;AA/Cb,CAD6B,CAAxB","sourcesContent":["export const BrandLegalstart = [\n {\n idTypeBrand: 1,\n name: 'LegalStart',\n colors: {\n primary: '#16a974',\n },\n listPhones: {\n contact: '01 76 39 00 60',\n qualite: '01 76 39 00 60',\n juridique: '01 76 39 00 60',\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 ape: '5829C',\n bp: '',\n city: 'Paris',\n montantCapital: '11 051,85',\n nomRaisonSociale: '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.
|
|
3
|
+
"version": "0.4.88",
|
|
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",
|
|
@@ -5,6 +5,11 @@ export const BrandClementine = [
|
|
|
5
5
|
colors: {
|
|
6
6
|
primary: '#ff7e3c',
|
|
7
7
|
},
|
|
8
|
+
listPhones: {
|
|
9
|
+
contact: '03 83 93 14 14',
|
|
10
|
+
qualite: '03 83 93 30 44',
|
|
11
|
+
juridique: '03 83 93 16 22',
|
|
12
|
+
},
|
|
8
13
|
listMails: {
|
|
9
14
|
administratif: 'administratif@compta-clementine.fr',
|
|
10
15
|
app: 'app@compta-clementine.fr',
|
|
@@ -23,6 +28,25 @@ export const BrandClementine = [
|
|
|
23
28
|
tva: 'tva@compta-clementine.fr',
|
|
24
29
|
wb: 'wb@compta-clementine.fr',
|
|
25
30
|
},
|
|
31
|
+
companyInformation: {
|
|
32
|
+
ape: '6920Z',
|
|
33
|
+
bp: 'BP 80016',
|
|
34
|
+
city: 'Ludres',
|
|
35
|
+
montantCapital: '500 000',
|
|
36
|
+
nomRaisonSociale: 'EXPERTISE CHOIX B',
|
|
37
|
+
ECName: 'M. Jean-Louis BOICHÉ',
|
|
38
|
+
ECOrderCity: 'Nancy',
|
|
39
|
+
phone: '03 83 93 14 14',
|
|
40
|
+
postalAddress: '88, rue Pierre et Marie Curie',
|
|
41
|
+
rcs: '752 566 687',
|
|
42
|
+
statut: 'SAS',
|
|
43
|
+
zipCode: '54 710',
|
|
44
|
+
},
|
|
45
|
+
idPrestationsListHidden: [197], // TODO:
|
|
46
|
+
logoUrl: 'logo-dark.svg',
|
|
47
|
+
hiddenPages: [],
|
|
48
|
+
urlExpert: 'https://expert.compta-clementine.fr',
|
|
49
|
+
urlClient: 'https://www.compta-clementine.fr',
|
|
26
50
|
},
|
|
27
51
|
{
|
|
28
52
|
idTypeBrand: 2,
|
|
@@ -30,9 +54,33 @@ export const BrandClementine = [
|
|
|
30
54
|
colors: {
|
|
31
55
|
primary: '#16a974',
|
|
32
56
|
},
|
|
57
|
+
listPhones: {
|
|
58
|
+
contact: '01 76 39 00 60',
|
|
59
|
+
qualite: '01 76 39 00 60',
|
|
60
|
+
juridique: '01 76 39 00 60',
|
|
61
|
+
},
|
|
33
62
|
listMails: {
|
|
34
63
|
contact: 'comptastart@legalstart.fr',
|
|
35
64
|
},
|
|
65
|
+
companyInformation: {
|
|
66
|
+
ape: '5829C',
|
|
67
|
+
bp: '',
|
|
68
|
+
city: 'Paris',
|
|
69
|
+
montantCapital: '11 051,85',
|
|
70
|
+
nomRaisonSociale: 'Yolaw',
|
|
71
|
+
ECOrderCity: 'Nancy',
|
|
72
|
+
phone: '01 76 39 00 60',
|
|
73
|
+
postalAddress: '50, rue d\'Hauteville',
|
|
74
|
+
rcs: '753 892 926',
|
|
75
|
+
statut: 'SAS',
|
|
76
|
+
zipCode: '75 010',
|
|
77
|
+
},
|
|
78
|
+
idPrestationsListHidden: [197],
|
|
79
|
+
logoUrl: 'logo-legalstart.svg',
|
|
80
|
+
hiddenPages: [],
|
|
81
|
+
recaptchaSecretKey: '6Le0o3kaAAAAAIEcSOib77JdK_W3cyIilK-p2yOG',
|
|
82
|
+
urlExpert: 'https://pro.comptalib.com',
|
|
83
|
+
urlClient: 'https://www.pourcentage.fr',
|
|
36
84
|
},
|
|
37
85
|
{
|
|
38
86
|
idTypeBrand: 3,
|
|
@@ -47,6 +95,11 @@ export const BrandClementine = [
|
|
|
47
95
|
colors: {
|
|
48
96
|
primary: '#1e6f5c',
|
|
49
97
|
},
|
|
98
|
+
listPhones: {
|
|
99
|
+
contact: '01 86 90 82 15',
|
|
100
|
+
qualite: '01 86 90 82 15',
|
|
101
|
+
juridique: '01 86 90 82 15',
|
|
102
|
+
},
|
|
50
103
|
listMails: {
|
|
51
104
|
administratif: 'administratif@pourcentage.fr',
|
|
52
105
|
app: 'app@pourcentage.fr',
|
|
@@ -65,6 +118,26 @@ export const BrandClementine = [
|
|
|
65
118
|
tva: 'tva@pourcentage.fr',
|
|
66
119
|
wb: 'wb@pourcentage.fr',
|
|
67
120
|
},
|
|
121
|
+
companyInformation: {
|
|
122
|
+
ape: '6920Z',
|
|
123
|
+
bp: '',
|
|
124
|
+
city: 'Paris',
|
|
125
|
+
montantCapital: '10 000',
|
|
126
|
+
nomRaisonSociale: 'POURCENTAGE',
|
|
127
|
+
ECName: 'M. Jean-Louis BOICHÉ',
|
|
128
|
+
ECOrderCity: 'Nancy',
|
|
129
|
+
phone: '01 86 90 82 15',
|
|
130
|
+
postalAddress: '30, rue des Mathurins',
|
|
131
|
+
rcs: '891 501 181',
|
|
132
|
+
statut: 'SAS',
|
|
133
|
+
zipCode: '75 008',
|
|
134
|
+
},
|
|
135
|
+
idPrestationsListAuthorized: [197],
|
|
136
|
+
logoUrl: 'logo-pourcentage.svg',
|
|
137
|
+
hiddenPages: [],
|
|
138
|
+
recaptchaSecretKey: '6Le0o3kaAAAAAIEcSOib77JdK_W3cyIilK-p2yOG', // TODO:
|
|
139
|
+
urlExpert: 'https://pro.comptalib.com',
|
|
140
|
+
urlClient: 'https://www.pourcentage.fr',
|
|
68
141
|
},
|
|
69
142
|
{
|
|
70
143
|
idTypeBrand: 5,
|
|
@@ -5,6 +5,11 @@ export const BrandComptalib = [
|
|
|
5
5
|
colors: {
|
|
6
6
|
primary: '#1656ff',
|
|
7
7
|
},
|
|
8
|
+
listPhones: {
|
|
9
|
+
contact: '01 86 90 92 80',
|
|
10
|
+
qualite: '01 86 90 92 80',
|
|
11
|
+
juridique: '01 86 90 92 80',
|
|
12
|
+
},
|
|
8
13
|
listMails: {
|
|
9
14
|
administratif: 'contact@comptalib.com',
|
|
10
15
|
app: 'contact@comptalib.com',
|
|
@@ -23,6 +28,25 @@ export const BrandComptalib = [
|
|
|
23
28
|
tva: 'contact@comptalib.com',
|
|
24
29
|
wb: 'contact@comptalib.com',
|
|
25
30
|
},
|
|
31
|
+
companyInformation: {
|
|
32
|
+
ape: '6201Z',
|
|
33
|
+
bp: '',
|
|
34
|
+
city: 'Paris',
|
|
35
|
+
montantCapital: '10 000',
|
|
36
|
+
nomRaisonSociale: 'COMPTALIB',
|
|
37
|
+
ECOrderCity: 'Nancy',
|
|
38
|
+
phone: '01 86 90 92 80',
|
|
39
|
+
postalAddress: '30, rue des Mathurins',
|
|
40
|
+
rcs: '808 070 726',
|
|
41
|
+
statut: 'SAS',
|
|
42
|
+
zipCode: '75 008',
|
|
43
|
+
},
|
|
44
|
+
idPrestationsListAuthorized: [197],
|
|
45
|
+
logoUrl: 'logo-comptalib.svg',
|
|
46
|
+
hiddenPages: [],
|
|
47
|
+
recaptchaSecretKey: '6Le0o3kaAAAAAIEcSOib77JdK_W3cyIilK-p2yOG',
|
|
48
|
+
urlExpert: 'https://pro.comptalib.com',
|
|
49
|
+
urlClient: '',
|
|
26
50
|
},
|
|
27
51
|
{
|
|
28
52
|
idTypeBrand: 2,
|
|
@@ -30,6 +54,11 @@ export const BrandComptalib = [
|
|
|
30
54
|
colors: {
|
|
31
55
|
primary: '#1e6f5c',
|
|
32
56
|
},
|
|
57
|
+
listPhones: {
|
|
58
|
+
contact: '01 86 90 82 15',
|
|
59
|
+
qualite: '01 86 90 82 15',
|
|
60
|
+
juridique: '01 86 90 82 15',
|
|
61
|
+
},
|
|
33
62
|
listMails: {
|
|
34
63
|
administratif: 'contact@pourcentage.fr',
|
|
35
64
|
app: 'contact@pourcentage.fr',
|
|
@@ -48,5 +77,25 @@ export const BrandComptalib = [
|
|
|
48
77
|
tva: 'contact@pourcentage.fr',
|
|
49
78
|
wb: 'contact@pourcentage.fr',
|
|
50
79
|
},
|
|
80
|
+
companyInformation: {
|
|
81
|
+
ape: '6920Z',
|
|
82
|
+
bp: '',
|
|
83
|
+
city: 'Paris',
|
|
84
|
+
montantCapital: '10 000',
|
|
85
|
+
nomRaisonSociale: 'POURCENTAGE',
|
|
86
|
+
ECName: 'M. Jean-Louis BOICHÉ',
|
|
87
|
+
ECOrderCity: 'Nancy',
|
|
88
|
+
phone: '01 86 90 82 15',
|
|
89
|
+
postalAddress: '30, rue des Mathurins',
|
|
90
|
+
rcs: '891 501 181',
|
|
91
|
+
statut: 'SAS',
|
|
92
|
+
zipCode: '75 008',
|
|
93
|
+
},
|
|
94
|
+
idPrestationsListAuthorized: [197],
|
|
95
|
+
logoUrl: 'logo-pourcentage.svg',
|
|
96
|
+
hiddenPages: [],
|
|
97
|
+
recaptchaSecretKey: '6Le0o3kaAAAAAIEcSOib77JdK_W3cyIilK-p2yOG',
|
|
98
|
+
urlExpert: 'https://pro.comptalib.com',
|
|
99
|
+
urlClient: 'https://www.pourcentage.fr',
|
|
51
100
|
},
|
|
52
101
|
];
|
|
@@ -5,6 +5,11 @@ export const BrandLegalstart = [
|
|
|
5
5
|
colors: {
|
|
6
6
|
primary: '#16a974',
|
|
7
7
|
},
|
|
8
|
+
listPhones: {
|
|
9
|
+
contact: '01 76 39 00 60',
|
|
10
|
+
qualite: '01 76 39 00 60',
|
|
11
|
+
juridique: '01 76 39 00 60',
|
|
12
|
+
},
|
|
8
13
|
listMails: {
|
|
9
14
|
administratif: 'comptastart@legalstart.fr',
|
|
10
15
|
app: 'comptastart@legalstart.fr',
|
|
@@ -23,5 +28,24 @@ export const BrandLegalstart = [
|
|
|
23
28
|
tva: 'comptastart@legalstart.fr',
|
|
24
29
|
wb: 'comptastart@legalstart.fr',
|
|
25
30
|
},
|
|
31
|
+
companyInformation: {
|
|
32
|
+
ape: '5829C',
|
|
33
|
+
bp: '',
|
|
34
|
+
city: 'Paris',
|
|
35
|
+
montantCapital: '11 051,85',
|
|
36
|
+
nomRaisonSociale: 'Yolaw',
|
|
37
|
+
ECOrderCity: 'Nancy',
|
|
38
|
+
phone: '01 76 39 00 60',
|
|
39
|
+
postalAddress: '50, rue d\'Hauteville',
|
|
40
|
+
rcs: '753 892 926',
|
|
41
|
+
statut: 'SAS',
|
|
42
|
+
zipCode: '75 010',
|
|
43
|
+
},
|
|
44
|
+
idPrestationsListHidden: [197],
|
|
45
|
+
logoUrl: 'logo-legalstart.svg',
|
|
46
|
+
hiddenPages: [],
|
|
47
|
+
recaptchaSecretKey: '6Le0o3kaAAAAAIEcSOib77JdK_W3cyIilK-p2yOG',
|
|
48
|
+
urlExpert: 'https://pro.comptalib.com',
|
|
49
|
+
urlClient: 'https://www.pourcentage.fr',
|
|
26
50
|
},
|
|
27
51
|
];
|