@gofynd/fdk-client-javascript 1.0.1 → 1.0.2

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 (134) hide show
  1. package/documentation/application/CART.md +251 -251
  2. package/documentation/application/CATALOG.md +414 -414
  3. package/documentation/application/CONTENT.md +15 -1
  4. package/documentation/application/ORDER.md +290 -290
  5. package/documentation/application/PAYMENT.md +255 -255
  6. package/documentation/application/POSCART.md +297 -297
  7. package/documentation/platform/CART.md +499 -499
  8. package/documentation/platform/CATALOG.md +3088 -2702
  9. package/documentation/platform/COMPANYPROFILE.md +201 -201
  10. package/documentation/platform/CONTENT.md +123 -1
  11. package/documentation/platform/ORDER.md +1233 -1158
  12. package/documentation/platform/PARTNER.md +7 -7
  13. package/documentation/platform/PAYMENT.md +83 -83
  14. package/package.json +1 -1
  15. package/sdk/application/ApplicationConfig.js +1 -1
  16. package/sdk/application/Cart/CartApplicationClient.js +619 -108
  17. package/sdk/application/Cart/CartApplicationModel.d.ts +7 -7
  18. package/sdk/application/Cart/CartApplicationModel.js +335 -335
  19. package/sdk/application/Catalog/CatalogApplicationClient.d.ts +1 -1
  20. package/sdk/application/Catalog/CatalogApplicationClient.js +730 -134
  21. package/sdk/application/Catalog/CatalogApplicationModel.d.ts +21 -21
  22. package/sdk/application/Catalog/CatalogApplicationModel.js +547 -547
  23. package/sdk/application/Common/CommonApplicationClient.js +48 -8
  24. package/sdk/application/Communication/CommunicationApplicationClient.js +75 -14
  25. package/sdk/application/Configuration/ConfigurationApplicationClient.d.ts +1 -1
  26. package/sdk/application/Configuration/ConfigurationApplicationClient.js +392 -66
  27. package/sdk/application/Content/ContentApplicationClient.js +444 -76
  28. package/sdk/application/Content/ContentApplicationModel.d.ts +1 -0
  29. package/sdk/application/Content/ContentApplicationModel.js +11 -1
  30. package/sdk/application/FileStorage/FileStorageApplicationClient.js +74 -12
  31. package/sdk/application/Lead/LeadApplicationClient.js +164 -30
  32. package/sdk/application/Logistic/LogisticApplicationClient.js +98 -16
  33. package/sdk/application/Order/OrderApplicationClient.d.ts +1 -1
  34. package/sdk/application/Order/OrderApplicationClient.js +287 -54
  35. package/sdk/application/Order/OrderApplicationModel.d.ts +19 -19
  36. package/sdk/application/Order/OrderApplicationModel.js +357 -357
  37. package/sdk/application/Payment/PaymentApplicationClient.js +961 -186
  38. package/sdk/application/Payment/PaymentApplicationModel.d.ts +3 -3
  39. package/sdk/application/Payment/PaymentApplicationModel.js +352 -352
  40. package/sdk/application/PosCart/PosCartApplicationClient.js +645 -114
  41. package/sdk/application/PosCart/PosCartApplicationModel.d.ts +15 -15
  42. package/sdk/application/PosCart/PosCartApplicationModel.js +389 -389
  43. package/sdk/application/Rewards/RewardsApplicationClient.js +168 -28
  44. package/sdk/application/Share/ShareApplicationClient.js +157 -32
  45. package/sdk/application/Theme/ThemeApplicationClient.js +94 -16
  46. package/sdk/application/User/UserApplicationClient.js +806 -148
  47. package/sdk/platform/Analytics/AnalyticsPlatformApplicationClient.d.ts +16 -8
  48. package/sdk/platform/Analytics/AnalyticsPlatformApplicationClient.js +191 -34
  49. package/sdk/platform/Analytics/AnalyticsPlatformClient.d.ts +8 -4
  50. package/sdk/platform/Analytics/AnalyticsPlatformClient.js +103 -16
  51. package/sdk/platform/AuditTrail/AuditTrailPlatformClient.d.ts +8 -4
  52. package/sdk/platform/AuditTrail/AuditTrailPlatformClient.js +103 -16
  53. package/sdk/platform/Billing/BillingPlatformClient.d.ts +24 -12
  54. package/sdk/platform/Billing/BillingPlatformClient.js +299 -54
  55. package/sdk/platform/Cart/CartPlatformApplicationClient.d.ts +34 -17
  56. package/sdk/platform/Cart/CartPlatformApplicationClient.js +409 -72
  57. package/sdk/platform/Cart/CartPlatformModel.d.ts +35 -35
  58. package/sdk/platform/Cart/CartPlatformModel.js +617 -617
  59. package/sdk/platform/Catalog/CatalogPlatformApplicationClient.d.ts +167 -114
  60. package/sdk/platform/Catalog/CatalogPlatformApplicationClient.js +1562 -453
  61. package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.d.ts +8 -8
  62. package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.js +39 -39
  63. package/sdk/platform/Catalog/CatalogPlatformClient.d.ts +314 -196
  64. package/sdk/platform/Catalog/CatalogPlatformClient.js +2459 -718
  65. package/sdk/platform/Catalog/CatalogPlatformModel.d.ts +103 -94
  66. package/sdk/platform/Catalog/CatalogPlatformModel.js +2063 -1797
  67. package/sdk/platform/Catalog/CatalogPlatformValidator.d.ts +17 -15
  68. package/sdk/platform/Catalog/CatalogPlatformValidator.js +95 -76
  69. package/sdk/platform/Common/CommonPlatformClient.d.ts +4 -2
  70. package/sdk/platform/Common/CommonPlatformClient.js +51 -8
  71. package/sdk/platform/Communication/CommunicationPlatformApplicationClient.d.ts +80 -40
  72. package/sdk/platform/Communication/CommunicationPlatformApplicationClient.js +1000 -168
  73. package/sdk/platform/Communication/CommunicationPlatformClient.d.ts +2 -1
  74. package/sdk/platform/Communication/CommunicationPlatformClient.js +28 -4
  75. package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.d.ts +27 -14
  76. package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.js +335 -54
  77. package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.d.ts +10 -10
  78. package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.js +278 -278
  79. package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.d.ts +56 -28
  80. package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.js +702 -118
  81. package/sdk/platform/Configuration/ConfigurationPlatformClient.d.ts +36 -18
  82. package/sdk/platform/Configuration/ConfigurationPlatformClient.js +457 -82
  83. package/sdk/platform/Content/ContentPlatformApplicationClient.d.ts +148 -67
  84. package/sdk/platform/Content/ContentPlatformApplicationClient.js +1724 -284
  85. package/sdk/platform/Content/ContentPlatformApplicationValidator.d.ts +1 -0
  86. package/sdk/platform/Content/ContentPlatformApplicationValidator.js +7 -0
  87. package/sdk/platform/Content/ContentPlatformModel.d.ts +4 -0
  88. package/sdk/platform/Content/ContentPlatformModel.js +43 -1
  89. package/sdk/platform/Discount/DiscountPlatformClient.d.ts +21 -10
  90. package/sdk/platform/Discount/DiscountPlatformClient.js +270 -44
  91. package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.d.ts +8 -4
  92. package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.js +102 -16
  93. package/sdk/platform/FileStorage/FileStoragePlatformClient.d.ts +12 -6
  94. package/sdk/platform/FileStorage/FileStoragePlatformClient.js +150 -24
  95. package/sdk/platform/Inventory/InventoryPlatformClient.d.ts +27 -14
  96. package/sdk/platform/Inventory/InventoryPlatformClient.js +316 -52
  97. package/sdk/platform/Lead/LeadPlatformApplicationClient.d.ts +26 -13
  98. package/sdk/platform/Lead/LeadPlatformApplicationClient.js +311 -52
  99. package/sdk/platform/Lead/LeadPlatformClient.d.ts +22 -11
  100. package/sdk/platform/Lead/LeadPlatformClient.js +266 -44
  101. package/sdk/platform/OAuthClient.js +8 -8
  102. package/sdk/platform/Order/OrderPlatformApplicationClient.d.ts +6 -3
  103. package/sdk/platform/Order/OrderPlatformApplicationClient.js +78 -14
  104. package/sdk/platform/Order/OrderPlatformClient.d.ts +95 -43
  105. package/sdk/platform/Order/OrderPlatformClient.js +1062 -180
  106. package/sdk/platform/Order/OrderPlatformModel.d.ts +64 -60
  107. package/sdk/platform/Order/OrderPlatformModel.js +1481 -1425
  108. package/sdk/platform/Order/OrderPlatformValidator.js +5 -0
  109. package/sdk/platform/Partner/PartnerPlatformApplicationClient.d.ts +4 -2
  110. package/sdk/platform/Partner/PartnerPlatformApplicationClient.js +52 -8
  111. package/sdk/platform/Partner/PartnerPlatformModel.d.ts +1 -1
  112. package/sdk/platform/Partner/PartnerPlatformModel.js +8 -8
  113. package/sdk/platform/Payment/PaymentPlatformApplicationClient.d.ts +22 -11
  114. package/sdk/platform/Payment/PaymentPlatformApplicationClient.js +287 -56
  115. package/sdk/platform/Payment/PaymentPlatformClient.d.ts +21 -11
  116. package/sdk/platform/Payment/PaymentPlatformClient.js +263 -48
  117. package/sdk/platform/Payment/PaymentPlatformModel.js +122 -122
  118. package/sdk/platform/PlatformApplicationClient.d.ts +2959 -2787
  119. package/sdk/platform/PlatformApplicationClient.js +3420 -3212
  120. package/sdk/platform/PlatformClient.d.ts +2959 -2787
  121. package/sdk/platform/PlatformClient.js +3420 -3212
  122. package/sdk/platform/Rewards/RewardsPlatformApplicationClient.d.ts +26 -13
  123. package/sdk/platform/Rewards/RewardsPlatformApplicationClient.js +308 -54
  124. package/sdk/platform/Share/SharePlatformApplicationClient.d.ts +8 -4
  125. package/sdk/platform/Share/SharePlatformApplicationClient.js +94 -16
  126. package/sdk/platform/Theme/ThemePlatformApplicationClient.d.ts +47 -23
  127. package/sdk/platform/Theme/ThemePlatformApplicationClient.js +571 -96
  128. package/sdk/platform/User/UserPlatformApplicationClient.d.ts +24 -12
  129. package/sdk/platform/User/UserPlatformApplicationClient.js +296 -48
  130. package/sdk/platform/Webhook/WebhookPlatformClient.d.ts +12 -6
  131. package/sdk/platform/Webhook/WebhookPlatformClient.js +157 -30
  132. package/sdk/public/Configuration/ConfigurationPublicClient.js +51 -8
  133. package/sdk/public/Inventory/InventoryPublicClient.js +149 -26
  134. package/sdk/public/Webhook/WebhookPublicClient.js +51 -10
