@silexpert/core 1.1.76 → 1.1.77

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 (27) hide show
  1. package/es/types/Enum/FollowList.d.ts +98 -0
  2. package/es/types/Enum/FollowList.d.ts.map +1 -0
  3. package/es/types/Enum/FollowList.js +98 -0
  4. package/es/types/Enum/FollowList.js.map +1 -0
  5. package/es/types/Interface/api/prestashop/GetPrestashopDataFromJSONOutputParams.d.ts +9 -0
  6. package/es/types/Interface/api/prestashop/GetPrestashopDataFromJSONOutputParams.d.ts.map +1 -0
  7. package/es/types/Interface/api/prestashop/GetPrestashopDataFromJSONOutputParams.js +2 -0
  8. package/es/types/Interface/api/prestashop/GetPrestashopDataFromJSONOutputParams.js.map +1 -0
  9. package/es/types/Interface/models/IFollow.d.ts +0 -2
  10. package/es/types/Interface/models/IFollow.d.ts.map +1 -1
  11. package/es/types/Interface/models/IFollow.js.map +1 -1
  12. package/es/types/index.d.ts +2 -0
  13. package/es/types/index.d.ts.map +1 -1
  14. package/es/types/index.js +2 -0
  15. package/es/types/index.js.map +1 -1
  16. package/js/types/Enum/FollowList.js +103 -0
  17. package/js/types/Enum/FollowList.js.map +1 -0
  18. package/js/types/Interface/api/prestashop/GetPrestashopDataFromJSONOutputParams.js +6 -0
  19. package/js/types/Interface/api/prestashop/GetPrestashopDataFromJSONOutputParams.js.map +1 -0
  20. package/js/types/Interface/models/IFollow.js.map +1 -1
  21. package/js/types/index.js +20 -0
  22. package/js/types/index.js.map +1 -1
  23. package/package.json +1 -1
  24. package/ts/types/Enum/FollowList.ts +97 -0
  25. package/ts/types/Interface/api/prestashop/GetPrestashopDataFromJSONOutputParams.ts +10 -0
  26. package/ts/types/Interface/models/IFollow.ts +0 -5
  27. package/ts/types/index.ts +2 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@silexpert/core",
3
- "version": "1.1.76",
3
+ "version": "1.1.77",
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",
@@ -0,0 +1,97 @@
1
+ export const FollowList = {
2
+ FAILED_CALL: {
3
+ id: 1,
4
+ name: 'Echec appel',
5
+ color: 'teal lighten-4',
6
+ },
7
+ NOT_SUBSCRIBED: {
8
+ id: 2,
9
+ name: 'Non souscris/abandon',
10
+ color: 'red lighten-4',
11
+ },
12
+ FAKE_CONTACT: {
13
+ id: 3,
14
+ name: 'Faux contact',
15
+ color: 'red lighten-4',
16
+ },
17
+ THROW_BACK: {
18
+ id: 4,
19
+ name: 'A relancer',
20
+ color: 'blue lighten-4',
21
+ },
22
+ PROMISE_CONTRACT: {
23
+ id: 5,
24
+ name: 'Promesse contrat',
25
+ color: 'green lighten-4',
26
+ },
27
+ NO_ANSWER: {
28
+ id: 6,
29
+ name: 'Ne répond pas/à relancer',
30
+ color: 'purple lighten-4',
31
+ },
32
+ ECDS: {
33
+ id: 7,
34
+ name: 'ECDS',
35
+ color: 'green lighten-4',
36
+ },
37
+ SUBSCRIBE: {
38
+ id: 8,
39
+ name: 'Souscris',
40
+ color: 'green lighten-4',
41
+ },
42
+ OTHER: {
43
+ id: 9,
44
+ name: 'Autre',
45
+ color: 'lime lighten-4',
46
+ },
47
+ TO_REMIND: {
48
+ id: 10,
49
+ name: 'A rappeler pour une souscription',
50
+ color: 'lightskyblue',
51
+ },
52
+ PRESTA_COMPL: {
53
+ id: 11,
54
+ name: 'Prestation Complémentaire',
55
+ color: 'white',
56
+ },
57
+ RELOAD_1: {
58
+ id: 12,
59
+ name: 'Relance 1',
60
+ color: 'pink',
61
+ },
62
+ RELOAD_2: {
63
+ id: 13,
64
+ name: 'Relance 2',
65
+ color: 'pink lighten-1',
66
+ },
67
+ RELOAD_3: {
68
+ id: 14,
69
+ name: 'Relance 3',
70
+ color: 'pink lighten-2',
71
+ },
72
+ RELOAD_4: {
73
+ id: 15,
74
+ name: 'Relance 4',
75
+ color: 'pink lighten-3',
76
+ },
77
+ RELOAD_5: {
78
+ id: 16,
79
+ name: 'Relance 5',
80
+ color: 'pink lighten-4',
81
+ },
82
+ NRP: {
83
+ id: 17,
84
+ name: 'NRP Constitution',
85
+ color: 'purple lighten-3',
86
+ },
87
+ CONSTITUTION_ANSWER: {
88
+ id: 18,
89
+ name: 'Répondu Constitution',
90
+ color: 'green lighten-3',
91
+ },
92
+ RDV_PROGRAM: {
93
+ id: 19,
94
+ name: 'RDV programmé',
95
+ color: 'orange lighten-1',
96
+ },
97
+ };
@@ -0,0 +1,10 @@
1
+ import { PSAddress } from './PSAddress';
2
+ import { PSCountry } from './PSCountry';
3
+ import { PSOrder } from './PSOrder';
4
+
5
+
6
+ export interface GetPrestashopDataFromJSONOutputParams {
7
+ order?: PSOrder,
8
+ address?: PSAddress,
9
+ country?: PSCountry
10
+ }
@@ -1,5 +1,3 @@
1
- import { IFollowList } from './IFollowList';
2
-
3
1
  // follows
4
2
  export interface IFollow {
5
3
  id?: number;
@@ -12,7 +10,4 @@ export interface IFollow {
12
10
  idSociety: number;
13
11
  createdAt?: Date | null;
14
12
  updatedAt?: Date | null;
15
-
16
- // Associations
17
- typeFollow: IFollowList;
18
13
  }
package/ts/types/index.ts CHANGED
@@ -476,6 +476,7 @@ export * from './Enum/Compensation';
476
476
  export * from './Enum/CashDeskTransactionType';
477
477
  export * from './Enum/ThirdParty';
478
478
  export * from './Enum/PaymentExpectation';
479
+ export * from './Enum/FollowList';
479
480
 
480
481
  // Interfaces API
481
482
  export * from './Interface/api/adjustment/Query';
@@ -743,6 +744,7 @@ export * from './Interface/api/shopify/InvoicesShopify';
743
744
  export * from './Interface/api/shopify/line_item';
744
745
  export * from './Interface/api/shopify/tax_line';
745
746
  export * from './Interface/api/shopify/shipping_line';
747
+ export * from './Interface/api/prestashop/GetPrestashopDataFromJSONOutputParams';
746
748
  export * from './Interface/api/prestashop/PSOrder';
747
749
  export * from './Interface/api/prestashop/PSAddress';
748
750
  export * from './Interface/api/prestashop/PSCountry';