@silexpert/core 1.0.75 → 1.0.76

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (43) hide show
  1. package/es/types/Enum/BrandClementine.js +1 -1
  2. package/es/types/Enum/BrandClementine.js.map +1 -1
  3. package/es/types/Enum/BrandPourcentage.js +1 -1
  4. package/es/types/Enum/BrandPourcentage.js.map +1 -1
  5. package/es/types/Enum/PrestationOption.d.ts +41 -0
  6. package/es/types/Enum/PrestationOption.d.ts.map +1 -1
  7. package/es/types/Enum/PrestationOption.js +41 -0
  8. package/es/types/Enum/PrestationOption.js.map +1 -1
  9. package/es/types/Enum/PrestationType.d.ts +1 -1
  10. package/es/types/Enum/PrestationType.js +1 -1
  11. package/es/types/Enum/PrestationType.js.map +1 -1
  12. package/es/types/Enum/TimeCounterType.js +2 -2
  13. package/es/types/Enum/TimeCounterType.js.map +1 -1
  14. package/es/types/Interface/api/statistic/QueryInternal.d.ts +5 -0
  15. package/es/types/Interface/api/statistic/QueryInternal.d.ts.map +1 -0
  16. package/es/types/Interface/api/statistic/QueryInternal.js +26 -0
  17. package/es/types/Interface/api/statistic/QueryInternal.js.map +1 -0
  18. package/es/types/index.d.ts +1 -0
  19. package/es/types/index.d.ts.map +1 -1
  20. package/es/types/index.js +1 -0
  21. package/es/types/index.js.map +1 -1
  22. package/js/types/Enum/BrandClementine.js +1 -1
  23. package/js/types/Enum/BrandClementine.js.map +1 -1
  24. package/js/types/Enum/BrandPourcentage.js +1 -1
  25. package/js/types/Enum/BrandPourcentage.js.map +1 -1
  26. package/js/types/Enum/PrestationOption.js +48 -4
  27. package/js/types/Enum/PrestationOption.js.map +1 -1
  28. package/js/types/Enum/PrestationType.js +1 -1
  29. package/js/types/Enum/PrestationType.js.map +1 -1
  30. package/js/types/Enum/TimeCounterType.js +2 -2
  31. package/js/types/Enum/TimeCounterType.js.map +1 -1
  32. package/js/types/Interface/api/statistic/QueryInternal.js +31 -0
  33. package/js/types/Interface/api/statistic/QueryInternal.js.map +1 -0
  34. package/js/types/index.js +12 -0
  35. package/js/types/index.js.map +1 -1
  36. package/package.json +1 -1
  37. package/ts/types/Enum/BrandClementine.ts +1 -1
  38. package/ts/types/Enum/BrandPourcentage.ts +1 -1
  39. package/ts/types/Enum/PrestationOption.ts +42 -0
  40. package/ts/types/Enum/PrestationType.ts +1 -1
  41. package/ts/types/Enum/TimeCounterType.ts +2 -2
  42. package/ts/types/Interface/api/statistic/QueryInternal.ts +16 -0
  43. package/ts/types/index.ts +1 -0
@@ -3,30 +3,74 @@
3
3
  Object.defineProperty(exports, "__esModule", {
4
4
  value: true
5
5
  });