@@ -191,27 +191,27 @@ Success
191
191
 
192
192
 
193
193
 
194
- #### [APIError](#APIError)
194
+ #### [RemoveProxyResponse](#RemoveProxyResponse)
195
195
 
196
196
  | Properties | Type | Nullable | Description |
197
197
  | ---------- | ---- | -------- | ----------- |
198
- | code | string | no | |
199
198
  | message | string | no | |
200
- | info | string | no | Error code description link |
201
- | request_id | string | no | |
202
- | meta | string | no | |
199
+ | data | string | no | |
203
200
 
204
201
  ---
205
202
 
206
203
 
207
204
 
208
205
 
209
- #### [RemoveProxyResponse](#RemoveProxyResponse)
206
+ #### [APIError](#APIError)
210
207
 
211
208
  | Properties | Type | Nullable | Description |
212
209
  | ---------- | ---- | -------- | ----------- |
210
+ | code | string | no | |
213
211
  | message | string | no | |
214
- | data | string | no | |
212
+ | info | string | no | Error code description link |
213
+ | request_id | string | no | |
214
+ | meta | string | no | |
215
215
 
216
216
  ---
217
217
 
@@ -2851,12 +2851,12 @@ Success. Returns true/false for user cod option for payment. Check the example s
2851
2851
 
