@zohoim/client-sdk 1.0.0-whatsAppPricing.4 → 1.1.0-attachmentsList

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 (74) hide show
  1. package/es/application/services/index.js +1 -3
  2. package/es/core/constants/ModuleNames.js +1 -3
  3. package/es/core/constants/index.js +1 -2
  4. package/es/domain/dto/index.js +1 -3
  5. package/es/domain/dto/sessions/getSessionAttachmentsRequest.js +2 -0
  6. package/es/domain/entities/index.js +1 -4
  7. package/es/domain/enum/index.js +1 -2
  8. package/es/domain/interfaces/repositories/index.js +1 -3
  9. package/es/domain/schema/index.js +1 -3
  10. package/es/frameworks/managers/ModuleFactory.js +24 -62
  11. package/es/frameworks/managers/ModuleManager.js +4 -20
  12. package/es/frameworks/sdk/IMSDK.js +11 -23
  13. package/es/infrastructure/adapters/index.js +1 -3
  14. package/es/infrastructure/api/BaseAPI.js +4 -5
  15. package/es/infrastructure/api/index.js +1 -3
  16. package/es/infrastructure/api/registry/getRegistryConfig.js +1 -5
  17. package/es/infrastructure/config/configRegistry.js +1 -8
  18. package/es/infrastructure/repositories/index.js +1 -3
  19. package/package.json +1 -1
  20. package/es/application/services/subscription/SubscriptionService.js +0 -36
  21. package/es/application/services/subscription/index.js +0 -2
  22. package/es/application/services/whatsAppPricing/WhatsAppPricingService.js +0 -21
  23. package/es/application/services/whatsAppPricing/index.js +0 -2
  24. package/es/core/constants/ModuleTypes.js +0 -5
  25. package/es/domain/dto/subscription/buyAddOnPackageRequest.js +0 -18
  26. package/es/domain/dto/subscription/getAddOnPackagesRequest.js +0 -15
  27. package/es/domain/dto/subscription/getLicenseDetailsRequest.js +0 -7
  28. package/es/domain/dto/subscription/index.js +0 -5
  29. package/es/domain/dto/subscription/modifyAddOnPackageRequest.js +0 -18
  30. package/es/domain/dto/whatsAppPricing/calculatePricingRequest.js +0 -14
  31. package/es/domain/dto/whatsAppPricing/index.js +0 -2
  32. package/es/domain/entities/AddOnPackage/AddOnPackage.js +0 -34
  33. package/es/domain/entities/AddOnPackage/index.js +0 -2
  34. package/es/domain/entities/LicenseDetails/LicenseDetails.js +0 -23
  35. package/es/domain/entities/LicenseDetails/index.js +0 -2
  36. package/es/domain/entities/WhatsAppPricingResult/WhatsAppPricingResult.js +0 -24
  37. package/es/domain/entities/WhatsAppPricingResult/index.js +0 -2
  38. package/es/domain/enum/subscription/AddOnSubscriptionStatus.js +0 -7
  39. package/es/domain/enum/subscription/index.js +0 -2
  40. package/es/domain/interfaces/repositories/subscription/ISubscriptionRepository.js +0 -35
  41. package/es/domain/interfaces/repositories/subscription/index.js +0 -2
  42. package/es/domain/interfaces/repositories/whatsAppPricing/IWhatsAppPricingRepository.js +0 -18
  43. package/es/domain/interfaces/repositories/whatsAppPricing/index.js +0 -2
  44. package/es/domain/schema/subscription/AddOnPackageSchema.js +0 -33
  45. package/es/domain/schema/subscription/AddOnSubscriptionSchema.js +0 -29
  46. package/es/domain/schema/subscription/LicenseDetailsSchema.js +0 -11
  47. package/es/domain/schema/subscription/index.js +0 -4
  48. package/es/domain/schema/whatsAppPricing/PricingCategorySchema.js +0 -11
  49. package/es/domain/schema/whatsAppPricing/WhatsAppPricingResultSchema.js +0 -21
  50. package/es/domain/schema/whatsAppPricing/index.js +0 -3
  51. package/es/frameworks/sdk/subscription/SubscriptionSDK.js +0 -29
  52. package/es/frameworks/sdk/subscription/index.js +0 -2
  53. package/es/frameworks/sdk/whatsAppPricing/WhatsAppPricingSDK.js +0 -27
  54. package/es/frameworks/sdk/whatsAppPricing/index.js +0 -2
  55. package/es/infrastructure/adapters/subscription/AddOnPackageAdapter.js +0 -25
  56. package/es/infrastructure/adapters/subscription/LicenseDetailsAdapter.js +0 -20
  57. package/es/infrastructure/adapters/subscription/index.js +0 -3
  58. package/es/infrastructure/adapters/whatsAppPricing/WhatsAppPricingResultAdapter.js +0 -22
  59. package/es/infrastructure/adapters/whatsAppPricing/index.js +0 -2
  60. package/es/infrastructure/api/registry/createPublicBaseUrl.js +0 -4
  61. package/es/infrastructure/api/registry/subscription/constructSubscriptionEndPoint.js +0 -10
  62. package/es/infrastructure/api/registry/subscription/index.js +0 -3
  63. package/es/infrastructure/api/registry/subscription/subscriptionAPIRegistry.js +0 -28
  64. package/es/infrastructure/api/registry/whatsAppPricing/constructWhatsAppPricingEndPoint.js +0 -5
  65. package/es/infrastructure/api/registry/whatsAppPricing/index.js +0 -2
  66. package/es/infrastructure/api/registry/whatsAppPricing/whatsAppPricingAPIRegistry.js +0 -13
  67. package/es/infrastructure/api/subscription/SubscriptionAPI.js +0 -44
  68. package/es/infrastructure/api/subscription/index.js +0 -2
  69. package/es/infrastructure/api/whatsAppPricing/WhatsAppPricingAPI.js +0 -14
  70. package/es/infrastructure/api/whatsAppPricing/index.js +0 -2
  71. package/es/infrastructure/repositories/subscription/SubscriptionRepository.js +0 -82
  72. package/es/infrastructure/repositories/subscription/index.js +0 -2
  73. package/es/infrastructure/repositories/whatsAppPricing/WhatsAppPricingRepository.js +0 -50
  74. package/es/infrastructure/repositories/whatsAppPricing/index.js +0 -2