6
+ exports.PrestationOption = undefined;
7
+
8
+ var _PrestationType = require("./PrestationType");
9
+
6
10
  const PrestationOption = exports.PrestationOption = {
7
11
  BUSINESS_PLAN_OPTION_1: {
8
12
  id: 1,
9
13
  name: 'Option 1',
10
14
  description: 'Version supplémentaire établie demandée suite à des modifications du questionnaire',
11
- price: 99
15
+ price: 99,
16
+ brand: ['Clementine'],
17
+ prestationList: [_PrestationType.PrestationType.BILAN_PREVISIONNEL]
12
18
  },
13
19
  BUSINESS_PLAN_OPTION_2: {
14
20
  id: 2,
15
21
  name: 'Option 2',
16
22
  description: 'Prévisionnel sur 60 mois',
17
- price: 139
23
+ price: 139,
24
+ brand: ['Clementine'],
25
+ prestationList: [_PrestationType.PrestationType.BILAN_PREVISIONNEL]
18
26
  },
19
27
  BUSINESS_PLAN_OPTION_3: {
20
28
  id: 3,
21
29
  name: 'Option 3',
22
30
  description: 'Aide au choix du statut juridique, fiscal et social',
23
- price: 99
31
+ price: 99,
32
+ brand: ['Clementine'],
33
+ prestationList: [_PrestationType.PrestationType.BILAN_PREVISIONNEL]
24
34
  },
25
35
  BUSINESS_PLAN_OPTION_4: {
26
36
  id: 4,
27
37
  name: 'Option 4',
28
38
  description: 'Prévisionnel express en 8 jours ouvrables après retour questionnaire rempli de 35 questions simples',
29
- price: 99
39
+ price: 99,
40
+ brand: ['Clementine'],
41
+ prestationList: [_PrestationType.PrestationType.BILAN_PREVISIONNEL]
42
+ },
43
+ BUSINESS_PLAN_OPTION_1_POURCENTAGE: {
44
+ id: 5,
45
+ name: 'Option 1',
46
+ description: 'Version supplémentaire établie demandée suite à des modifications du questionnaire',
47
+ price: 150,
48
+ brand: ['Pourcentage'],
49
+ prestationList: [_PrestationType.PrestationType.BILAN_PREVISIONNEL]
50
+ },
51
+ BUSINESS_PLAN_OPTION_2_POURCENTAGE: {
52
+ id: 6,
53
+ name: 'Option 2',
54
+ description: 'Prévisionnel express en 8 jours ouvrés',
55
+ price: 150,
56
+ brand: ['Pourcentage'],
57
+ prestationList: [_PrestationType.PrestationType.BILAN_PREVISIONNEL]
58
+ },
59
+ BUSINESS_PLAN_OPTION_3_POURCENTAGE: {
60
+ id: 7,
61
+ name: 'Option 3',
62
+ description: 'Prévisionnel sur 60 mois (5 ans)',
63
+ price: 199,
64
+ brand: ['Pourcentage'],
65
+ prestationList: [_PrestationType.PrestationType.BILAN_PREVISIONNEL]
66
+ },
67
+ CREATION_WITH_OPTION_SUPPORT: {
68
+ id: 8,
69
+ name: 'Avec accompagnement comptable',
70
+ description: 'Prévisionnel sur 60 mois (5 ans)',
71
+ price: 100,
72
+ brand: ['Clementine'],
73
+ prestationList: [_PrestationType.PrestationType.CREATION_SOCIETE]
30
74
  }
31
75
  };
32
76
  //# sourceMappingURL=PrestationOption.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"PrestationOption.js","mappings":";;;;;AAAO,MAAMA,gBAAgB,WAAhBA,gBAAgB,GAAG;EAC9BC,sBAAsB,EAAE;IACtBC,EAAE,EAAE,CADkB;IAEtBC,IAAI,EAAE,UAFgB;IAGtBC,WAAW,EAAE,oFAHS;IAItBC,KAAK,EAAE;EAJe,CADM;EAO9BC,sBAAsB,EAAE;IACtBJ,EAAE,EAAE,CADkB;IAEtBC,IAAI,EAAE,UAFgB;IAGtBC,WAAW,EAAE,0BAHS;IAItBC,KAAK,EAAE;EAJe,CAPM;EAa9BE,sBAAsB,EAAE;IACtBL,EAAE,EAAE,CADkB;IAEtBC,IAAI,EAAE,UAFgB;IAGtBC,WAAW,EAAE,qDAHS;IAItBC,KAAK,EAAE;EAJe,CAbM;EAmB9BG,sBAAsB,EAAE;IACtBN,EAAE,EAAE,CADkB;IAEtBC,IAAI,EAAE,UAFgB;IAGtBC,WAAW,EAAE,qGAHS;IAItBC,KAAK,EAAE;EAJe;AAnBM,CAAzB","names":["PrestationOption","BUSINESS_PLAN_OPTION_1","id","name","description","price","BUSINESS_PLAN_OPTION_2","BUSINESS_PLAN_OPTION_3","BUSINESS_PLAN_OPTION_4"],"sourceRoot":"","sources":["../../../ts/types/Enum/PrestationOption.ts"],"sourcesContent":["export const PrestationOption = {\n BUSINESS_PLAN_OPTION_1: {\n id: 1,\n name: 'Option 1',\n description: 'Version supplémentaire établie demandée suite à des modifications du questionnaire',\n price: 99,\n },\n BUSINESS_PLAN_OPTION_2: {\n id: 2,\n name: 'Option 2',\n description: 'Prévisionnel sur 60 mois',\n price: 139,\n },\n BUSINESS_PLAN_OPTION_3: {\n id: 3,\n name: 'Option 3',\n description: 'Aide au choix du statut juridique, fiscal et social',\n price: 99,\n },\n BUSINESS_PLAN_OPTION_4: {\n id: 4,\n name: 'Option 4',\n description: 'Prévisionnel express en 8 jours ouvrables après retour questionnaire rempli de 35 questions simples',\n price: 99,\n },\n};"]}
