@silexpert/core 1.0.182 → 1.0.183
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/api/resources/Notification.d.ts +3 -0
- package/es/api/resources/Notification.d.ts.map +1 -1
- package/es/api/resources/Notification.js +7 -1
- package/es/api/resources/Notification.js.map +1 -1
- package/es/types/Enum/BrandPourcentage.js +4 -4
- package/es/types/Enum/BrandPourcentage.js.map +1 -1
- package/es/types/Enum/NotificationType.d.ts +14 -2
- package/es/types/Enum/NotificationType.d.ts.map +1 -1
- package/es/types/Enum/NotificationType.js +35 -5
- package/es/types/Enum/NotificationType.js.map +1 -1
- package/es/types/Interface/api/appNotification/Update.d.ts +5 -0
- package/es/types/Interface/api/appNotification/Update.d.ts.map +1 -0
- package/es/types/Interface/api/appNotification/Update.js +25 -0
- package/es/types/Interface/api/appNotification/Update.js.map +1 -0
- package/es/types/Interface/api/notification/CreateNotification.d.ts +2 -2
- package/es/types/Interface/api/notification/CreateNotification.d.ts.map +1 -1
- package/es/types/Interface/api/notification/CreateNotification.js +2 -2
- package/es/types/Interface/api/notification/CreateNotification.js.map +1 -1
- package/es/types/Interface/api/notificationSetting/CreateNotificationSetting.d.ts +2 -2
- package/es/types/Interface/api/notificationSetting/CreateNotificationSetting.d.ts.map +1 -1
- package/es/types/Interface/api/notificationSetting/CreateNotificationSetting.js +2 -2
- package/es/types/Interface/api/notificationSetting/CreateNotificationSetting.js.map +1 -1
- package/es/types/Interface/api/notificationSetting/UpdateNotificationSetting.d.ts +2 -2
- package/es/types/Interface/api/notificationSetting/UpdateNotificationSetting.d.ts.map +1 -1
- package/es/types/Interface/api/notificationSetting/UpdateNotificationSetting.js +2 -2
- package/es/types/Interface/api/notificationSetting/UpdateNotificationSetting.js.map +1 -1
- package/es/types/Interface/models/IAppNotification.d.ts +19 -0
- package/es/types/Interface/models/IAppNotification.d.ts.map +1 -0
- package/es/types/Interface/models/IAppNotification.js +2 -0
- package/es/types/Interface/models/IAppNotification.js.map +1 -0
- package/es/types/Interface/models/IMobileNotificationLog.d.ts +2 -2
- package/es/types/Interface/models/IMobileNotificationLog.d.ts.map +1 -1
- package/es/types/Interface/models/IMobileNotificationLog.js.map +1 -1
- package/es/types/Interface/models/IMobileNotificationSetting.d.ts +2 -2
- package/es/types/Interface/models/IMobileNotificationSetting.d.ts.map +1 -1
- package/es/types/Interface/models/IMobileNotificationSetting.js.map +1 -1
- package/es/types/index.d.ts +2 -0
- package/es/types/index.d.ts.map +1 -1
- package/es/types/index.js +2 -0
- package/es/types/index.js.map +1 -1
- package/js/api/resources/Notification.js +7 -1
- package/js/api/resources/Notification.js.map +1 -1
- package/js/types/Enum/BrandPourcentage.js +4 -4
- package/js/types/Enum/BrandPourcentage.js.map +1 -1
- package/js/types/Enum/NotificationType.js +35 -5
- package/js/types/Enum/NotificationType.js.map +1 -1
- package/js/types/Interface/api/appNotification/Update.js +24 -0
- package/js/types/Interface/api/appNotification/Update.js.map +1 -0
- package/js/types/Interface/api/notification/CreateNotification.js +1 -1
- package/js/types/Interface/api/notification/CreateNotification.js.map +1 -1
- package/js/types/Interface/api/notificationSetting/CreateNotificationSetting.js +1 -1
- package/js/types/Interface/api/notificationSetting/CreateNotificationSetting.js.map +1 -1
- package/js/types/Interface/api/notificationSetting/UpdateNotificationSetting.js +1 -1
- package/js/types/Interface/api/notificationSetting/UpdateNotificationSetting.js.map +1 -1
- package/js/types/Interface/models/IAppNotification.js +6 -0
- package/js/types/Interface/models/IAppNotification.js.map +1 -0
- package/js/types/Interface/models/IMobileNotificationLog.js.map +1 -1
- package/js/types/Interface/models/IMobileNotificationSetting.js.map +1 -1
- package/js/types/index.js +20 -0
- package/js/types/index.js.map +1 -1
- package/package.json +1 -1
- package/ts/api/resources/Notification.ts +10 -1
- package/ts/types/Enum/BrandPourcentage.ts +4 -4
- package/ts/types/Enum/NotificationType.ts +43 -2
- package/ts/types/Interface/api/appNotification/Update.ts +13 -0
- package/ts/types/Interface/api/notification/CreateNotification.ts +3 -3
- package/ts/types/Interface/api/notificationSetting/CreateNotificationSetting.ts +3 -3
- package/ts/types/Interface/api/notificationSetting/UpdateNotificationSetting.ts +3 -3
- package/ts/types/Interface/models/IAppNotification.ts +21 -0
- package/ts/types/Interface/models/IMobileNotificationLog.ts +2 -2
- package/ts/types/Interface/models/IMobileNotificationSetting.ts +2 -2
- package/ts/types/index.ts +3 -1
|
@@ -1,5 +1,8 @@
|
|
|
1
|
+
import { IAppNotification, UpdateAppNotificationStatus } from '../../types';
|
|
1
2
|
import { Resource } from '../Resource';
|
|
2
3
|
export declare class Notification extends Resource {
|
|
3
4
|
createTestNotification(idUser: number): Promise<string>;
|
|
5
|
+
getAllBySociety(id: number): Promise<IAppNotification[]>;
|
|
6
|
+
updateStatus(params: UpdateAppNotificationStatus): Promise<number>;
|
|
4
7
|
}
|
|
5
8
|
//# sourceMappingURL=Notification.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Notification.d.ts","sourceRoot":"","sources":["../../../ts/api/resources/Notification.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,aAAa,CAAC;AAEvC,qBAAa,YAAa,SAAQ,QAAQ;IACxC,sBAAsB,CAAC,MAAM,EAAE,MAAM,GAAG,OAAO,CAAC,MAAM,CAAC;
|
|
1
|
+
{"version":3,"file":"Notification.d.ts","sourceRoot":"","sources":["../../../ts/api/resources/Notification.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,gBAAgB,EAAE,2BAA2B,EAAE,MAAM,aAAa,CAAC;AAC5E,OAAO,EAAE,QAAQ,EAAE,MAAM,aAAa,CAAC;AAEvC,qBAAa,YAAa,SAAQ,QAAQ;IACxC,sBAAsB,CAAC,MAAM,EAAE,MAAM,GAAG,OAAO,CAAC,MAAM,CAAC;IAIvD,eAAe,CAAC,EAAE,EAAE,MAAM,GAAG,OAAO,CAAC,gBAAgB,EAAE,CAAC;IAIxD,YAAY,CAAC,MAAM,EAAE,2BAA2B,GAAG,OAAO,CAAC,MAAM,CAAC;CAGnE"}
|
|
@@ -1,7 +1,13 @@
|
|
|
1
1
|
import { Resource } from '../Resource';
|
|
2
2
|
export class Notification extends Resource {
|
|
3
3
|
createTestNotification(idUser) {
|
|
4
|
-
return this.axios.$post(`/notifications/${idUser}`);
|
|
4
|
+
return this.axios.$post(`/mobile/notifications/${idUser}`);
|
|
5
|
+
}
|
|
6
|
+
getAllBySociety(id) {
|
|
7
|
+
return this.axios.$get(`societies/${id}/notifications`);
|
|
8
|
+
}
|
|
9
|
+
updateStatus(params) {
|
|
10
|
+
return this.axios.$put('/notifications/status', params);
|
|
5
11
|
}
|
|
6
12
|
}
|
|
7
13
|
//# sourceMappingURL=Notification.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Notification.js","sourceRoot":"","sources":["../../../ts/api/resources/Notification.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"Notification.js","sourceRoot":"","sources":["../../../ts/api/resources/Notification.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,QAAQ,EAAE,MAAM,aAAa,CAAC;AAEvC,MAAM,OAAO,YAAa,SAAQ,QAAQ;IACxC,sBAAsB,CAAC,MAAc;QACnC,OAAO,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,yBAAyB,MAAM,EAAE,CAAC,CAAC;IAC7D,CAAC;IAED,eAAe,CAAC,EAAU;QACxB,OAAO,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,aAAa,EAAE,gBAAgB,CAAC,CAAC;IAC1D,CAAC;IAED,YAAY,CAAC,MAAmC;QAC9C,OAAO,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,uBAAuB,EAAE,MAAM,CAAC,CAAC;IAC1D,CAAC;CACF","sourcesContent":["import { IAppNotification, UpdateAppNotificationStatus } from '../../types';\nimport { Resource } from '../Resource';\n\nexport class Notification extends Resource {\n createTestNotification(idUser: number): Promise<string> {\n return this.axios.$post(`/mobile/notifications/${idUser}`);\n }\n\n getAllBySociety(id: number): Promise<IAppNotification[]> {\n return this.axios.$get(`societies/${id}/notifications`);\n }\n\n updateStatus(params: UpdateAppNotificationStatus): Promise<number> {\n return this.axios.$put('/notifications/status', params);\n }\n}"]}
|
|
@@ -3,7 +3,7 @@ export const BrandPourcentage = [
|
|
|
3
3
|
idTypeBrand: 1,
|
|
4
4
|
urlS3: 'https://s3.eu-west-3.amazonaws.com/resources-pourcentage/',
|
|
5
5
|
logoS3: 'config/pourcentage-logo.png',
|
|
6
|
-
name: 'Pourcentage
|
|
6
|
+
name: 'Pourcentage Online',
|
|
7
7
|
colors: {
|
|
8
8
|
primary: '#1e6f5c',
|
|
9
9
|
primary50: '#DFF9F1',
|
|
@@ -264,7 +264,7 @@ export const BrandPourcentage = [
|
|
|
264
264
|
idTypeBrand: 4,
|
|
265
265
|
urlS3: 'https://s3.eu-west-3.amazonaws.com/resources-pourcentage/',
|
|
266
266
|
logoS3: 'config/pourcentage-logo.png',
|
|
267
|
-
name: '
|
|
267
|
+
name: 'Epinal',
|
|
268
268
|
colors: {
|
|
269
269
|
primary: '#1e6f5c',
|
|
270
270
|
primary50: '#DFF9F1',
|
|
@@ -351,7 +351,7 @@ export const BrandPourcentage = [
|
|
|
351
351
|
idTypeBrand: 5,
|
|
352
352
|
urlS3: 'https://s3.eu-west-3.amazonaws.com/resources-pourcentage/',
|
|
353
353
|
logoS3: 'config/pourcentage-logo.png',
|
|
354
|
-
name: '
|
|
354
|
+
name: 'Nice',
|
|
355
355
|
colors: {
|
|
356
356
|
primary: '#1e6f5c',
|
|
357
357
|
primary50: '#DFF9F1',
|
|
@@ -435,7 +435,7 @@ export const BrandPourcentage = [
|
|
|
435
435
|
},
|
|
436
436
|
},
|
|
437
437
|
{
|
|
438
|
-
idTypeBrand:
|
|
438
|
+
idTypeBrand: 6,
|
|
439
439
|
urlS3: 'https://s3.eu-west-3.amazonaws.com/resources-pourcentage/',
|
|
440
440
|
logoS3: 'config/pourcentage-logo.png',
|
|
441
441
|
name: 'Marseille',
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"BrandPourcentage.js","sourceRoot":"","sources":["../../../ts/types/Enum/BrandPourcentage.ts"],"names":[],"mappings":"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","sourcesContent":["export const BrandPourcentage = [\n {\n idTypeBrand: 1,\n urlS3: 'https://s3.eu-west-3.amazonaws.com/resources-pourcentage/',\n logoS3: 'config/pourcentage-logo.png',\n name: 'Pourcentage OnLine',\n colors: {\n primary: '#1e6f5c',\n primary50: '#DFF9F1',\n primary100: '#8ACAB7',\n primary300: '#589E89',\n primary500: '#386D5D',\n primary700: '#1F493D',\n },\n listPhones: {\n contact: '01 86 90 82 15',\n qualite: '01 86 90 82 15',\n social: '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: 'bonjour@pourcentage.fr',\n contact: 'contact@pourcentage.fr',\n facturation: 'facturation@pourcentage.fr',\n feedback: 'contact@pourcentage.fr',\n juridique: 'juridique@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 rh: 'rh@pourcentage.fr',\n social: 'social@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: 'Laxou',\n montantCapital: '150 000',\n nomRaisonSociale: 'POURCENTAGE',\n ECName: 'M. Jean-Louis BOICHÉ',\n ECOrderCity: 'Nancy',\n phone: '01 86 90 82 15',\n postalAddress: '9, avenue du Rhin',\n rcs: '891 501 181',\n statut: 'SAS',\n zipCode: '54 520',\n },\n idPrestationsListAuthorized: [197, 205, 12, 207, 208, 189],\n logoUrl: 'logo-pourcentage.svg',\n miniLogoUrl: 'logo-pourcentage-mini.svg',\n hiddenPages: [],\n recaptchaSecretKey: '6Le0o3kaAAAAAIEcSOib77JdK_W3cyIilK-p2yOG',\n urlApp: 'https://app.pourcentage.fr',\n urlApi1: 'https://api.pourcentage.fr',\n urlApi2: 'https://api-next.pourcentage.fr',\n urlExpert: 'https://pro.pourcentage.fr',\n urlClient: 'https://www.pourcentage.fr',\n bank: {\n IBAN: 'FR7616106010019601826952765',\n BIC: 'AGRIFRPP861',\n Name: 'POURCENTAGE',\n Id: 'FR57ZZZ878E61',\n },\n internalInvoicing: {\n statut: 'SASU',\n name: 'POURCENTAGE',\n address: '9, avenue du Rhin',\n zipCode: '54520',\n city: 'LAXOU',\n country: 'FRANCE',\n montantCapital: '150 000',\n siret: '89150118100020',\n ape: '6920Z',\n rcs: '891 501 181',\n phone: '01 86 90 82 15',\n vatIntracom: 'FR58891501181',\n email: 'facturation@pourcentage.fr',\n },\n webmail: {\n domain: '@pourcentage.fr',\n },\n },\n {\n idTypeBrand: 2,\n urlS3: 'https://s3.eu-west-3.amazonaws.com/resources-pourcentage/',\n logoS3: 'config/pourcentage-logo.png',\n name: 'Paris', // Sofrageco\n colors: {\n primary: '#1e6f5c',\n primary50: '#DFF9F1',\n primary100: '#8ACAB7',\n primary300: '#589E89',\n primary500: '#386D5D',\n primary700: '#1F493D',\n },\n listPhones: {\n contact: '01 48 58 29 45',\n qualite: '01 48 58 29 45',\n social: '01 48 58 29 45',\n juridique: '01 48 58 29 45',\n },\n listMails: {\n administratif: 'contact@pourcentage.fr',\n app: 'contact@pourcentage.fr',\n bonjour: 'bonjour@pourcentage.fr',\n contact: 'contact@pourcentage.fr',\n facturation: 'facturation@pourcentage.fr',\n feedback: 'contact@pourcentage.fr',\n juridique: 'juridique@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 rh: 'rh@pourcentage.fr',\n social: 'social@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: 'MONTREUIL SOUS BOIS',\n montantCapital: '153 000',\n nomRaisonSociale: 'SOFRAGECO',\n ECName: 'M. Jean-Louis BOICHÉ',\n ECOrderCity: 'Nancy',\n phone: '01 48 58 29 45',\n postalAddress: '72 AVENUE PASTEUR',\n rcs: '345 081 996 R.C.S. Bobigny',\n statut: 'SAS',\n zipCode: '93 100',\n },\n idPrestationsListAuthorized: [197, 205, 12, 207, 208, 189],\n logoUrl: 'logo-pourcentage.svg',\n miniLogoUrl: 'logo-pourcentage-mini.svg',\n hiddenPages: [],\n recaptchaSecretKey: '6Le0o3kaAAAAAIEcSOib77JdK_W3cyIilK-p2yOG',\n urlApp: 'https://app.pourcentage.fr',\n urlApi1: 'https://api.pourcentage.fr',\n urlApi2: 'https://api-next.pourcentage.fr',\n urlExpert: 'https://pro.pourcentage.fr',\n urlClient: 'https://www.pourcentage.fr',\n bank: {\n IBAN: '***',\n BIC: '***',\n Name: 'SOFRAGECO',\n Id: 'FR17345081996',\n },\n internalInvoicing: {\n statut: 'SAS',\n name: 'SOFRAGECO',\n address: '72 AVENUE PASTEUR',\n zipCode: '93100',\n city: 'MONTREUIL SOUS BOIS',\n country: 'FRANCE',\n montantCapital: '153 000',\n siret: '34508199600026',\n ape: '6920Z',\n rcs: '345 081 996 R.C.S. Bobigny',\n phone: '01 48 58 29 45',\n vatIntracom: 'FR17345081996',\n email: 'facturation@pourcentage.fr',\n },\n webmail: {\n domain: '@pourcentage.fr',\n },\n },\n {\n idTypeBrand: 3,\n urlS3: 'https://s3.eu-west-3.amazonaws.com/resources-pourcentage/',\n logoS3: 'config/pourcentage-logo.png',\n name: 'Nancy', // AEC54\n colors: {\n primary: '#1e6f5c',\n primary50: '#DFF9F1',\n primary100: '#8ACAB7',\n primary300: '#589E89',\n primary500: '#386D5D',\n primary700: '#1F493D',\n },\n listPhones: {\n contact: '03 83 25 82 20',\n qualite: '03 83 25 82 20',\n social: '03 83 25 82 20',\n juridique: '03 83 25 82 20',\n },\n listMails: {\n administratif: 'contact@pourcentage.fr',\n app: 'contact@pourcentage.fr',\n bonjour: 'bonjour@pourcentage.fr',\n contact: 'contact@pourcentage.fr',\n facturation: 'facturation@pourcentage.fr',\n feedback: 'contact@pourcentage.fr',\n juridique: 'juridique@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 rh: 'rh@pourcentage.fr',\n social: 'social@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: 'Laxou',\n montantCapital: '7 622',\n nomRaisonSociale: 'AEC 54',\n ECName: 'M. Jean-Louis BOICHÉ',\n ECOrderCity: 'Nancy',\n phone: '03 83 25 82 20',\n postalAddress: '9, avenue du Rhin',\n rcs: '315 519 587 R.C.S. Nancy',\n statut: 'SARL',\n zipCode: '54 520',\n },\n idPrestationsListAuthorized: [197, 205, 12, 207, 208, 189],\n logoUrl: 'logo-pourcentage.svg',\n miniLogoUrl: 'logo-pourcentage-mini.svg',\n hiddenPages: [],\n recaptchaSecretKey: '6Le0o3kaAAAAAIEcSOib77JdK_W3cyIilK-p2yOG',\n urlApp: 'https://app.pourcentage.fr',\n urlApi1: 'https://api.pourcentage.fr',\n urlApi2: 'https://api-next.pourcentage.fr',\n urlExpert: 'https://pro.pourcentage.fr',\n urlClient: 'https://www.pourcentage.fr',\n bank: {\n IBAN: '***',\n BIC: '****',\n Name: 'AEC 54',\n Id: 'FR84315519587',\n },\n internalInvoicing: {\n statut: 'SARL',\n name: 'AEC 54',\n address: '9, avenue du Rhin',\n zipCode: '54520',\n city: 'LAXOU',\n country: 'FRANCE',\n montantCapital: '7 622',\n siret: '31551958700069',\n ape: '6920Z',\n rcs: '315 519 587 R.C.S. Nancy',\n phone: '03 83 25 82 20',\n vatIntracom: 'FR84315519587',\n email: 'facturation@pourcentage.fr',\n },\n webmail: {\n domain: '@pourcentage.fr',\n },\n },\n {\n idTypeBrand: 4,\n urlS3: 'https://s3.eu-west-3.amazonaws.com/resources-pourcentage/',\n logoS3: 'config/pourcentage-logo.png',\n name: 'EPINAL', // Pourcentage EPINAL\n colors: {\n primary: '#1e6f5c',\n primary50: '#DFF9F1',\n primary100: '#8ACAB7',\n primary300: '#589E89',\n primary500: '#386D5D',\n primary700: '#1F493D',\n },\n listPhones: {\n contact: '01 86 90 82 15',\n qualite: '01 86 90 82 15',\n social: '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: 'bonjour@pourcentage.fr',\n contact: 'contact@pourcentage.fr',\n facturation: 'facturation@pourcentage.fr',\n feedback: 'contact@pourcentage.fr',\n juridique: 'juridique@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 rh: 'rh@pourcentage.fr',\n social: 'social@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: 'Laxou',\n montantCapital: '150 000',\n nomRaisonSociale: 'POURCENTAGE',\n ECName: 'M. Jean-Louis BOICHÉ',\n ECOrderCity: 'Nancy',\n phone: '01 86 90 82 15',\n postalAddress: '9, avenue du Rhin',\n rcs: '891 501 181',\n statut: 'SAS',\n zipCode: '54 520',\n },\n idPrestationsListAuthorized: [197, 205, 12, 207, 208, 189],\n logoUrl: 'logo-pourcentage.svg',\n miniLogoUrl: 'logo-pourcentage-mini.svg',\n hiddenPages: [],\n recaptchaSecretKey: '6Le0o3kaAAAAAIEcSOib77JdK_W3cyIilK-p2yOG',\n urlApp: 'https://app.pourcentage.fr',\n urlApi1: 'https://api.pourcentage.fr',\n urlApi2: 'https://api-next.pourcentage.fr',\n urlExpert: 'https://pro.pourcentage.fr',\n urlClient: 'https://www.pourcentage.fr',\n bank: {\n IBAN: 'FR7616106010019601826952765',\n BIC: 'AGRIFRPP861',\n Name: 'POURCENTAGE',\n Id: 'FR57ZZZ878E61',\n },\n internalInvoicing: {\n statut: 'SASU',\n name: 'POURCENTAGE',\n address: '9, avenue du Rhin',\n zipCode: '54520',\n city: 'LAXOU',\n country: 'FRANCE',\n montantCapital: '150 000',\n siret: '89150118100020',\n ape: '6920Z',\n rcs: '891 501 181',\n phone: '01 86 90 82 15',\n vatIntracom: 'FR58891501181',\n email: 'facturation@pourcentage.fr',\n },\n webmail: {\n domain: '@pourcentage.fr',\n },\n },\n {\n idTypeBrand: 5,\n urlS3: 'https://s3.eu-west-3.amazonaws.com/resources-pourcentage/',\n logoS3: 'config/pourcentage-logo.png',\n name: 'NICE', // AMEX\n colors: {\n primary: '#1e6f5c',\n primary50: '#DFF9F1',\n primary100: '#8ACAB7',\n primary300: '#589E89',\n primary500: '#386D5D',\n primary700: '#1F493D',\n },\n listPhones: {\n contact: '04 93 87 03 03',\n qualite: '04 93 87 03 03',\n social: '04 93 87 03 03',\n juridique: '04 93 87 03 03',\n },\n listMails: {\n administratif: 'contact@pourcentage.fr',\n app: 'contact@pourcentage.fr',\n bonjour: 'bonjour@pourcentage.fr',\n contact: 'contact@pourcentage.fr',\n facturation: 'facturation@pourcentage.fr',\n feedback: 'contact@pourcentage.fr',\n juridique: 'juridique@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 rh: 'rh@pourcentage.fr',\n social: 'social@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: 'NICE',\n montantCapital: '466 800',\n nomRaisonSociale: 'AMEX',\n ECName: 'M. Jean-Louis BOICHÉ',\n ECOrderCity: 'Nancy',\n phone: '04 93 87 03 03',\n postalAddress: '11, Boulevard Victor Hugo',\n rcs: 'Nice B 882 255 094',\n statut: 'SARL',\n zipCode: '06 000',\n },\n idPrestationsListAuthorized: [197, 205, 12, 207, 208, 189],\n logoUrl: 'logo-pourcentage.svg',\n miniLogoUrl: 'logo-pourcentage-mini.svg',\n hiddenPages: [],\n recaptchaSecretKey: '6Le0o3kaAAAAAIEcSOib77JdK_W3cyIilK-p2yOG',\n urlApp: 'https://app.pourcentage.fr',\n urlApi1: 'https://api.pourcentage.fr',\n urlApi2: 'https://api-next.pourcentage.fr',\n urlExpert: 'https://pro.pourcentage.fr',\n urlClient: 'https://www.pourcentage.fr',\n bank: {\n IBAN: '***',\n BIC: '***',\n Name: 'AMEX',\n Id: 'FR14882255094',\n },\n internalInvoicing: {\n statut: 'SARL',\n name: 'AMEX',\n address: '11, Boulevard Victor Hugo',\n zipCode: '06 000',\n city: 'NICE',\n country: 'FRANCE',\n montantCapital: '466 800',\n siret: '88225509400014',\n ape: '6920Z',\n rcs: 'Nice B 882 255 094',\n phone: '04 93 87 03 03',\n vatIntracom: 'FR14882255094',\n email: 'facturation@pourcentage.fr',\n },\n webmail: {\n domain: '@pourcentage.fr',\n },\n },\n {\n idTypeBrand: 1,\n urlS3: 'https://s3.eu-west-3.amazonaws.com/resources-pourcentage/',\n logoS3: 'config/pourcentage-logo.png',\n name: 'Marseille', // Pourcentage Marseille\n colors: {\n primary: '#1e6f5c',\n primary50: '#DFF9F1',\n primary100: '#8ACAB7',\n primary300: '#589E89',\n primary500: '#386D5D',\n primary700: '#1F493D',\n },\n listPhones: {\n contact: '01 86 90 82 15',\n qualite: '01 86 90 82 15',\n social: '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: 'bonjour@pourcentage.fr',\n contact: 'contact@pourcentage.fr',\n facturation: 'facturation@pourcentage.fr',\n feedback: 'contact@pourcentage.fr',\n juridique: 'juridique@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 rh: 'rh@pourcentage.fr',\n social: 'social@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: 'Laxou',\n montantCapital: '150 000',\n nomRaisonSociale: 'POURCENTAGE',\n ECName: 'M. Jean-Louis BOICHÉ',\n ECOrderCity: 'Nancy',\n phone: '01 86 90 82 15',\n postalAddress: '9, avenue du Rhin',\n rcs: '891 501 181',\n statut: 'SAS',\n zipCode: '54 520',\n },\n idPrestationsListAuthorized: [197, 205, 12, 207, 208, 189],\n logoUrl: 'logo-pourcentage.svg',\n miniLogoUrl: 'logo-pourcentage-mini.svg',\n hiddenPages: [],\n recaptchaSecretKey: '6Le0o3kaAAAAAIEcSOib77JdK_W3cyIilK-p2yOG',\n urlApp: 'https://app.pourcentage.fr',\n urlApi1: 'https://api.pourcentage.fr',\n urlApi2: 'https://api-next.pourcentage.fr',\n urlExpert: 'https://pro.pourcentage.fr',\n urlClient: 'https://www.pourcentage.fr',\n bank: {\n IBAN: 'FR7616106010019601826952765',\n BIC: 'AGRIFRPP861',\n Name: 'POURCENTAGE',\n Id: 'FR57ZZZ878E61',\n },\n internalInvoicing: {\n statut: 'SASU',\n name: 'POURCENTAGE',\n address: '9, avenue du Rhin',\n zipCode: '54520',\n city: 'LAXOU',\n country: 'FRANCE',\n montantCapital: '150 000',\n siret: '89150118100020',\n ape: '6920Z',\n rcs: '891 501 181',\n phone: '01 86 90 82 15',\n vatIntracom: 'FR58891501181',\n email: 'facturation@pourcentage.fr',\n },\n webmail: {\n domain: '@pourcentage.fr',\n },\n },\n];"]}
|
|
1
|
+
{"version":3,"file":"BrandPourcentage.js","sourceRoot":"","sources":["../../../ts/types/Enum/BrandPourcentage.ts"],"names":[],"mappings":"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","sourcesContent":["export const BrandPourcentage = [\n {\n idTypeBrand: 1,\n urlS3: 'https://s3.eu-west-3.amazonaws.com/resources-pourcentage/',\n logoS3: 'config/pourcentage-logo.png',\n name: 'Pourcentage Online',\n colors: {\n primary: '#1e6f5c',\n primary50: '#DFF9F1',\n primary100: '#8ACAB7',\n primary300: '#589E89',\n primary500: '#386D5D',\n primary700: '#1F493D',\n },\n listPhones: {\n contact: '01 86 90 82 15',\n qualite: '01 86 90 82 15',\n social: '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: 'bonjour@pourcentage.fr',\n contact: 'contact@pourcentage.fr',\n facturation: 'facturation@pourcentage.fr',\n feedback: 'contact@pourcentage.fr',\n juridique: 'juridique@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 rh: 'rh@pourcentage.fr',\n social: 'social@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: 'Laxou',\n montantCapital: '150 000',\n nomRaisonSociale: 'POURCENTAGE',\n ECName: 'M. Jean-Louis BOICHÉ',\n ECOrderCity: 'Nancy',\n phone: '01 86 90 82 15',\n postalAddress: '9, avenue du Rhin',\n rcs: '891 501 181',\n statut: 'SAS',\n zipCode: '54 520',\n },\n idPrestationsListAuthorized: [197, 205, 12, 207, 208, 189],\n logoUrl: 'logo-pourcentage.svg',\n miniLogoUrl: 'logo-pourcentage-mini.svg',\n hiddenPages: [],\n recaptchaSecretKey: '6Le0o3kaAAAAAIEcSOib77JdK_W3cyIilK-p2yOG',\n urlApp: 'https://app.pourcentage.fr',\n urlApi1: 'https://api.pourcentage.fr',\n urlApi2: 'https://api-next.pourcentage.fr',\n urlExpert: 'https://pro.pourcentage.fr',\n urlClient: 'https://www.pourcentage.fr',\n bank: {\n IBAN: 'FR7616106010019601826952765',\n BIC: 'AGRIFRPP861',\n Name: 'POURCENTAGE',\n Id: 'FR57ZZZ878E61',\n },\n internalInvoicing: {\n statut: 'SASU',\n name: 'POURCENTAGE',\n address: '9, avenue du Rhin',\n zipCode: '54520',\n city: 'LAXOU',\n country: 'FRANCE',\n montantCapital: '150 000',\n siret: '89150118100020',\n ape: '6920Z',\n rcs: '891 501 181',\n phone: '01 86 90 82 15',\n vatIntracom: 'FR58891501181',\n email: 'facturation@pourcentage.fr',\n },\n webmail: {\n domain: '@pourcentage.fr',\n },\n },\n {\n idTypeBrand: 2,\n urlS3: 'https://s3.eu-west-3.amazonaws.com/resources-pourcentage/',\n logoS3: 'config/pourcentage-logo.png',\n name: 'Paris', // Sofrageco\n colors: {\n primary: '#1e6f5c',\n primary50: '#DFF9F1',\n primary100: '#8ACAB7',\n primary300: '#589E89',\n primary500: '#386D5D',\n primary700: '#1F493D',\n },\n listPhones: {\n contact: '01 48 58 29 45',\n qualite: '01 48 58 29 45',\n social: '01 48 58 29 45',\n juridique: '01 48 58 29 45',\n },\n listMails: {\n administratif: 'contact@pourcentage.fr',\n app: 'contact@pourcentage.fr',\n bonjour: 'bonjour@pourcentage.fr',\n contact: 'contact@pourcentage.fr',\n facturation: 'facturation@pourcentage.fr',\n feedback: 'contact@pourcentage.fr',\n juridique: 'juridique@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 rh: 'rh@pourcentage.fr',\n social: 'social@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: 'MONTREUIL SOUS BOIS',\n montantCapital: '153 000',\n nomRaisonSociale: 'SOFRAGECO',\n ECName: 'M. Jean-Louis BOICHÉ',\n ECOrderCity: 'Nancy',\n phone: '01 48 58 29 45',\n postalAddress: '72 AVENUE PASTEUR',\n rcs: '345 081 996 R.C.S. Bobigny',\n statut: 'SAS',\n zipCode: '93 100',\n },\n idPrestationsListAuthorized: [197, 205, 12, 207, 208, 189],\n logoUrl: 'logo-pourcentage.svg',\n miniLogoUrl: 'logo-pourcentage-mini.svg',\n hiddenPages: [],\n recaptchaSecretKey: '6Le0o3kaAAAAAIEcSOib77JdK_W3cyIilK-p2yOG',\n urlApp: 'https://app.pourcentage.fr',\n urlApi1: 'https://api.pourcentage.fr',\n urlApi2: 'https://api-next.pourcentage.fr',\n urlExpert: 'https://pro.pourcentage.fr',\n urlClient: 'https://www.pourcentage.fr',\n bank: {\n IBAN: '***',\n BIC: '***',\n Name: 'SOFRAGECO',\n Id: 'FR17345081996',\n },\n internalInvoicing: {\n statut: 'SAS',\n name: 'SOFRAGECO',\n address: '72 AVENUE PASTEUR',\n zipCode: '93100',\n city: 'MONTREUIL SOUS BOIS',\n country: 'FRANCE',\n montantCapital: '153 000',\n siret: '34508199600026',\n ape: '6920Z',\n rcs: '345 081 996 R.C.S. Bobigny',\n phone: '01 48 58 29 45',\n vatIntracom: 'FR17345081996',\n email: 'facturation@pourcentage.fr',\n },\n webmail: {\n domain: '@pourcentage.fr',\n },\n },\n {\n idTypeBrand: 3,\n urlS3: 'https://s3.eu-west-3.amazonaws.com/resources-pourcentage/',\n logoS3: 'config/pourcentage-logo.png',\n name: 'Nancy', // AEC54\n colors: {\n primary: '#1e6f5c',\n primary50: '#DFF9F1',\n primary100: '#8ACAB7',\n primary300: '#589E89',\n primary500: '#386D5D',\n primary700: '#1F493D',\n },\n listPhones: {\n contact: '03 83 25 82 20',\n qualite: '03 83 25 82 20',\n social: '03 83 25 82 20',\n juridique: '03 83 25 82 20',\n },\n listMails: {\n administratif: 'contact@pourcentage.fr',\n app: 'contact@pourcentage.fr',\n bonjour: 'bonjour@pourcentage.fr',\n contact: 'contact@pourcentage.fr',\n facturation: 'facturation@pourcentage.fr',\n feedback: 'contact@pourcentage.fr',\n juridique: 'juridique@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 rh: 'rh@pourcentage.fr',\n social: 'social@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: 'Laxou',\n montantCapital: '7 622',\n nomRaisonSociale: 'AEC 54',\n ECName: 'M. Jean-Louis BOICHÉ',\n ECOrderCity: 'Nancy',\n phone: '03 83 25 82 20',\n postalAddress: '9, avenue du Rhin',\n rcs: '315 519 587 R.C.S. Nancy',\n statut: 'SARL',\n zipCode: '54 520',\n },\n idPrestationsListAuthorized: [197, 205, 12, 207, 208, 189],\n logoUrl: 'logo-pourcentage.svg',\n miniLogoUrl: 'logo-pourcentage-mini.svg',\n hiddenPages: [],\n recaptchaSecretKey: '6Le0o3kaAAAAAIEcSOib77JdK_W3cyIilK-p2yOG',\n urlApp: 'https://app.pourcentage.fr',\n urlApi1: 'https://api.pourcentage.fr',\n urlApi2: 'https://api-next.pourcentage.fr',\n urlExpert: 'https://pro.pourcentage.fr',\n urlClient: 'https://www.pourcentage.fr',\n bank: {\n IBAN: '***',\n BIC: '****',\n Name: 'AEC 54',\n Id: 'FR84315519587',\n },\n internalInvoicing: {\n statut: 'SARL',\n name: 'AEC 54',\n address: '9, avenue du Rhin',\n zipCode: '54520',\n city: 'LAXOU',\n country: 'FRANCE',\n montantCapital: '7 622',\n siret: '31551958700069',\n ape: '6920Z',\n rcs: '315 519 587 R.C.S. Nancy',\n phone: '03 83 25 82 20',\n vatIntracom: 'FR84315519587',\n email: 'facturation@pourcentage.fr',\n },\n webmail: {\n domain: '@pourcentage.fr',\n },\n },\n {\n idTypeBrand: 4,\n urlS3: 'https://s3.eu-west-3.amazonaws.com/resources-pourcentage/',\n logoS3: 'config/pourcentage-logo.png',\n name: 'Epinal', // Pourcentage EPINAL\n colors: {\n primary: '#1e6f5c',\n primary50: '#DFF9F1',\n primary100: '#8ACAB7',\n primary300: '#589E89',\n primary500: '#386D5D',\n primary700: '#1F493D',\n },\n listPhones: {\n contact: '01 86 90 82 15',\n qualite: '01 86 90 82 15',\n social: '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: 'bonjour@pourcentage.fr',\n contact: 'contact@pourcentage.fr',\n facturation: 'facturation@pourcentage.fr',\n feedback: 'contact@pourcentage.fr',\n juridique: 'juridique@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 rh: 'rh@pourcentage.fr',\n social: 'social@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: 'Laxou',\n montantCapital: '150 000',\n nomRaisonSociale: 'POURCENTAGE',\n ECName: 'M. Jean-Louis BOICHÉ',\n ECOrderCity: 'Nancy',\n phone: '01 86 90 82 15',\n postalAddress: '9, avenue du Rhin',\n rcs: '891 501 181',\n statut: 'SAS',\n zipCode: '54 520',\n },\n idPrestationsListAuthorized: [197, 205, 12, 207, 208, 189],\n logoUrl: 'logo-pourcentage.svg',\n miniLogoUrl: 'logo-pourcentage-mini.svg',\n hiddenPages: [],\n recaptchaSecretKey: '6Le0o3kaAAAAAIEcSOib77JdK_W3cyIilK-p2yOG',\n urlApp: 'https://app.pourcentage.fr',\n urlApi1: 'https://api.pourcentage.fr',\n urlApi2: 'https://api-next.pourcentage.fr',\n urlExpert: 'https://pro.pourcentage.fr',\n urlClient: 'https://www.pourcentage.fr',\n bank: {\n IBAN: 'FR7616106010019601826952765',\n BIC: 'AGRIFRPP861',\n Name: 'POURCENTAGE',\n Id: 'FR57ZZZ878E61',\n },\n internalInvoicing: {\n statut: 'SASU',\n name: 'POURCENTAGE',\n address: '9, avenue du Rhin',\n zipCode: '54520',\n city: 'LAXOU',\n country: 'FRANCE',\n montantCapital: '150 000',\n siret: '89150118100020',\n ape: '6920Z',\n rcs: '891 501 181',\n phone: '01 86 90 82 15',\n vatIntracom: 'FR58891501181',\n email: 'facturation@pourcentage.fr',\n },\n webmail: {\n domain: '@pourcentage.fr',\n },\n },\n {\n idTypeBrand: 5,\n urlS3: 'https://s3.eu-west-3.amazonaws.com/resources-pourcentage/',\n logoS3: 'config/pourcentage-logo.png',\n name: 'Nice', // AMEX\n colors: {\n primary: '#1e6f5c',\n primary50: '#DFF9F1',\n primary100: '#8ACAB7',\n primary300: '#589E89',\n primary500: '#386D5D',\n primary700: '#1F493D',\n },\n listPhones: {\n contact: '04 93 87 03 03',\n qualite: '04 93 87 03 03',\n social: '04 93 87 03 03',\n juridique: '04 93 87 03 03',\n },\n listMails: {\n administratif: 'contact@pourcentage.fr',\n app: 'contact@pourcentage.fr',\n bonjour: 'bonjour@pourcentage.fr',\n contact: 'contact@pourcentage.fr',\n facturation: 'facturation@pourcentage.fr',\n feedback: 'contact@pourcentage.fr',\n juridique: 'juridique@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 rh: 'rh@pourcentage.fr',\n social: 'social@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: 'NICE',\n montantCapital: '466 800',\n nomRaisonSociale: 'AMEX',\n ECName: 'M. Jean-Louis BOICHÉ',\n ECOrderCity: 'Nancy',\n phone: '04 93 87 03 03',\n postalAddress: '11, Boulevard Victor Hugo',\n rcs: 'Nice B 882 255 094',\n statut: 'SARL',\n zipCode: '06 000',\n },\n idPrestationsListAuthorized: [197, 205, 12, 207, 208, 189],\n logoUrl: 'logo-pourcentage.svg',\n miniLogoUrl: 'logo-pourcentage-mini.svg',\n hiddenPages: [],\n recaptchaSecretKey: '6Le0o3kaAAAAAIEcSOib77JdK_W3cyIilK-p2yOG',\n urlApp: 'https://app.pourcentage.fr',\n urlApi1: 'https://api.pourcentage.fr',\n urlApi2: 'https://api-next.pourcentage.fr',\n urlExpert: 'https://pro.pourcentage.fr',\n urlClient: 'https://www.pourcentage.fr',\n bank: {\n IBAN: '***',\n BIC: '***',\n Name: 'AMEX',\n Id: 'FR14882255094',\n },\n internalInvoicing: {\n statut: 'SARL',\n name: 'AMEX',\n address: '11, Boulevard Victor Hugo',\n zipCode: '06 000',\n city: 'NICE',\n country: 'FRANCE',\n montantCapital: '466 800',\n siret: '88225509400014',\n ape: '6920Z',\n rcs: 'Nice B 882 255 094',\n phone: '04 93 87 03 03',\n vatIntracom: 'FR14882255094',\n email: 'facturation@pourcentage.fr',\n },\n webmail: {\n domain: '@pourcentage.fr',\n },\n },\n {\n idTypeBrand: 6,\n urlS3: 'https://s3.eu-west-3.amazonaws.com/resources-pourcentage/',\n logoS3: 'config/pourcentage-logo.png',\n name: 'Marseille', // Pourcentage Marseille\n colors: {\n primary: '#1e6f5c',\n primary50: '#DFF9F1',\n primary100: '#8ACAB7',\n primary300: '#589E89',\n primary500: '#386D5D',\n primary700: '#1F493D',\n },\n listPhones: {\n contact: '01 86 90 82 15',\n qualite: '01 86 90 82 15',\n social: '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: 'bonjour@pourcentage.fr',\n contact: 'contact@pourcentage.fr',\n facturation: 'facturation@pourcentage.fr',\n feedback: 'contact@pourcentage.fr',\n juridique: 'juridique@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 rh: 'rh@pourcentage.fr',\n social: 'social@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: 'Laxou',\n montantCapital: '150 000',\n nomRaisonSociale: 'POURCENTAGE',\n ECName: 'M. Jean-Louis BOICHÉ',\n ECOrderCity: 'Nancy',\n phone: '01 86 90 82 15',\n postalAddress: '9, avenue du Rhin',\n rcs: '891 501 181',\n statut: 'SAS',\n zipCode: '54 520',\n },\n idPrestationsListAuthorized: [197, 205, 12, 207, 208, 189],\n logoUrl: 'logo-pourcentage.svg',\n miniLogoUrl: 'logo-pourcentage-mini.svg',\n hiddenPages: [],\n recaptchaSecretKey: '6Le0o3kaAAAAAIEcSOib77JdK_W3cyIilK-p2yOG',\n urlApp: 'https://app.pourcentage.fr',\n urlApi1: 'https://api.pourcentage.fr',\n urlApi2: 'https://api-next.pourcentage.fr',\n urlExpert: 'https://pro.pourcentage.fr',\n urlClient: 'https://www.pourcentage.fr',\n bank: {\n IBAN: 'FR7616106010019601826952765',\n BIC: 'AGRIFRPP861',\n Name: 'POURCENTAGE',\n Id: 'FR57ZZZ878E61',\n },\n internalInvoicing: {\n statut: 'SASU',\n name: 'POURCENTAGE',\n address: '9, avenue du Rhin',\n zipCode: '54520',\n city: 'LAXOU',\n country: 'FRANCE',\n montantCapital: '150 000',\n siret: '89150118100020',\n ape: '6920Z',\n rcs: '891 501 181',\n phone: '01 86 90 82 15',\n vatIntracom: 'FR58891501181',\n email: 'facturation@pourcentage.fr',\n },\n webmail: {\n domain: '@pourcentage.fr',\n },\n },\n];"]}
|
|
@@ -1,5 +1,17 @@
|
|
|
1
|
-
export declare enum
|
|
1
|
+
export declare enum NotificationTypeEnum {
|
|
2
2
|
ANNOTATE_COUNT = 1,
|
|
3
|
-
BANK_ACCOUNT_SYNCHRONISATION = 2
|
|
3
|
+
BANK_ACCOUNT_SYNCHRONISATION = 2,
|
|
4
|
+
INVOICE_HAS_BEEN_PAID = 3,
|
|
5
|
+
ESTIMATE_ALMOST_EXPIRED = 4,
|
|
6
|
+
INVOICE_ALMOST_EXPIRED = 5
|
|
4
7
|
}
|
|
8
|
+
export type NotificationTypeType = {
|
|
9
|
+
id: number;
|
|
10
|
+
title: string;
|
|
11
|
+
linkTitle: string;
|
|
12
|
+
};
|
|
13
|
+
export type NotificationTypeTypeEnum = {
|
|
14
|
+
[key: string]: NotificationTypeType;
|
|
15
|
+
};
|
|
16
|
+
export declare const NotificationType: NotificationTypeTypeEnum;
|
|
5
17
|
//# sourceMappingURL=NotificationType.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"NotificationType.d.ts","sourceRoot":"","sources":["../../../ts/types/Enum/NotificationType.ts"],"names":[],"mappings":"AAAA,oBAAY,
|
|
1
|
+
{"version":3,"file":"NotificationType.d.ts","sourceRoot":"","sources":["../../../ts/types/Enum/NotificationType.ts"],"names":[],"mappings":"AAAA,oBAAY,oBAAoB;IAC9B,cAAc,IAAI;IAClB,4BAA4B,IAAI;IAChC,qBAAqB,IAAI;IACzB,uBAAuB,IAAI;IAC3B,sBAAsB,IAAI;CAC3B;AAED,MAAM,MAAM,oBAAoB,GAAG;IACjC,EAAE,EAAE,MAAM,CAAC;IACX,KAAK,EAAE,MAAM,CAAC;IACd,SAAS,EAAE,MAAM,CAAC;CACnB,CAAC;AAEF,MAAM,MAAM,wBAAwB,GAAG;IACrC,CAAC,GAAG,EAAE,MAAM,GAAG,oBAAoB,CAAA;CACpC,CAAC;AAEF,eAAO,MAAM,gBAAgB,EAAE,wBA0B9B,CAAC"}
|
|
@@ -1,6 +1,36 @@
|
|
|
1
|
-
export var
|
|
2
|
-
(function (
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
1
|
+
export var NotificationTypeEnum;
|
|
2
|
+
(function (NotificationTypeEnum) {
|
|
3
|
+
NotificationTypeEnum[NotificationTypeEnum["ANNOTATE_COUNT"] = 1] = "ANNOTATE_COUNT";
|
|
4
|
+
NotificationTypeEnum[NotificationTypeEnum["BANK_ACCOUNT_SYNCHRONISATION"] = 2] = "BANK_ACCOUNT_SYNCHRONISATION";
|
|
5
|
+
NotificationTypeEnum[NotificationTypeEnum["INVOICE_HAS_BEEN_PAID"] = 3] = "INVOICE_HAS_BEEN_PAID";
|
|
6
|
+
NotificationTypeEnum[NotificationTypeEnum["ESTIMATE_ALMOST_EXPIRED"] = 4] = "ESTIMATE_ALMOST_EXPIRED";
|
|
7
|
+
NotificationTypeEnum[NotificationTypeEnum["INVOICE_ALMOST_EXPIRED"] = 5] = "INVOICE_ALMOST_EXPIRED";
|
|
8
|
+
})(NotificationTypeEnum || (NotificationTypeEnum = {}));
|
|
9
|
+
export const NotificationType = {
|
|
10
|
+
ANNOTATE_COUNT: {
|
|
11
|
+
id: NotificationTypeEnum.ANNOTATE_COUNT,
|
|
12
|
+
title: 'Vous avez des lignes non annotées',
|
|
13
|
+
linkTitle: 'Annoter',
|
|
14
|
+
},
|
|
15
|
+
BANK_ACCOUNT_SYNCHRONISATION: {
|
|
16
|
+
id: NotificationTypeEnum.BANK_ACCOUNT_SYNCHRONISATION,
|
|
17
|
+
title: 'Un de vos comptes bancaires est désynchronisé',
|
|
18
|
+
linkTitle: 'Synchroniser mon compte',
|
|
19
|
+
},
|
|
20
|
+
INVOICE_HAS_BEEN_PAID: {
|
|
21
|
+
id: NotificationTypeEnum.INVOICE_HAS_BEEN_PAID,
|
|
22
|
+
title: 'Vous avez été payé !',
|
|
23
|
+
linkTitle: 'Consulter la facture',
|
|
24
|
+
},
|
|
25
|
+
ESTIMATE_ALMOST_EXPIRED: {
|
|
26
|
+
id: NotificationTypeEnum.ESTIMATE_ALMOST_EXPIRED,
|
|
27
|
+
title: 'Un devis est bientôt expiré',
|
|
28
|
+
linkTitle: 'Consulter le devis',
|
|
29
|
+
},
|
|
30
|
+
INVOICE_ALMOST_EXPIRED: {
|
|
31
|
+
id: NotificationTypeEnum.INVOICE_ALMOST_EXPIRED,
|
|
32
|
+
title: 'Une facture arrive à échéance',
|
|
33
|
+
linkTitle: 'Consulter la facture',
|
|
34
|
+
},
|
|
35
|
+
};
|
|
6
36
|
//# sourceMappingURL=NotificationType.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"NotificationType.js","sourceRoot":"","sources":["../../../ts/types/Enum/NotificationType.ts"],"names":[],"mappings":"AAAA,MAAM,CAAN,IAAY,
|
|
1
|
+
{"version":3,"file":"NotificationType.js","sourceRoot":"","sources":["../../../ts/types/Enum/NotificationType.ts"],"names":[],"mappings":"AAAA,MAAM,CAAN,IAAY,oBAMX;AAND,WAAY,oBAAoB;IAC9B,mFAAkB,CAAA;IAClB,+GAAgC,CAAA;IAChC,iGAAyB,CAAA;IACzB,qGAA2B,CAAA;IAC3B,mGAA0B,CAAA;AAC5B,CAAC,EANW,oBAAoB,KAApB,oBAAoB,QAM/B;AAYD,MAAM,CAAC,MAAM,gBAAgB,GAA6B;IACxD,cAAc,EAAE;QACd,EAAE,EAAE,oBAAoB,CAAC,cAAc;QACvC,KAAK,EAAE,mCAAmC;QAC1C,SAAS,EAAE,SAAS;KACrB;IACD,4BAA4B,EAAE;QAC5B,EAAE,EAAE,oBAAoB,CAAC,4BAA4B;QACrD,KAAK,EAAE,+CAA+C;QACtD,SAAS,EAAE,yBAAyB;KACrC;IACD,qBAAqB,EAAE;QACrB,EAAE,EAAE,oBAAoB,CAAC,qBAAqB;QAC9C,KAAK,EAAE,sBAAsB;QAC7B,SAAS,EAAE,sBAAsB;KAClC;IACD,uBAAuB,EAAE;QACvB,EAAE,EAAE,oBAAoB,CAAC,uBAAuB;QAChD,KAAK,EAAE,6BAA6B;QACpC,SAAS,EAAE,oBAAoB;KAChC;IACD,sBAAsB,EAAE;QACtB,EAAE,EAAE,oBAAoB,CAAC,sBAAsB;QAC/C,KAAK,EAAE,+BAA+B;QACtC,SAAS,EAAE,sBAAsB;KAClC;CACF,CAAC","sourcesContent":["export enum NotificationTypeEnum {\n ANNOTATE_COUNT = 1,\n BANK_ACCOUNT_SYNCHRONISATION = 2,\n INVOICE_HAS_BEEN_PAID = 3,\n ESTIMATE_ALMOST_EXPIRED = 4,\n INVOICE_ALMOST_EXPIRED = 5,\n}\n\nexport type NotificationTypeType = {\n id: number;\n title: string;\n linkTitle: string;\n};\n\nexport type NotificationTypeTypeEnum = {\n [key: string]: NotificationTypeType\n};\n\nexport const NotificationType: NotificationTypeTypeEnum = {\n ANNOTATE_COUNT: {\n id: NotificationTypeEnum.ANNOTATE_COUNT,\n title: 'Vous avez des lignes non annotées',\n linkTitle: 'Annoter',\n },\n BANK_ACCOUNT_SYNCHRONISATION: {\n id: NotificationTypeEnum.BANK_ACCOUNT_SYNCHRONISATION,\n title: 'Un de vos comptes bancaires est désynchronisé',\n linkTitle: 'Synchroniser mon compte',\n },\n INVOICE_HAS_BEEN_PAID: {\n id: NotificationTypeEnum.INVOICE_HAS_BEEN_PAID,\n title: 'Vous avez été payé !',\n linkTitle: 'Consulter la facture',\n },\n ESTIMATE_ALMOST_EXPIRED: {\n id: NotificationTypeEnum.ESTIMATE_ALMOST_EXPIRED,\n title: 'Un devis est bientôt expiré',\n linkTitle: 'Consulter le devis',\n },\n INVOICE_ALMOST_EXPIRED: {\n id: NotificationTypeEnum.INVOICE_ALMOST_EXPIRED,\n title: 'Une facture arrive à échéance',\n linkTitle: 'Consulter la facture',\n },\n};"]}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Update.d.ts","sourceRoot":"","sources":["../../../../../ts/types/Interface/api/appNotification/Update.ts"],"names":[],"mappings":"AAIA,qBAAa,2BAA2B;IAEtC,eAAe,CAAC,EAAE,MAAM,EAAE,GAAG,IAAI,CAAC;IAKlC,UAAU,EAAE,OAAO,CAAC;CACrB"}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
2
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
3
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
4
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
5
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
6
|
+
};
|
|
7
|
+
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
8
|
+
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
9
|
+
};
|
|
10
|
+
import { IsBoolean } from 'class-validator';
|
|
11
|
+
import { ApiPropertyOptional, ApiProperty } from '../../../../utils';
|
|
12
|
+
import { ToBoolean } from '../../../../utils/transforms/boolean.transform';
|
|
13
|
+
export class UpdateAppNotificationStatus {
|
|
14
|
+
}
|
|
15
|
+
__decorate([
|
|
16
|
+
ApiPropertyOptional(),
|
|
17
|
+
__metadata("design:type", Object)
|
|
18
|
+
], UpdateAppNotificationStatus.prototype, "idNotifications", void 0);
|
|
19
|
+
__decorate([
|
|
20
|
+
ApiProperty(),
|
|
21
|
+
IsBoolean(),
|
|
22
|
+
ToBoolean(),
|
|
23
|
+
__metadata("design:type", Boolean)
|
|
24
|
+
], UpdateAppNotificationStatus.prototype, "markAsRead", void 0);
|
|
25
|
+
//# sourceMappingURL=Update.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Update.js","sourceRoot":"","sources":["../../../../../ts/types/Interface/api/appNotification/Update.ts"],"names":[],"mappings":";;;;;;;;;AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,iBAAiB,CAAC;AAC5C,OAAO,EAAE,mBAAmB,EAAE,WAAW,EAAE,MAAM,mBAAmB,CAAC;AACrE,OAAO,EAAE,SAAS,EAAE,MAAM,gDAAgD,CAAC;AAE3E,MAAM,OAAO,2BAA2B;CAQvC;AAPC;IAAC,mBAAmB,EAAE;;oEACY;AAElC;IAAC,WAAW,EAAE;IACb,SAAS,EAAE;IACX,SAAS,EAAE;;+DACQ","sourcesContent":["import { IsBoolean } from 'class-validator';\nimport { ApiPropertyOptional, ApiProperty } from '../../../../utils';\nimport { ToBoolean } from '../../../../utils/transforms/boolean.transform';\n\nexport class UpdateAppNotificationStatus {\n @ApiPropertyOptional()\n idNotifications?: number[] | null;\n\n @ApiProperty()\n @IsBoolean()\n @ToBoolean()\n markAsRead: boolean;\n}"]}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { NotificationTypeEnum } from '../../../Enum/NotificationType';
|
|
2
2
|
export declare class CreateNotification {
|
|
3
|
-
notificationType:
|
|
3
|
+
notificationType: NotificationTypeEnum;
|
|
4
4
|
token: string;
|
|
5
5
|
}
|
|
6
6
|
//# sourceMappingURL=CreateNotification.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"CreateNotification.d.ts","sourceRoot":"","sources":["../../../../../ts/types/Interface/api/notification/CreateNotification.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,
|
|
1
|
+
{"version":3,"file":"CreateNotification.d.ts","sourceRoot":"","sources":["../../../../../ts/types/Interface/api/notification/CreateNotification.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,oBAAoB,EAAE,MAAM,gCAAgC,CAAC;AAEtE,qBAAa,kBAAkB;IAI7B,gBAAgB,EAAE,oBAAoB,CAAC;IAGvC,KAAK,EAAE,MAAM,CAAC;CACf"}
|
|
@@ -9,13 +9,13 @@ var __metadata = (this && this.__metadata) || function (k, v) {
|
|
|
9
9
|
};
|
|
10
10
|
import { IsEnum, IsInt } from 'class-validator';
|
|
11
11
|
import { ApiProperty } from '../../../../utils';
|
|
12
|
-
import {
|
|
12
|
+
import { NotificationTypeEnum } from '../../../Enum/NotificationType';
|
|
13
13
|
export class CreateNotification {
|
|
14
14
|
}
|
|
15
15
|
__decorate([
|
|
16
16
|
ApiProperty(),
|
|
17
17
|
IsInt(),
|
|
18
|
-
IsEnum(
|
|
18
|
+
IsEnum(NotificationTypeEnum),
|
|
19
19
|
__metadata("design:type", Number)
|
|
20
20
|
], CreateNotification.prototype, "notificationType", void 0);
|
|
21
21
|
__decorate([
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"CreateNotification.js","sourceRoot":"","sources":["../../../../../ts/types/Interface/api/notification/CreateNotification.ts"],"names":[],"mappings":";;;;;;;;;AAAA,OAAO,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,iBAAiB,CAAC;AAChD,OAAO,EAAE,WAAW,EAAE,MAAM,mBAAmB,CAAC;AAChD,OAAO,EAAE,
|
|
1
|
+
{"version":3,"file":"CreateNotification.js","sourceRoot":"","sources":["../../../../../ts/types/Interface/api/notification/CreateNotification.ts"],"names":[],"mappings":";;;;;;;;;AAAA,OAAO,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,iBAAiB,CAAC;AAChD,OAAO,EAAE,WAAW,EAAE,MAAM,mBAAmB,CAAC;AAChD,OAAO,EAAE,oBAAoB,EAAE,MAAM,gCAAgC,CAAC;AAEtE,MAAM,OAAO,kBAAkB;CAQ9B;AAPC;IAAC,WAAW,EAAE;IACb,KAAK,EAAE;IACP,MAAM,CAAC,oBAAoB,CAAC;;4DACU;AAEvC;IAAC,WAAW,EAAE;;iDACA","sourcesContent":["import { IsEnum, IsInt } from 'class-validator';\nimport { ApiProperty } from '../../../../utils';\nimport { NotificationTypeEnum } from '../../../Enum/NotificationType';\n\nexport class CreateNotification {\n @ApiProperty()\n @IsInt()\n @IsEnum(NotificationTypeEnum)\n notificationType: NotificationTypeEnum;\n\n @ApiProperty()\n token: string;\n}"]}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { NotificationTypeEnum } from '../../../Enum/NotificationType';
|
|
2
2
|
export declare class CreateNotificationSetting {
|
|
3
|
-
notificationType:
|
|
3
|
+
notificationType: NotificationTypeEnum;
|
|
4
4
|
active: boolean;
|
|
5
5
|
}
|
|
6
6
|
//# sourceMappingURL=CreateNotificationSetting.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"CreateNotificationSetting.d.ts","sourceRoot":"","sources":["../../../../../ts/types/Interface/api/notificationSetting/CreateNotificationSetting.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,
|
|
1
|
+
{"version":3,"file":"CreateNotificationSetting.d.ts","sourceRoot":"","sources":["../../../../../ts/types/Interface/api/notificationSetting/CreateNotificationSetting.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,oBAAoB,EAAE,MAAM,gCAAgC,CAAC;AAEtE,qBAAa,yBAAyB;IAIpC,gBAAgB,EAAE,oBAAoB,CAAC;IAI1B,MAAM,EAAE,OAAO,CAAC;CAC9B"}
|
|
@@ -10,13 +10,13 @@ var __metadata = (this && this.__metadata) || function (k, v) {
|
|
|
10
10
|
import { IsBoolean, IsEnum, IsInt } from 'class-validator';
|
|
11
11
|
import { ApiProperty } from '../../../../utils';
|
|
12
12
|
import { ToBoolean } from '../../../../utils/transforms/boolean.transform';
|
|
13
|
-
import {
|
|
13
|
+
import { NotificationTypeEnum } from '../../../Enum/NotificationType';
|
|
14
14
|
export class CreateNotificationSetting {
|
|
15
15
|
}
|
|
16
16
|
__decorate([
|
|
17
17
|
ApiProperty(),
|
|
18
18
|
IsInt(),
|
|
19
|
-
IsEnum(
|
|
19
|
+
IsEnum(NotificationTypeEnum),
|
|
20
20
|
__metadata("design:type", Number)
|
|
21
21
|
], CreateNotificationSetting.prototype, "notificationType", void 0);
|
|
22
22
|
__decorate([
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"CreateNotificationSetting.js","sourceRoot":"","sources":["../../../../../ts/types/Interface/api/notificationSetting/CreateNotificationSetting.ts"],"names":[],"mappings":";;;;;;;;;AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,iBAAiB,CAAC;AAC3D,OAAO,EAAE,WAAW,EAAE,MAAM,mBAAmB,CAAC;AAChD,OAAO,EAAE,SAAS,EAAE,MAAM,gDAAgD,CAAC;AAC3E,OAAO,EAAE,
|
|
1
|
+
{"version":3,"file":"CreateNotificationSetting.js","sourceRoot":"","sources":["../../../../../ts/types/Interface/api/notificationSetting/CreateNotificationSetting.ts"],"names":[],"mappings":";;;;;;;;;AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,iBAAiB,CAAC;AAC3D,OAAO,EAAE,WAAW,EAAE,MAAM,mBAAmB,CAAC;AAChD,OAAO,EAAE,SAAS,EAAE,MAAM,gDAAgD,CAAC;AAC3E,OAAO,EAAE,oBAAoB,EAAE,MAAM,gCAAgC,CAAC;AAEtE,MAAM,OAAO,yBAAyB;CASrC;AARC;IAAC,WAAW,EAAE;IACb,KAAK,EAAE;IACP,MAAM,CAAC,oBAAoB,CAAC;;mEACU;AAEvC;IAAC,WAAW,EAAE;IACb,SAAS,EAAE;IACX,SAAS,EAAE;;yDAAiB","sourcesContent":["import { IsBoolean, IsEnum, IsInt } from 'class-validator';\nimport { ApiProperty } from '../../../../utils';\nimport { ToBoolean } from '../../../../utils/transforms/boolean.transform';\nimport { NotificationTypeEnum } from '../../../Enum/NotificationType';\n\nexport class CreateNotificationSetting {\n @ApiProperty()\n @IsInt()\n @IsEnum(NotificationTypeEnum)\n notificationType: NotificationTypeEnum;\n\n @ApiProperty()\n @IsBoolean()\n @ToBoolean() active: boolean;\n}"]}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { NotificationTypeEnum } from '../../../Enum/NotificationType';
|
|
2
2
|
export declare class UpdateNotificationSetting {
|
|
3
|
-
notificationType:
|
|
3
|
+
notificationType: NotificationTypeEnum;
|
|
4
4
|
active: boolean;
|
|
5
5
|
}
|
|
6
6
|
//# sourceMappingURL=UpdateNotificationSetting.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"UpdateNotificationSetting.d.ts","sourceRoot":"","sources":["../../../../../ts/types/Interface/api/notificationSetting/UpdateNotificationSetting.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,
|
|
1
|
+
{"version":3,"file":"UpdateNotificationSetting.d.ts","sourceRoot":"","sources":["../../../../../ts/types/Interface/api/notificationSetting/UpdateNotificationSetting.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,oBAAoB,EAAE,MAAM,gCAAgC,CAAC;AAEtE,qBAAa,yBAAyB;IAIpC,gBAAgB,EAAE,oBAAoB,CAAC;IAKvC,MAAM,EAAE,OAAO,CAAC;CACjB"}
|
|
@@ -10,13 +10,13 @@ var __metadata = (this && this.__metadata) || function (k, v) {
|
|
|
10
10
|
import { IsBoolean, IsEnum, IsInt } from 'class-validator';
|
|
11
11
|
import { ApiProperty } from '../../../../utils';
|
|
12
12
|
import { ToBoolean } from '../../../../utils/transforms/boolean.transform';
|
|
13
|
-
import {
|
|
13
|
+
import { NotificationTypeEnum } from '../../../Enum/NotificationType';
|
|
14
14
|
export class UpdateNotificationSetting {
|
|
15
15
|
}
|
|
16
16
|
__decorate([
|
|
17
17
|
ApiProperty(),
|
|
18
18
|
IsInt(),
|
|
19
|
-
IsEnum(
|
|
19
|
+
IsEnum(NotificationTypeEnum),
|
|
20
20
|
__metadata("design:type", Number)
|
|
21
21
|
], UpdateNotificationSetting.prototype, "notificationType", void 0);
|
|
22
22
|
__decorate([
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"UpdateNotificationSetting.js","sourceRoot":"","sources":["../../../../../ts/types/Interface/api/notificationSetting/UpdateNotificationSetting.ts"],"names":[],"mappings":";;;;;;;;;AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,iBAAiB,CAAC;AAC3D,OAAO,EAAE,WAAW,EAAE,MAAM,mBAAmB,CAAC;AAChD,OAAO,EAAE,SAAS,EAAE,MAAM,gDAAgD,CAAC;AAC3E,OAAO,EAAE,
|
|
1
|
+
{"version":3,"file":"UpdateNotificationSetting.js","sourceRoot":"","sources":["../../../../../ts/types/Interface/api/notificationSetting/UpdateNotificationSetting.ts"],"names":[],"mappings":";;;;;;;;;AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,iBAAiB,CAAC;AAC3D,OAAO,EAAE,WAAW,EAAE,MAAM,mBAAmB,CAAC;AAChD,OAAO,EAAE,SAAS,EAAE,MAAM,gDAAgD,CAAC;AAC3E,OAAO,EAAE,oBAAoB,EAAE,MAAM,gCAAgC,CAAC;AAEtE,MAAM,OAAO,yBAAyB;CAUrC;AATC;IAAC,WAAW,EAAE;IACb,KAAK,EAAE;IACP,MAAM,CAAC,oBAAoB,CAAC;;mEACU;AAEvC;IAAC,WAAW,EAAE;IACb,SAAS,EAAE;IACX,SAAS,EAAE;;yDACI","sourcesContent":["import { IsBoolean, IsEnum, IsInt } from 'class-validator';\nimport { ApiProperty } from '../../../../utils';\nimport { ToBoolean } from '../../../../utils/transforms/boolean.transform';\nimport { NotificationTypeEnum } from '../../../Enum/NotificationType';\n\nexport class UpdateNotificationSetting {\n @ApiProperty()\n @IsInt()\n @IsEnum(NotificationTypeEnum)\n notificationType: NotificationTypeEnum;\n\n @ApiProperty()\n @IsBoolean()\n @ToBoolean()\n active: boolean;\n}"]}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { NotificationTypeEnum } from '../../Enum/NotificationType';
|
|
2
|
+
import { ISociety } from './ISociety';
|
|
3
|
+
import { IUser } from './IUser';
|
|
4
|
+
export interface IAppNotification {
|
|
5
|
+
id: number;
|
|
6
|
+
title: string;
|
|
7
|
+
message: string;
|
|
8
|
+
link?: string;
|
|
9
|
+
documentId?: number;
|
|
10
|
+
read: boolean;
|
|
11
|
+
idNotificationtype: NotificationTypeEnum;
|
|
12
|
+
idSociety: number;
|
|
13
|
+
idUser: number;
|
|
14
|
+
createdAt?: Date | null;
|
|
15
|
+
updatedAt?: Date | null;
|
|
16
|
+
society: ISociety;
|
|
17
|
+
user: IUser;
|
|
18
|
+
}
|
|
19
|
+
//# sourceMappingURL=IAppNotification.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"IAppNotification.d.ts","sourceRoot":"","sources":["../../../../ts/types/Interface/models/IAppNotification.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,oBAAoB,EAAE,MAAM,6BAA6B,CAAC;AACnE,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC;AACtC,OAAO,EAAE,KAAK,EAAE,MAAM,SAAS,CAAC;AAEhC,MAAM,WAAW,gBAAgB;IAC/B,EAAE,EAAE,MAAM,CAAC;IACX,KAAK,EAAE,MAAM,CAAC;IACd,OAAO,EAAE,MAAM,CAAC;IAChB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,IAAI,EAAE,OAAO,CAAC;IACd,kBAAkB,EAAE,oBAAoB,CAAC;IACzC,SAAS,EAAE,MAAM,CAAC;IAClB,MAAM,EAAE,MAAM,CAAC;IACf,SAAS,CAAC,EAAE,IAAI,GAAG,IAAI,CAAC;IACxB,SAAS,CAAC,EAAE,IAAI,GAAG,IAAI,CAAC;IAGxB,OAAO,EAAE,QAAQ,CAAC;IAClB,IAAI,EAAE,KAAK,CAAC;CACb"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"IAppNotification.js","sourceRoot":"","sources":["../../../../ts/types/Interface/models/IAppNotification.ts"],"names":[],"mappings":"","sourcesContent":["import { NotificationTypeEnum } from '../../Enum/NotificationType';\nimport { ISociety } from './ISociety';\nimport { IUser } from './IUser';\n\nexport interface IAppNotification {\n id: number;\n title: string;\n message: string;\n link?: string;\n documentId?: number;\n read: boolean;\n idNotificationtype: NotificationTypeEnum;\n idSociety: number;\n idUser: number;\n createdAt?: Date | null;\n updatedAt?: Date | null;\n\n // associations\n society: ISociety;\n user: IUser;\n}"]}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { NotificationTypeEnum } from '../../Enum/NotificationType';
|
|
2
2
|
export interface IMobileNotificationLog {
|
|
3
3
|
id: number;
|
|
4
|
-
idType:
|
|
4
|
+
idType: NotificationTypeEnum;
|
|
5
5
|
lastSent: Date | null;
|
|
6
6
|
nextSend: Date | null;
|
|
7
7
|
success: boolean;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"IMobileNotificationLog.d.ts","sourceRoot":"","sources":["../../../../ts/types/Interface/models/IMobileNotificationLog.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,
|
|
1
|
+
{"version":3,"file":"IMobileNotificationLog.d.ts","sourceRoot":"","sources":["../../../../ts/types/Interface/models/IMobileNotificationLog.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,oBAAoB,EAAE,MAAM,6BAA6B,CAAC;AAEnE,MAAM,WAAW,sBAAsB;IACrC,EAAE,EAAE,MAAM,CAAC;IACX,MAAM,EAAE,oBAAoB,CAAC;IAC7B,QAAQ,EAAE,IAAI,GAAG,IAAI,CAAC;IACtB,QAAQ,EAAE,IAAI,GAAG,IAAI,CAAC;IACtB,OAAO,EAAE,OAAO,CAAC;IACjB,KAAK,EAAE,MAAM,GAAG,IAAI,CAAC;IACrB,KAAK,EAAE,MAAM,CAAC;IACd,UAAU,EAAE,MAAM,CAAC;IACnB,aAAa,EAAE,MAAM,GAAG,IAAI,CAAC;IAC7B,SAAS,EAAE,MAAM,CAAC;IAClB,SAAS,CAAC,EAAE,IAAI,GAAG,IAAI,CAAC;IACxB,SAAS,CAAC,EAAE,IAAI,GAAG,IAAI,CAAC;CAEzB"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"IMobileNotificationLog.js","sourceRoot":"","sources":["../../../../ts/types/Interface/models/IMobileNotificationLog.ts"],"names":[],"mappings":"","sourcesContent":["import {
|
|
1
|
+
{"version":3,"file":"IMobileNotificationLog.js","sourceRoot":"","sources":["../../../../ts/types/Interface/models/IMobileNotificationLog.ts"],"names":[],"mappings":"","sourcesContent":["import { NotificationTypeEnum } from '../../Enum/NotificationType';\n\nexport interface IMobileNotificationLog {\n id: number;\n idType: NotificationTypeEnum;\n lastSent: Date | null;\n nextSend: Date | null;\n success: boolean;\n error: string | null;\n count: number;\n errorCount: number;\n idBankAccount: number | null;\n idSociety: number;\n createdAt?: Date | null;\n updatedAt?: Date | null;\n\n}"]}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { NotificationTypeEnum } from '../../Enum/NotificationType';
|
|
2
2
|
export interface IMobileNotificationSetting {
|
|
3
3
|
id: number;
|
|
4
|
-
idType:
|
|
4
|
+
idType: NotificationTypeEnum;
|
|
5
5
|
active: boolean;
|
|
6
6
|
idUser: number;
|
|
7
7
|
createdAt?: Date | null;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"IMobileNotificationSetting.d.ts","sourceRoot":"","sources":["../../../../ts/types/Interface/models/IMobileNotificationSetting.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,
|
|
1
|
+
{"version":3,"file":"IMobileNotificationSetting.d.ts","sourceRoot":"","sources":["../../../../ts/types/Interface/models/IMobileNotificationSetting.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,oBAAoB,EAAE,MAAM,6BAA6B,CAAC;AAEnE,MAAM,WAAW,0BAA0B;IACzC,EAAE,EAAE,MAAM,CAAC;IACX,MAAM,EAAE,oBAAoB,CAAC;IAC7B,MAAM,EAAE,OAAO,CAAC;IAChB,MAAM,EAAE,MAAM,CAAC;IACf,SAAS,CAAC,EAAE,IAAI,GAAG,IAAI,CAAC;IACxB,SAAS,CAAC,EAAE,IAAI,GAAG,IAAI,CAAC;CACzB"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"IMobileNotificationSetting.js","sourceRoot":"","sources":["../../../../ts/types/Interface/models/IMobileNotificationSetting.ts"],"names":[],"mappings":"","sourcesContent":["import {
|
|
1
|
+
{"version":3,"file":"IMobileNotificationSetting.js","sourceRoot":"","sources":["../../../../ts/types/Interface/models/IMobileNotificationSetting.ts"],"names":[],"mappings":"","sourcesContent":["import { NotificationTypeEnum } from '../../Enum/NotificationType';\n\nexport interface IMobileNotificationSetting {\n id: number;\n idType: NotificationTypeEnum;\n active: boolean;\n idUser: number;\n createdAt?: Date | null;\n updatedAt?: Date | null;\n}"]}
|
package/es/types/index.d.ts
CHANGED
|
@@ -321,6 +321,7 @@ export * from './Interface/models/IRegistration';
|
|
|
321
321
|
export * from './Interface/models/IVatRegimeHistory';
|
|
322
322
|
export * from './Interface/models/ICustomerAcceptance';
|
|
323
323
|
export * from './Interface/models/IUnpaidCallHistory';
|
|
324
|
+
export * from './Interface/models/IAppNotification';
|
|
324
325
|
export * from './Form/FormAuthenticate';
|
|
325
326
|
export * from './Form/FormConnector';
|
|
326
327
|
export * from './Enum/Acceptance';
|
|
@@ -903,4 +904,5 @@ export * from './Interface/api/affectedPatrimony/ResultCreateAffectedPatrimony';
|
|
|
903
904
|
export * from './Interface/api/affectedPatrimony/ReadAffectedPatrimony';
|
|
904
905
|
export * from './Interface/api/notificationSetting/CreateNotificationSetting';
|
|
905
906
|
export * from './Interface/api/notificationSetting/UpdateNotificationSetting';
|
|
907
|
+
export * from './Interface/api/appNotification/Update';
|
|
906
908
|
//# sourceMappingURL=index.d.ts.map
|