2852
2852
  | Properties | Type | Nullable | Description |
2853
2853
  | ---------- | ---- | -------- | ----------- |
2854
- | excluded_fields | [string] | yes | List of all excluded options with their Details. |
2855
2854
  | created | boolean | yes | Response is created or not |
2856
- | aggregators | [string] | no | List of all speceific Payment options with their Details. |
2855
+ | excluded_fields | [string] | yes | List of all excluded options with their Details. |
2857
2856
  | success | boolean | yes | Response is successful or not |
2858
- | app_id | string | yes | Application Id to which Payment config Mapped |
2857
+ | aggregators | [string] | no | List of all speceific Payment options with their Details. |
2859
2858
  | display_fields | [string] | yes | List of all included options with their Details. |
2859
+ | app_id | string | yes | Application Id to which Payment config Mapped |
2860
2860
 
2861
2861
  ---
2862
2862
 
@@ -2880,11 +2880,11 @@ Success. Returns true/false for user cod option for payment. Check the example s
2880
2880
 
2881
2881
  | Properties | Type | Nullable | Description |
2882
2882
  | ---------- | ---- | -------- | ----------- |
2883
- | secret | string | yes | Secret Key of the payment aggregator |
2884
2883
  | config_type | string | yes | Config Type of the aggregator |