1
+ {"version":3,"file":"PrestationOption.js","mappings":";;;;;;;AAAA;;AAEO,MAAMA,gBAAgB,WAAhBA,gBAAgB,GAAG;EAC9BC,sBAAsB,EAAE;IACtBC,EAAE,EAAE,CADkB;IAEtBC,IAAI,EAAE,UAFgB;IAGtBC,WAAW,EAAE,oFAHS;IAItBC,KAAK,EAAE,EAJe;IAKtBC,KAAK,EAAE,CAAC,YAAD,CALe;IAMtBC,cAAc,EAAE,CAACC,+BAAeC,kBAAhB;EANM,CADM;EAS9BC,sBAAsB,EAAE;IACtBR,EAAE,EAAE,CADkB;IAEtBC,IAAI,EAAE,UAFgB;IAGtBC,WAAW,EAAE,0BAHS;IAItBC,KAAK,EAAE,GAJe;IAKtBC,KAAK,EAAE,CAAC,YAAD,CALe;IAMtBC,cAAc,EAAE,CAACC,+BAAeC,kBAAhB;EANM,CATM;EAiB9BE,sBAAsB,EAAE;IACtBT,EAAE,EAAE,CADkB;IAEtBC,IAAI,EAAE,UAFgB;IAGtBC,WAAW,EAAE,qDAHS;IAItBC,KAAK,EAAE,EAJe;IAKtBC,KAAK,EAAE,CAAC,YAAD,CALe;IAMtBC,cAAc,EAAE,CAACC,+BAAeC,kBAAhB;EANM,CAjBM;EAyB9BG,sBAAsB,EAAE;IACtBV,EAAE,EAAE,CADkB;IAEtBC,IAAI,EAAE,UAFgB;IAGtBC,WAAW,EAAE,qGAHS;IAItBC,KAAK,EAAE,EAJe;IAKtBC,KAAK,EAAE,CAAC,YAAD,CALe;IAMtBC,cAAc,EAAE,CAACC,+BAAeC,kBAAhB;EANM,CAzBM;EAiC9BI,kCAAkC,EAAE;IAClCX,EAAE,EAAE,CAD8B;IAElCC,IAAI,EAAE,UAF4B;IAGlCC,WAAW,EAAE,oFAHqB;IAIlCC,KAAK,EAAE,GAJ2B;IAKlCC,KAAK,EAAE,CAAC,aAAD,CAL2B;IAMlCC,cAAc,EAAE,CAACC,+BAAeC,kBAAhB;EANkB,CAjCN;EAyC9BK,kCAAkC,EAAE;IAClCZ,EAAE,EAAE,CAD8B;IAElCC,IAAI,EAAE,UAF4B;IAGlCC,WAAW,EAAE,wCAHqB;IAIlCC,KAAK,EAAE,GAJ2B;IAKlCC,KAAK,EAAE,CAAC,aAAD,CAL2B;IAMlCC,cAAc,EAAE,CAACC,+BAAeC,kBAAhB;EANkB,CAzCN;EAiD9BM,kCAAkC,EAAE;IAClCb,EAAE,EAAE,CAD8B;IAElCC,IAAI,EAAE,UAF4B;IAGlCC,WAAW,EAAE,kCAHqB;IAIlCC,KAAK,EAAE,GAJ2B;IAKlCC,KAAK,EAAE,CAAC,aAAD,CAL2B;IAMlCC,cAAc,EAAE,CAACC,+BAAeC,kBAAhB;EANkB,CAjDN;EAyD9BO,4BAA4B,EAAE;IAC5Bd,EAAE,EAAE,CADwB;IAE5BC,IAAI,EAAE,+BAFsB;IAG5BC,WAAW,EAAE,kCAHe;IAI5BC,KAAK,EAAE,GAJqB;IAK5BC,KAAK,EAAE,CAAC,YAAD,CALqB;IAM5BC,cAAc,EAAE,CAACC,+BAAeS,gBAAhB;EANY;AAzDA,CAAzB","names":["PrestationOption","BUSINESS_PLAN_OPTION_1","id","name","description","price","brand","prestationList","PrestationType","BILAN_PREVISIONNEL","BUSINESS_PLAN_OPTION_2","BUSINESS_PLAN_OPTION_3","BUSINESS_PLAN_OPTION_4","BUSINESS_PLAN_OPTION_1_POURCENTAGE","BUSINESS_PLAN_OPTION_2_POURCENTAGE","BUSINESS_PLAN_OPTION_3_POURCENTAGE","CREATION_WITH_OPTION_SUPPORT","CREATION_SOCIETE"],"sourceRoot":"","sources":["../../../ts/types/Enum/PrestationOption.ts"],"sourcesContent":["import { PrestationType } from './PrestationType';\n\nexport const PrestationOption = {\n BUSINESS_PLAN_OPTION_1: {\n id: 1,\n name: 'Option 1',\n description: 'Version supplémentaire établie demandée suite à des modifications du questionnaire',\n price: 99,\n brand: ['Clementine'],\n prestationList: [PrestationType.BILAN_PREVISIONNEL],\n },\n BUSINESS_PLAN_OPTION_2: {\n id: 2,\n name: 'Option 2',\n description: 'Prévisionnel sur 60 mois',\n price: 139,\n brand: ['Clementine'],\n prestationList: [PrestationType.BILAN_PREVISIONNEL],\n },\n BUSINESS_PLAN_OPTION_3: {\n id: 3,\n name: 'Option 3',\n description: 'Aide au choix du statut juridique, fiscal et social',\n price: 99,\n brand: ['Clementine'],\n prestationList: [PrestationType.BILAN_PREVISIONNEL],\n },\n BUSINESS_PLAN_OPTION_4: {\n id: 4,\n name: 'Option 4',\n description: 'Prévisionnel express en 8 jours ouvrables après retour questionnaire rempli de 35 questions simples',\n price: 99,\n brand: ['Clementine'],\n prestationList: [PrestationType.BILAN_PREVISIONNEL],\n },\n BUSINESS_PLAN_OPTION_1_POURCENTAGE: {\n id: 5,\n name: 'Option 1',\n description: 'Version supplémentaire établie demandée suite à des modifications du questionnaire',\n price: 150,\n brand: ['Pourcentage'],\n prestationList: [PrestationType.BILAN_PREVISIONNEL],\n },\n BUSINESS_PLAN_OPTION_2_POURCENTAGE: {\n id: 6,\n name: 'Option 2',\n description: 'Prévisionnel express en 8 jours ouvrés',\n price: 150,\n brand: ['Pourcentage'],\n prestationList: [PrestationType.BILAN_PREVISIONNEL],\n },\n BUSINESS_PLAN_OPTION_3_POURCENTAGE: {\n id: 7,\n name: 'Option 3',\n description: 'Prévisionnel sur 60 mois (5 ans)',\n price: 199,\n brand: ['Pourcentage'],\n prestationList: [PrestationType.BILAN_PREVISIONNEL],\n },\n CREATION_WITH_OPTION_SUPPORT: {\n id: 8,\n name: 'Avec accompagnement comptable',\n description: 'Prévisionnel sur 60 mois (5 ans)',\n price: 100,\n brand: ['Clementine'],\n prestationList: [PrestationType.CREATION_SOCIETE],\n },\n};"]}
@@ -389,7 +389,7 @@ const PrestationDetail = exports.PrestationDetail = {
389
389
  isAttestation: 0,
390
390
  inAverageCart: 0,
391
391
  isBack: 0,
392
- price: null,
392
+ price: 149,
393
393
  isCatalog: 0,
394
394
  hidden: 0,
395
395
  isComplementary: 0,