@@ -1,50 +0,0 @@
1
- import IWhatsAppPricingRepository from '../../../domain/interfaces/repositories/whatsAppPricing/IWhatsAppPricingRepository';
2
- import { WhatsAppPricingResultAdapter } from '../../adapters';
3
- import { WhatsAppPricingAPI } from '../../api';
4
- import { ResponseTypes } from '../../../core/constants';
5
- export default class WhatsAppPricingRepository extends IWhatsAppPricingRepository {
6
- constructor() {
7
- let {
8
- whatsAppPricingAPI,
9
- whatsAppPricingResultAdapter
10
- } = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
11
- super();
12
- this.defaultAPI = new WhatsAppPricingAPI();
13
- this.customAPI = whatsAppPricingAPI;
14
- this.whatsAppPricingAPI = this.createAPIProxy(this.customAPI, this.defaultAPI);
15
- this.whatsAppPricingResultAdapter = whatsAppPricingResultAdapter || new WhatsAppPricingResultAdapter();
16
- }
17
-
18
- async invokeAPI(_ref) {
19
- let {
20
- operation,
21
- request,
22
- adapter,
23
- responseType
24
- } = _ref;
25
- return this.executeAPICall({
26
- operation,
27
- request,
28
- apiProxy: this.whatsAppPricingAPI,
29
- customAPI: this.customAPI,
30
- adapter,
31
- responseType
32
- });
33
- }
34
-
35
- async calculatePricing(request) {
36
- return this.invokeAPI({
37
- operation: 'calculatePricing',
38
- request,
39
- adapter: this.whatsAppPricingResultAdapter,
40
- responseType: ResponseTypes.SINGLE
41
- });
42
- }
43
-
44
- toJSON() {
45
- return {
46
- calculatePricing: this.calculatePricing.bind(this)
47
- };
48
- }
49
-
50
- }
@@ -1,2 +0,0 @@
1
- import WhatsAppPricingRepository from './WhatsAppPricingRepository';
2
- export { WhatsAppPricingRepository };