2885
- | key | string | yes | Api key of the payment aggregator |
2886
2884
  | merchant_salt | string | yes | Merchant key of the payment aggregator |
2885
+ | secret | string | yes | Secret Key of the payment aggregator |
2887
2886
  | is_active | boolean | no | Enable/ Disable Flag |
2887
+ | key | string | yes | Api key of the payment aggregator |
2888
2888
 
2889
2889
  ---
2890
2890
 
@@ -2944,8 +2944,8 @@ Success. Returns true/false for user cod option for payment. Check the example s
2944
2944
 
2945
2945
  | Properties | Type | Nullable | Description |
2946
2946
  | ---------- | ---- | -------- | ----------- |
2947
- | small | string | yes | smalll |
2948
2947
  | large | string | yes | large |
2948
+ | small | string | yes | smalll |
2949
2949
 
2950
2950
  ---
2951
2951
 
@@ -2957,8 +2957,8 @@ Success. Returns true/false for user cod option for payment. Check the example s
2957
2957
  | Properties | Type | Nullable | Description |
2958
2958
  | ---------- | ---- | -------- | ----------- |
2959
2959
  | code | string | no | code |
2960
- | logos | [PaymentModeLogo](#PaymentModeLogo) | no | logos |
2961
2960
  | package_name | string | no | package_name |
2961
+ | logos | [PaymentModeLogo](#PaymentModeLogo) | no | logos |
2962
2962
  | display_name | string | no | display_name |
2963
2963
 
2964
2964
  ---
@@ -2970,8 +2970,8 @@ Success. Returns true/false for user cod option for payment. Check the example s
2970
2970
 
2971
2971
  | Properties | Type | Nullable | Description |
2972
2972
  | ---------- | ---- | -------- | ----------- |
2973
- | code | string | no | code |
2974
2973
  | package_name | string | no | package_name |
2974
+ | code | string | no | code |
2975
2975
 
2976
2976
  ---
2977
2977
 
@@ -2982,39 +2982,39 @@ Success. Returns true/false for user cod option for payment. Check the example s
2982
2982
 
2983
2983
  | Properties | Type | Nullable | Description |
2984
2984
  | ---------- | ---- | -------- | ----------- |
2985
+ | card_brand_image | string | no | card_brand_image |
2986
+ | aggregator_name | string | yes | aggregator_name |
2987
+ | remaining_limit | number | no | Remaining limit |
2988
+ | logo_url | [PaymentModeLogo](#PaymentModeLogo) | no | Logo |
2989
+ | retry_count | number | no | retry_count |
2985
2990
  | merchant_code | string | no | merchant code |
2986
- | card_token | string | no | card_token |
2987
- | nickname | string | no | nickname |
2988
- | intent_app | [[IntentApp](#IntentApp)] | no | intent_app |
2989
- | timeout | number | no | timeout |
2990
- | card_isin | string | no | card_isin |
2991
- | intent_flow | boolean | no | intent_flow |
2992
- | cod_limit_per_order | number | no | Cod limit per order |
2993
- | intent_app_error_dict_list | [[IntentAppErrorList](#IntentAppErrorList)] | no | intent_app_error_dict_list |
2991
+ | card_type | string | no | card_type |
2992
+ | display_name | string | no | display name |
2993
+ | card_issuer | string | no | card_issuer |
2994
2994
  | cod_limit | number | no | cod limit |
2995
2995
  | expired | boolean | no | expired |
2996
- | exp_year | number | no | exp_year |
2997
- | retry_count | number | no | retry_count |
2996
+ | intent_app | [[IntentApp](#IntentApp)] | no | intent_app |
2997
+ | name | string | no | name |
2998
+ | card_fingerprint | string | no | card_fingerprint |
2999
+ | intent_flow | boolean | no | intent_flow |
3000
+ | fynd_vpa | string | no | fynd_vpa |
3001
+ | nickname | string | no | nickname |
3002
+ | display_priority | number | no | Dispaly Priority |
2998
3003
  | card_number | string | no | card_number |
3004
+ | card_id | string | no | card_id |
3005
+ | intent_app_error_dict_list | [[IntentAppErrorList](#IntentAppErrorList)] | no | intent_app_error_dict_list |
2999
3006
  | card_name | string | no | card_name |
3000
- | card_brand | string | no | card_brand |
3001
- | compliant_with_tokenisation_guidelines | boolean | no | If card is tokenised or not |
3007
+ | cod_limit_per_order | number | no | Cod limit per order |
3002
3008
  | code | string | no | code |
3003
- | aggregator_name | string | yes | aggregator_name |
3004
- | card_fingerprint | string | no | card_fingerprint |
3005
3009
  | card_reference | string | no | card_reference |
3006
- | card_issuer | string | no | card_issuer |
3010
+ | compliant_with_tokenisation_guidelines | boolean | no | If card is tokenised or not |
3011
+ | card_brand | string | no | card_brand |
3012
+ | exp_year | number | no | exp_year |
3007
3013
  | exp_month | number | no | exp_month |
3008
- | card_type | string | no | card_type |
3014
+ | card_token | string | no | card_token |
3009
3015
  | intent_app_error_list | [string] | no | intent_app_error_list |
3010
- | card_brand_image | string | no | card_brand_image |
3011
- | display_priority | number | no | Dispaly Priority |
3012
- | remaining_limit | number | no | Remaining limit |
3013
- | display_name | string | no | display name |
3014
- | fynd_vpa | string | no | fynd_vpa |
3015
- | logo_url | [PaymentModeLogo](#PaymentModeLogo) | no | Logo |
3016
- | name | string | no | name |
3017
- | card_id | string | no | card_id |
3016
+ | card_isin | string | no | card_isin |
3017
+ | timeout | number | no | timeout |
3018
3018
 
3019
3019
  ---
3020
3020
 
@@ -3025,15 +3025,15 @@ Success. Returns true/false for user cod option for payment. Check the example s
3025
3025
 
3026
3026
  | Properties | Type | Nullable | Description |
3027
3027
  | ---------- | ---- | -------- | ----------- |
3028
- | add_card_enabled | boolean | no | Annonymous card flag |
3029
- | display_priority | number | yes | Dispaly Priority |
3028
+ | aggregator_name | string | no | Dispaly Priority |
3029
+ | list | [[PaymentModeList](#PaymentModeList)] | no | Payment mode |
3030
3030
  | anonymous_enable | boolean | no | Annonymous card flag |
3031
3031
  | save_card | boolean | no | Card save or not |
3032
- | display_name | string | yes | Payment mode display name |
3033
- | aggregator_name | string | no | Dispaly Priority |
3032
+ | add_card_enabled | boolean | no | Annonymous card flag |
3034
3033
  | name | string | yes | Payment mode name |
3034
+ | display_priority | number | yes | Dispaly Priority |
3035
+ | display_name | string | yes | Payment mode display name |
3035
3036
  | is_pay_by_card_pl | boolean | no | This flag will be true in case of Payment link payment through card |
3036
- | list | [[PaymentModeList](#PaymentModeList)] | no | Payment mode |
3037
3037
 
3038
3038
  ---
3039
3039
 
@@ -3055,8 +3055,8 @@ Success. Returns true/false for user cod option for payment. Check the example s
3055
3055
 
3056
3056
  | Properties | Type | Nullable | Description |
3057
3057
  | ---------- | ---- | -------- | ----------- |
3058
- | payment_options | [PaymentOptions](#PaymentOptions) | yes | Payment options |
3059
3058
  | success | boolean | yes | Response is successful or not |
3059
+ | payment_options | [PaymentOptions](#PaymentOptions) | yes | Payment options |
3060
3060
 
3061
3061
  ---
3062
3062
 
@@ -3068,12 +3068,12 @@ Success. Returns true/false for user cod option for payment. Check the example s
3068
3068
  | Properties | Type | Nullable | Description |
3069
3069
  | ---------- | ---- | -------- | ----------- |
3070
3070
  | is_default | boolean | yes | default or not |
3071
- | transfer_type | string | yes | transafer type |
3072
- | customers | string | yes | customers details object |
3073
- | more_attributes | string | yes | bank details object |
3074
3071
  | unique_transfer_no | string | yes | display priority of the payment mode |
3072
+ | transfer_type | string | yes | transafer type |
3075
3073
  | is_active | boolean | yes | Enable/DIsable Flag Payout |
3076
3074
  | payouts_aggregators | [string] | yes | payout aggregator object |
3075
+ | more_attributes | string | yes | bank details object |
3076
+ | customers | string | yes | customers details object |
3077
3077
 
3078
3078
  ---
3079
3079
 
@@ -3084,16 +3084,16 @@ Success. Returns true/false for user cod option for payment. Check the example s
3084
3084
 
3085
3085
  | Properties | Type | Nullable | Description |
3086
3086
  | ---------- | ---- | -------- | ----------- |
3087
- | account_type | string | yes | |
3088
- | city | string | no | |
3089
- | country | string | no | |
3090
- | account_holder | string | no | |
3091
3087
  | state | string | no | |
3092
- | account_no | string | no | |
3093
3088
  | pincode | number | no | |
3094
3089
  | branch_name | string | no | |
3095
- | ifsc_code | string | yes | |
3090
+ | account_holder | string | no | |
3091
+ | city | string | no | |
3096
3092
  | bank_name | string | no | |
3093
+ | ifsc_code | string | yes | |
3094
+ | country | string | no | |
3095
+ | account_no | string | no | |
3096
+ | account_type | string | yes | |
3097
3097
 
3098
3098
  ---
3099
3099
 
@@ -3104,11 +3104,11 @@ Success. Returns true/false for user cod option for payment. Check the example s
3104
3104
 
3105
3105
  | Properties | Type | Nullable | Description |
3106
3106
  | ---------- | ---- | -------- | ----------- |
3107
+ | bank_details | [PayoutBankDetails](#PayoutBankDetails) | yes | payout bank details object |
3107
3108
  | unique_external_id | string | yes | Unique Id of Payout |
3108
- | users | string | yes | payout users object |
3109
3109
  | transfer_type | string | yes | transafer type |
3110
3110
  | aggregator | string | yes | Aggregator Name |
3111
- | bank_details | [PayoutBankDetails](#PayoutBankDetails) | yes | payout bank details object |
3111
+ | users | string | yes | payout users object |
3112
3112
  | is_active | boolean | yes | Enable/Disable Flag Payout |
3113
3113
 
3114
3114
  ---
@@ -3120,16 +3120,16 @@ Success. Returns true/false for user cod option for payment. Check the example s
3120
3120
 
3121
3121
  | Properties | Type | Nullable | Description |
3122
3122
  | ---------- | ---- | -------- | ----------- |
3123
- | payment_status | string | yes | status of payment |
3123
+ | bank_details | string | yes | payout bank_details object |
3124
3124
  | payouts | string | yes | payout object |
3125
- | users | string | yes | users details object |
3126
- | transfer_type | string | yes | transfer type |
3127
3125
  | created | boolean | yes | created flag |
3128
- | aggregator | string | yes | Aggregator Name |
3129
3126
  | unique_transfer_no | string | yes | unique transfer no |
3130
- | bank_details | string | yes | payout bank_details object |
3131
- | is_active | boolean | yes | Enable/DIsable Flag Payout |
3127
+ | transfer_type | string | yes | transfer type |
3132
3128
  | success | boolean | yes | Response is successful or not |
3129
+ | users | string | yes | users details object |
3130
+ | aggregator | string | yes | Aggregator Name |
3131
+ | is_active | boolean | yes | Enable/DIsable Flag Payout |
3132
+ | payment_status | string | yes | status of payment |
3133
3133
 
3134
3134
  ---
3135
3135
 
@@ -3153,9 +3153,9 @@ Success. Returns true/false for user cod option for payment. Check the example s
3153
3153
 
3154
3154
  | Properties | Type | Nullable | Description |
3155
3155
  | ---------- | ---- | -------- | ----------- |
3156
- | unique_external_id | string | yes | Unique Id of Payout |
3157
3156
  | is_default | boolean | yes | Enable/Disable Default Payout |
3158
3157
  | is_active | boolean | yes | Enable/Disable Flag Payout |
3158
+ | unique_external_id | string | yes | Unique Id of Payout |
3159
3159
 
3160
3160
  ---
3161
3161
 
@@ -3200,8 +3200,8 @@ Success. Returns true/false for user cod option for payment. Check the example s
3200
3200
 
3201
3201
  | Properties | Type | Nullable | Description |
3202
3202
  | ---------- | ---- | -------- | ----------- |
3203
- | aggregator | string | yes | Aggregator Name |
3204
3203
  | config | string | yes | Aggregator Config |
3204
+ | aggregator | string | yes | Aggregator Name |
3205
3205
  | success | boolean | yes | Response is successful or not |
3206
3206
 
3207
3207
  ---
@@ -3263,11 +3263,11 @@ Success. Returns true/false for user cod option for payment. Check the example s
3263
3263
 
3264
3264
  | Properties | Type | Nullable | Description |
3265
3265
  | ---------- | ---- | -------- | ----------- |
3266
- | account_holder | string | yes | |
3267
- | account_no | string | yes | |
3268
3266
  | branch_name | string | yes | |
3269
- | ifsc_code | string | yes | |
3267
+ | account_holder | string | yes | |
3270
3268
  | bank_name | string | yes | |
3269
+ | ifsc_code | string | yes | |
3270
+ | account_no | string | yes | |
3271
3271
 
3272
3272
  ---
3273
3273
 
@@ -3290,9 +3290,9 @@ Success. Returns true/false for user cod option for payment. Check the example s
3290
3290
 
3291
3291
  | Properties | Type | Nullable | Description |
3292
3292
  | ---------- | ---- | -------- | ----------- |
3293
- | bank_name | string | yes | Bank Name Of Account |
3294
- | branch_name | string | yes | Branch Name Of Account |
3295
3293
  | success | boolean | no | Response is successful or not |
3294
+ | branch_name | string | yes | Branch Name Of Account |
3295
+ | bank_name | string | yes | Bank Name Of Account |
3296
3296
 
3297
3297
  ---
3298
3298
 
@@ -3303,25 +3303,25 @@ Success. Returns true/false for user cod option for payment. Check the example s
3303
3303
 
3304
3304
  | Properties | Type | Nullable | Description |
3305
3305
  | ---------- | ---- | -------- | ----------- |
3306
- | title | string | yes | Title Of Account |
3307
- | email | string | yes | EMail of User |
3308
- | beneficiary_id | string | yes | Benenficiary Id |
3309
- | id | number | yes | |
3310
- | delights_user_name | string | no | User Id Who filled the Beneficiary |
3311
3306
  | transfer_mode | string | yes | Transfer Mode Of Account |
3312
- | mobile | string | no | MObile no of User |
3307
+ | address | string | yes | Address of User |
3308
+ | display_name | string | yes | Display Name Of Account |
3309
+ | delights_user_name | string | no | User Id Who filled the Beneficiary |
3310
+ | created_on | string | yes | Creation Date of Beneficiary |
3311
+ | email | string | yes | EMail of User |
3313
3312
  | comment | string | no | Remarks |
3313
+ | branch_name | string | no | Branch Name Of Account |
3314
3314
  | account_no | string | yes | Account Number |
3315
- | ifsc_code | string | yes | Ifsc Code Of Account |
3316
3315
  | subtitle | string | yes | SHort Title Of Account |
3317
- | account_holder | string | yes | Account Holder Name |
3318
- | created_on | string | yes | Creation Date of Beneficiary |
3319
- | display_name | string | yes | Display Name Of Account |
3320
- | address | string | yes | Address of User |
3321
3316
  | modified_on | string | yes | MOdification Date of Beneficiary |
3322
- | branch_name | string | no | Branch Name Of Account |
3323
- | is_active | boolean | yes | Boolean Flag whether Beneficiary set or not |
3324
3317
  | bank_name | string | yes | Bank Name Of Account |
3318
+ | mobile | string | no | MObile no of User |
3319
+ | account_holder | string | yes | Account Holder Name |
3320
+ | beneficiary_id | string | yes | Benenficiary Id |
3321
+ | id | number | yes | |
3322
+ | is_active | boolean | yes | Boolean Flag whether Beneficiary set or not |
3323
+ | ifsc_code | string | yes | Ifsc Code Of Account |
3324
+ | title | string | yes | Title Of Account |
3325
3325
 
3326
3326
  ---
3327
3327
 
@@ -3345,10 +3345,10 @@ Success. Returns true/false for user cod option for payment. Check the example s
3345
3345
  | Properties | Type | Nullable | Description |
3346
3346
  | ---------- | ---- | -------- | ----------- |
3347
3347
  | extra_meta | string | no | |
3348
- | order_id | string | no | |
3349
- | payment_id | string | no | |
3350
- | current_status | string | no | |
3351
3348
  | payment_gateway | string | no | |
3349
+ | current_status | string | no | |
3350
+ | payment_id | string | no | |
3351
+ | order_id | string | no | |
3352
3352
 
3353
3353
  ---
3354
3354
 
@@ -3360,9 +3360,9 @@ Success. Returns true/false for user cod option for payment. Check the example s
3360
3360
  | Properties | Type | Nullable | Description |
3361
3361
  | ---------- | ---- | -------- | ----------- |
3362
3362
  | name | string | no | Payment mode name |
3363
- | meta | [MultiTenderPaymentMeta](#MultiTenderPaymentMeta) | no | |
3364
3363
  | amount | number | yes | Payment amount |
3365
3364
  | mode | string | yes | |
3365
+ | meta | [MultiTenderPaymentMeta](#MultiTenderPaymentMeta) | no | |
3366
3366
 
3367
3367
  ---
3368
3368
 
@@ -3385,9 +3385,9 @@ Success. Returns true/false for user cod option for payment. Check the example s
3385
3385
 
3386
3386
  | Properties | Type | Nullable | Description |
3387
3387
  | ---------- | ---- | -------- | ----------- |
3388
- | order_id | string | yes | Unique order id |
3389
3388
  | message | string | yes | Message |
3390
3389
  | success | boolean | yes | Payment confirmation updated or not. |
3390
+ | order_id | string | yes | Unique order id |
3391
3391
 
3392
3392
  ---
3393
3393
 
@@ -3398,9 +3398,9 @@ Success. Returns true/false for user cod option for payment. Check the example s
3398
3398
 
3399
3399
  | Properties | Type | Nullable | Description |
3400
3400
  | ---------- | ---- | -------- | ----------- |
3401
+ | remaining_limit | number | yes | Remaining Limit for COD of User |
3401
3402
  | user_id | string | yes | Payment mode name |
3402
3403
  | usages | number | yes | Used COD limit from the user Limit |
3403
- | remaining_limit | number | yes | Remaining Limit for COD of User |
3404
3404
  | is_active | boolean | yes | COD option is active or not |
3405
3405
  | limit | number | yes | Total Limit of user |
3406
3406
 
@@ -3413,8 +3413,8 @@ Success. Returns true/false for user cod option for payment. Check the example s
3413
3413
 
3414
3414
  | Properties | Type | Nullable | Description |
3415
3415
  | ---------- | ---- | -------- | ----------- |
3416
- | user_cod_data | [CODdata](#CODdata) | yes | User COD Data |
3417
3416
  | success | boolean | yes | Response is successful or not |
3417
+ | user_cod_data | [CODdata](#CODdata) | yes | User COD Data |
3418
3418
 
3419
3419
  ---
3420
3420
 
@@ -3425,9 +3425,9 @@ Success. Returns true/false for user cod option for payment. Check the example s
3425
3425
 
3426
3426
  | Properties | Type | Nullable | Description |
3427
3427
  | ---------- | ---- | -------- | ----------- |
3428
- | mobileno | string | yes | Mobile No. of User |
3429
3428
  | merchant_user_id | string | yes | Merchant User id |
3430
3429
  | is_active | boolean | yes | either true or false |
3430
+ | mobileno | string | yes | Mobile No. of User |
3431
3431
 
3432
3432
  ---
3433
3433
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gofynd/fdk-client-javascript",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -40,7 +40,7 @@ class ApplicationConfig {
40
40
  throw new FDKClientValidationError(error);
41
41
  }
42
42
  if (!this.applicationID) {
43
- Logger({ type: "ERROR", message: "No Application ID Present" });
43
+ Logger({ level: "ERROR", message: "No Application ID Present" });
44
44
  throw new FDKInvalidCredentialError("No Application ID Present");
45
45
  }
46
46
  if (!this.applicationToken) {