@gofynd/fdk-client-javascript 1.6.4 → 3.0.0-beta.1
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/README.md +1 -1
- package/package.json +1 -1
- package/sdk/application/ApplicationClient.d.ts +0 -2
- package/sdk/application/ApplicationClient.js +0 -2
- package/sdk/application/Cart/CartApplicationClient.d.ts +113 -93
- package/sdk/application/Cart/CartApplicationClient.js +270 -139
- package/sdk/application/Catalog/CatalogApplicationClient.d.ts +110 -110
- package/sdk/application/Catalog/CatalogApplicationClient.js +122 -138
- package/sdk/application/Common/CommonApplicationClient.d.ts +4 -4
- package/sdk/application/Common/CommonApplicationClient.js +3 -3
- package/sdk/application/Communication/CommunicationApplicationClient.d.ts +43 -3
- package/sdk/application/Communication/CommunicationApplicationClient.js +190 -3
- package/sdk/application/Configuration/ConfigurationApplicationClient.d.ts +71 -36
- package/sdk/application/Configuration/ConfigurationApplicationClient.js +103 -29
- package/sdk/application/Content/ContentApplicationClient.d.ts +51 -21
- package/sdk/application/Content/ContentApplicationClient.js +197 -36
- package/sdk/application/FileStorage/FileStorageApplicationClient.d.ts +6 -6
- package/sdk/application/FileStorage/FileStorageApplicationClient.js +3 -3
- package/sdk/application/Lead/LeadApplicationClient.d.ts +3 -3
- package/sdk/application/Lead/LeadApplicationClient.js +3 -3
- package/sdk/application/Logistic/LogisticApplicationClient.d.ts +79 -64
- package/sdk/application/Logistic/LogisticApplicationClient.js +246 -264
- package/sdk/application/Order/OrderApplicationClient.d.ts +44 -24
- package/sdk/application/Order/OrderApplicationClient.js +140 -21
- package/sdk/application/Payment/PaymentApplicationClient.d.ts +211 -111
- package/sdk/application/Payment/PaymentApplicationClient.js +610 -109
- package/sdk/application/Rewards/RewardsApplicationClient.d.ts +13 -13
- package/sdk/application/Rewards/RewardsApplicationClient.js +7 -7
- package/sdk/application/Share/ShareApplicationClient.d.ts +7 -7
- package/sdk/application/Share/ShareApplicationClient.js +14 -14
- package/sdk/application/Theme/ThemeApplicationClient.d.ts +23 -3
- package/sdk/application/Theme/ThemeApplicationClient.js +103 -5
- package/sdk/application/User/UserApplicationClient.d.ts +13 -23
- package/sdk/application/User/UserApplicationClient.js +9 -57
- package/sdk/application/Webhook/WebhookApplicationClient.d.ts +4 -4
- package/sdk/application/Webhook/WebhookApplicationClient.js +3 -3
- package/sdk/partner/Authorization/AuthorizationPartnerClient.d.ts +66 -0
- package/sdk/partner/Authorization/AuthorizationPartnerClient.js +431 -0
- package/sdk/partner/Authorization/AuthorizationPartnerModel.d.ts +231 -0
- package/sdk/partner/Authorization/AuthorizationPartnerModel.js +152 -0
- package/sdk/partner/Authorization/AuthorizationPartnerValidator.d.ts +8 -0
- package/sdk/partner/Authorization/AuthorizationPartnerValidator.js +39 -0
- package/sdk/partner/Catalog/CatalogPartnerClient.d.ts +26 -0
- package/sdk/partner/Catalog/CatalogPartnerClient.js +173 -0
- package/sdk/partner/Catalog/CatalogPartnerModel.d.ts +238 -0
- package/sdk/partner/Catalog/CatalogPartnerModel.js +248 -0
- package/sdk/partner/Catalog/CatalogPartnerValidator.d.ts +5 -0
- package/sdk/partner/Catalog/CatalogPartnerValidator.js +19 -0
- package/sdk/partner/FileStorage/FileStoragePartnerClient.d.ts +12 -22
- package/sdk/partner/FileStorage/FileStoragePartnerClient.js +12 -87
- package/sdk/partner/FileStorage/FileStoragePartnerModel.d.ts +33 -99
- package/sdk/partner/FileStorage/FileStoragePartnerModel.js +25 -84
- package/sdk/partner/FileStorage/FileStoragePartnerValidator.d.ts +0 -1
- package/sdk/partner/FileStorage/FileStoragePartnerValidator.js +4 -10
- package/sdk/partner/Lead/LeadPartnerClient.d.ts +5 -5
- package/sdk/partner/Lead/LeadPartnerClient.js +4 -4
- package/sdk/partner/Lead/LeadPartnerModel.d.ts +100 -49
- package/sdk/partner/Lead/LeadPartnerModel.js +100 -74
- package/sdk/partner/Lead/LeadPartnerValidator.js +1 -1
- package/sdk/partner/Logistics/LogisticsPartnerClient.d.ts +33 -160
- package/sdk/partner/Logistics/LogisticsPartnerClient.js +66 -1180
- package/sdk/partner/Logistics/LogisticsPartnerModel.d.ts +288 -1685
- package/sdk/partner/Logistics/LogisticsPartnerModel.js +226 -824
- package/sdk/partner/Logistics/LogisticsPartnerValidator.d.ts +1 -13
- package/sdk/partner/Logistics/LogisticsPartnerValidator.js +14 -141
- package/sdk/partner/PartnerClient.d.ts +6 -0
- package/sdk/partner/PartnerClient.js +9 -0
- package/sdk/partner/Payment/PaymentPartnerClient.d.ts +116 -0
- package/sdk/partner/Payment/PaymentPartnerClient.js +857 -0
- package/sdk/partner/Payment/PaymentPartnerModel.d.ts +388 -0
- package/sdk/partner/Payment/PaymentPartnerModel.js +442 -0
- package/sdk/partner/Payment/PaymentPartnerValidator.d.ts +14 -0
- package/sdk/partner/Payment/PaymentPartnerValidator.js +74 -0
- package/sdk/partner/Theme/ThemePartnerClient.d.ts +63 -21
- package/sdk/partner/Theme/ThemePartnerClient.js +396 -71
- package/sdk/partner/Theme/ThemePartnerModel.d.ts +104 -72
- package/sdk/partner/Theme/ThemePartnerModel.js +101 -75
- package/sdk/partner/Theme/ThemePartnerValidator.d.ts +5 -1
- package/sdk/partner/Theme/ThemePartnerValidator.js +42 -12
- package/sdk/partner/Webhook/WebhookPartnerClient.d.ts +18 -18
- package/sdk/partner/Webhook/WebhookPartnerClient.js +18 -18
- package/sdk/partner/Webhook/WebhookPartnerModel.d.ts +191 -670
- package/sdk/partner/Webhook/WebhookPartnerModel.js +159 -268
- package/sdk/partner/Webhook/WebhookPartnerValidator.js +3 -3
- package/sdk/partner/index.d.ts +3 -0
- package/sdk/partner/index.js +6 -0
- package/sdk/platform/Analytics/AnalyticsPlatformApplicationValidator.d.ts +1 -4
- package/sdk/platform/Analytics/AnalyticsPlatformApplicationValidator.js +1 -1
- package/sdk/platform/Analytics/AnalyticsPlatformModel.d.ts +5 -0
- package/sdk/platform/Analytics/AnalyticsPlatformModel.js +3 -1
- package/sdk/platform/AuditTrail/AuditTrailPlatformClient.d.ts +32 -2
- package/sdk/platform/AuditTrail/AuditTrailPlatformClient.js +243 -3
- package/sdk/platform/AuditTrail/AuditTrailPlatformModel.d.ts +145 -49
- package/sdk/platform/AuditTrail/AuditTrailPlatformModel.js +171 -20
- package/sdk/platform/AuditTrail/AuditTrailPlatformValidator.d.ts +39 -1
- package/sdk/platform/AuditTrail/AuditTrailPlatformValidator.js +35 -0
- package/sdk/platform/Billing/BillingPlatformClient.d.ts +406 -15
- package/sdk/platform/Billing/BillingPlatformClient.js +3214 -76
- package/sdk/platform/Billing/BillingPlatformModel.d.ts +3798 -459
- package/sdk/platform/Billing/BillingPlatformModel.js +2577 -342
- package/sdk/platform/Billing/BillingPlatformValidator.d.ts +465 -24
- package/sdk/platform/Billing/BillingPlatformValidator.js +490 -14
- package/sdk/platform/Cart/CartPlatformApplicationClient.d.ts +284 -205
- package/sdk/platform/Cart/CartPlatformApplicationClient.js +671 -553
- package/sdk/platform/Cart/CartPlatformApplicationValidator.d.ts +165 -165
- package/sdk/platform/Cart/CartPlatformApplicationValidator.js +108 -132
- package/sdk/platform/Cart/CartPlatformModel.d.ts +3136 -4788
- package/sdk/platform/Cart/CartPlatformModel.js +2850 -2031
- package/sdk/platform/Catalog/CatalogPlatformApplicationClient.d.ts +1015 -419
- package/sdk/platform/Catalog/CatalogPlatformApplicationClient.js +6450 -2010
- package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.d.ts +1121 -230
- package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.js +919 -127
- package/sdk/platform/Catalog/CatalogPlatformClient.d.ts +372 -574
- package/sdk/platform/Catalog/CatalogPlatformClient.js +1238 -1317
- package/sdk/platform/Catalog/CatalogPlatformModel.d.ts +8351 -9825
- package/sdk/platform/Catalog/CatalogPlatformModel.js +9662 -6881
- package/sdk/platform/Catalog/CatalogPlatformValidator.d.ts +288 -235
- package/sdk/platform/Catalog/CatalogPlatformValidator.js +241 -183
- package/sdk/platform/Common/CommonPlatformClient.d.ts +5 -6
- package/sdk/platform/Common/CommonPlatformClient.js +5 -6
- package/sdk/platform/Common/CommonPlatformModel.d.ts +9 -9
- package/sdk/platform/Common/CommonPlatformModel.js +6 -6
- package/sdk/platform/Communication/CommunicationPlatformApplicationClient.d.ts +374 -234
- package/sdk/platform/Communication/CommunicationPlatformApplicationClient.js +875 -583
- package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.d.ts +170 -139
- package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.js +145 -126
- package/sdk/platform/Communication/CommunicationPlatformClient.d.ts +56 -3
- package/sdk/platform/Communication/CommunicationPlatformClient.js +307 -4
- package/sdk/platform/Communication/CommunicationPlatformModel.d.ts +424 -252
- package/sdk/platform/Communication/CommunicationPlatformModel.js +540 -320
- package/sdk/platform/Communication/CommunicationPlatformValidator.d.ts +62 -3
- package/sdk/platform/Communication/CommunicationPlatformValidator.js +48 -2
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.d.ts +68 -99
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.js +84 -140
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.d.ts +238 -256
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.js +222 -244
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformValidator.d.ts +20 -20
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformValidator.js +20 -20
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.d.ts +333 -118
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.js +1470 -409
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationValidator.d.ts +158 -55
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationValidator.js +163 -41
- package/sdk/platform/Configuration/ConfigurationPlatformClient.d.ts +151 -61
- package/sdk/platform/Configuration/ConfigurationPlatformClient.js +595 -101
- package/sdk/platform/Configuration/ConfigurationPlatformModel.d.ts +1199 -462
- package/sdk/platform/Configuration/ConfigurationPlatformModel.js +1008 -321
- package/sdk/platform/Configuration/ConfigurationPlatformValidator.d.ts +80 -34
- package/sdk/platform/Configuration/ConfigurationPlatformValidator.js +79 -24
- package/sdk/platform/Content/ContentPlatformApplicationClient.d.ts +253 -140
- package/sdk/platform/Content/ContentPlatformApplicationClient.js +1087 -458
- package/sdk/platform/Content/ContentPlatformApplicationValidator.d.ts +221 -178
- package/sdk/platform/Content/ContentPlatformApplicationValidator.js +220 -157
- package/sdk/platform/Content/ContentPlatformClient.d.ts +124 -123
- package/sdk/platform/Content/ContentPlatformClient.js +459 -379
- package/sdk/platform/Content/ContentPlatformModel.d.ts +833 -1307
- package/sdk/platform/Content/ContentPlatformModel.js +893 -582
- package/sdk/platform/Content/ContentPlatformValidator.d.ts +140 -150
- package/sdk/platform/Content/ContentPlatformValidator.js +131 -135
- package/sdk/platform/Discount/DiscountPlatformClient.d.ts +60 -36
- package/sdk/platform/Discount/DiscountPlatformClient.js +85 -36
- package/sdk/platform/Discount/DiscountPlatformModel.d.ts +46 -47
- package/sdk/platform/Discount/DiscountPlatformModel.js +42 -46
- package/sdk/platform/Discount/DiscountPlatformValidator.d.ts +2 -2
- package/sdk/platform/Discount/DiscountPlatformValidator.js +2 -2
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.d.ts +18 -15
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.js +24 -22
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.d.ts +4 -4
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.js +4 -4
- package/sdk/platform/FileStorage/FileStoragePlatformClient.d.ts +8 -8
- package/sdk/platform/FileStorage/FileStoragePlatformClient.js +8 -8
- package/sdk/platform/FileStorage/FileStoragePlatformModel.d.ts +75 -86
- package/sdk/platform/FileStorage/FileStoragePlatformModel.js +60 -74
- package/sdk/platform/FileStorage/FileStoragePlatformValidator.d.ts +6 -6
- package/sdk/platform/FileStorage/FileStoragePlatformValidator.js +6 -6
- package/sdk/platform/Finance/FinancePlatformClient.d.ts +320 -0
- package/sdk/platform/Finance/FinancePlatformClient.js +2333 -0
- package/sdk/platform/Finance/FinancePlatformModel.d.ts +2895 -0
- package/sdk/platform/Finance/FinancePlatformModel.js +2150 -0
- package/sdk/platform/Finance/FinancePlatformValidator.d.ts +284 -0
- package/sdk/platform/Finance/FinancePlatformValidator.js +354 -0
- package/sdk/platform/Lead/LeadPlatformApplicationClient.d.ts +17 -17
- package/sdk/platform/Lead/LeadPlatformApplicationClient.js +33 -33
- package/sdk/platform/Lead/LeadPlatformApplicationValidator.d.ts +19 -19
- package/sdk/platform/Lead/LeadPlatformApplicationValidator.js +14 -14
- package/sdk/platform/Lead/LeadPlatformClient.d.ts +4 -24
- package/sdk/platform/Lead/LeadPlatformClient.js +4 -160
- package/sdk/platform/Lead/LeadPlatformModel.d.ts +142 -57
- package/sdk/platform/Lead/LeadPlatformModel.js +162 -79
- package/sdk/platform/Lead/LeadPlatformValidator.d.ts +3 -29
- package/sdk/platform/Lead/LeadPlatformValidator.js +2 -28
- package/sdk/platform/Order/OrderPlatformApplicationClient.d.ts +94 -25
- package/sdk/platform/Order/OrderPlatformApplicationClient.js +600 -57
- package/sdk/platform/Order/OrderPlatformApplicationValidator.d.ts +115 -115
- package/sdk/platform/Order/OrderPlatformApplicationValidator.js +120 -43
- package/sdk/platform/Order/OrderPlatformClient.d.ts +502 -293
- package/sdk/platform/Order/OrderPlatformClient.js +1466 -913
- package/sdk/platform/Order/OrderPlatformModel.d.ts +4103 -9109
- package/sdk/platform/Order/OrderPlatformModel.js +3198 -4245
- package/sdk/platform/Order/OrderPlatformValidator.d.ts +445 -612
- package/sdk/platform/Order/OrderPlatformValidator.js +316 -326
- package/sdk/platform/Partner/PartnerPlatformApplicationClient.d.ts +4 -6
- package/sdk/platform/Partner/PartnerPlatformApplicationClient.js +7 -9
- package/sdk/platform/Partner/PartnerPlatformModel.d.ts +9 -9
- package/sdk/platform/Partner/PartnerPlatformModel.js +7 -7
- package/sdk/platform/Payment/PaymentPlatformApplicationClient.d.ts +382 -135
- package/sdk/platform/Payment/PaymentPlatformApplicationClient.js +2453 -935
- package/sdk/platform/Payment/PaymentPlatformApplicationValidator.d.ts +306 -93
- package/sdk/platform/Payment/PaymentPlatformApplicationValidator.js +305 -70
- package/sdk/platform/Payment/PaymentPlatformClient.d.ts +66 -56
- package/sdk/platform/Payment/PaymentPlatformClient.js +269 -124
- package/sdk/platform/Payment/PaymentPlatformModel.d.ts +3525 -1313
- package/sdk/platform/Payment/PaymentPlatformModel.js +3813 -1511
- package/sdk/platform/Payment/PaymentPlatformValidator.d.ts +64 -35
- package/sdk/platform/Payment/PaymentPlatformValidator.js +60 -34
- package/sdk/platform/PlatformClient.d.ts +2 -0
- package/sdk/platform/PlatformClient.js +4 -0
- package/sdk/platform/Rewards/RewardsPlatformApplicationClient.d.ts +2 -2
- package/sdk/platform/Rewards/RewardsPlatformApplicationClient.js +2 -2
- package/sdk/platform/Rewards/RewardsPlatformApplicationValidator.d.ts +2 -2
- package/sdk/platform/Rewards/RewardsPlatformApplicationValidator.js +2 -2
- package/sdk/platform/Rewards/RewardsPlatformModel.d.ts +14 -9
- package/sdk/platform/Rewards/RewardsPlatformModel.js +10 -8
- package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationClient.d.ts +344 -56
- package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationClient.js +2180 -302
- package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationValidator.d.ts +380 -54
- package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationValidator.js +336 -37
- package/sdk/platform/Serviceability/ServiceabilityPlatformClient.d.ts +127 -213
- package/sdk/platform/Serviceability/ServiceabilityPlatformClient.js +538 -1306
- package/sdk/platform/Serviceability/ServiceabilityPlatformModel.d.ts +3429 -2979
- package/sdk/platform/Serviceability/ServiceabilityPlatformModel.js +3642 -1785
- package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.d.ts +218 -392
- package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.js +151 -290
- package/sdk/platform/Share/SharePlatformApplicationClient.d.ts +4 -16
- package/sdk/platform/Share/SharePlatformApplicationClient.js +8 -86
- package/sdk/platform/Share/SharePlatformApplicationValidator.d.ts +6 -23
- package/sdk/platform/Share/SharePlatformApplicationValidator.js +3 -16
- package/sdk/platform/Share/SharePlatformModel.d.ts +6 -50
- package/sdk/platform/Share/SharePlatformModel.js +3 -43
- package/sdk/platform/Theme/ThemePlatformApplicationClient.d.ts +26 -4
- package/sdk/platform/Theme/ThemePlatformApplicationClient.js +157 -10
- package/sdk/platform/Theme/ThemePlatformApplicationValidator.d.ts +21 -10
- package/sdk/platform/Theme/ThemePlatformApplicationValidator.js +23 -6
- package/sdk/platform/Theme/ThemePlatformClient.d.ts +18 -8
- package/sdk/platform/Theme/ThemePlatformClient.js +85 -8
- package/sdk/platform/Theme/ThemePlatformModel.d.ts +425 -17
- package/sdk/platform/Theme/ThemePlatformModel.js +329 -23
- package/sdk/platform/Theme/ThemePlatformValidator.d.ts +7 -3
- package/sdk/platform/Theme/ThemePlatformValidator.js +9 -2
- package/sdk/platform/User/UserPlatformApplicationClient.d.ts +18 -71
- package/sdk/platform/User/UserPlatformApplicationClient.js +27 -412
- package/sdk/platform/User/UserPlatformApplicationValidator.d.ts +10 -114
- package/sdk/platform/User/UserPlatformApplicationValidator.js +7 -80
- package/sdk/platform/User/UserPlatformModel.d.ts +216 -264
- package/sdk/platform/User/UserPlatformModel.js +209 -216
- package/sdk/platform/Webhook/WebhookPlatformClient.d.ts +78 -25
- package/sdk/platform/Webhook/WebhookPlatformClient.js +470 -75
- package/sdk/platform/Webhook/WebhookPlatformModel.d.ts +428 -810
- package/sdk/platform/Webhook/WebhookPlatformModel.js +395 -444
- package/sdk/platform/Webhook/WebhookPlatformValidator.d.ts +55 -10
- package/sdk/platform/Webhook/WebhookPlatformValidator.js +72 -12
- package/sdk/platform/index.d.ts +1 -0
- package/sdk/platform/index.js +2 -0
- package/sdk/public/Billing/BillingPublicClient.d.ts +56 -0
- package/sdk/public/Billing/BillingPublicClient.js +397 -0
- package/sdk/public/Billing/BillingPublicModel.d.ts +919 -0
- package/sdk/public/Billing/BillingPublicModel.js +560 -0
- package/sdk/public/Billing/BillingPublicValidator.d.ts +43 -0
- package/sdk/public/Billing/BillingPublicValidator.js +50 -0
- package/sdk/public/Configuration/ConfigurationPublicClient.d.ts +14 -4
- package/sdk/public/Configuration/ConfigurationPublicClient.js +97 -9
- package/sdk/public/Configuration/ConfigurationPublicModel.d.ts +102 -40
- package/sdk/public/Configuration/ConfigurationPublicModel.js +111 -29
- package/sdk/public/Configuration/ConfigurationPublicValidator.d.ts +11 -1
- package/sdk/public/Configuration/ConfigurationPublicValidator.js +12 -0
- package/sdk/public/Content/ContentPublicClient.d.ts +22 -0
- package/sdk/public/Content/ContentPublicClient.js +183 -0
- package/sdk/public/Content/ContentPublicModel.d.ts +38 -1
- package/sdk/public/Content/ContentPublicModel.js +47 -1
- package/sdk/public/Content/ContentPublicValidator.d.ts +17 -1
- package/sdk/public/Content/ContentPublicValidator.js +19 -0
- package/sdk/public/PublicClient.d.ts +2 -2
- package/sdk/public/PublicClient.js +2 -2
- package/sdk/public/Webhook/WebhookPublicClient.d.ts +8 -8
- package/sdk/public/Webhook/WebhookPublicClient.js +8 -8
- package/sdk/public/Webhook/WebhookPublicModel.d.ts +67 -215
- package/sdk/public/Webhook/WebhookPublicModel.js +61 -66
- package/sdk/public/Webhook/WebhookPublicValidator.d.ts +4 -4
- package/sdk/public/Webhook/WebhookPublicValidator.js +4 -4
- package/sdk/public/index.d.ts +1 -1
- package/sdk/public/index.js +1 -1
- package/sdk/application/Finance/FinanceApplicationClient.d.ts +0 -29
- package/sdk/application/Finance/FinanceApplicationClient.js +0 -126
- package/sdk/public/Catalog/CatalogPublicClient.d.ts +0 -22
- package/sdk/public/Catalog/CatalogPublicClient.js +0 -138
- package/sdk/public/Catalog/CatalogPublicModel.d.ts +0 -155
- package/sdk/public/Catalog/CatalogPublicModel.js +0 -116
- package/sdk/public/Catalog/CatalogPublicValidator.d.ts +0 -55
- package/sdk/public/Catalog/CatalogPublicValidator.js +0 -35
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
export = CompanyProfilePlatformModel;
|
|
2
2
|
/**
|
|
3
|
-
* @typedef
|
|
3
|
+
* @typedef CompanyTaxesSerializer
|
|
4
4
|
* @property {string} [effective_date]
|
|
5
5
|
* @property {number} [rate]
|
|
6
6
|
* @property {boolean} [enable]
|
|
7
7
|
*/
|
|
8
8
|
/**
|
|
9
|
-
* @typedef
|
|
9
|
+
* @typedef UserSerializer
|
|
10
10
|
* @property {string} [user_id]
|
|
11
11
|
* @property {string} [contact]
|
|
12
12
|
* @property {string} [username]
|
|
@@ -51,10 +51,10 @@ export = CompanyProfilePlatformModel;
|
|
|
51
51
|
* @property {string} [url]
|
|
52
52
|
*/
|
|
53
53
|
/**
|
|
54
|
-
* @typedef
|
|
54
|
+
* @typedef GetAddressSerializer
|
|
55
55
|
* @property {string} [landmark]
|
|
56
56
|
* @property {string} [country_code]
|
|
57
|
-
* @property {
|
|
57
|
+
* @property {string} [pincode]
|
|
58
58
|
* @property {string} [address_type]
|
|
59
59
|
* @property {number} longitude
|
|
60
60
|
* @property {string} [country]
|
|
@@ -67,14 +67,14 @@ export = CompanyProfilePlatformModel;
|
|
|
67
67
|
* @property {number} latitude
|
|
68
68
|
*/
|
|
69
69
|
/**
|
|
70
|
-
* @typedef
|
|
70
|
+
* @typedef GetCompanyProfileSerializerResponse
|
|
71
71
|
* @property {string} [business_info]
|
|
72
|
-
* @property {
|
|
72
|
+
* @property {CompanyTaxesSerializer[]} [taxes]
|
|
73
73
|
* @property {string} [business_type]
|
|
74
74
|
* @property {string} [name]
|
|
75
75
|
* @property {Object} [_custom_json]
|
|
76
76
|
* @property {string} [verified_on]
|
|
77
|
-
* @property {
|
|
77
|
+
* @property {UserSerializer} [created_by]
|
|
78
78
|
* @property {string} [created_on]
|
|
79
79
|
* @property {Object} [warnings]
|
|
80
80
|
* @property {BusinessDetails} [business_details]
|
|
@@ -87,17 +87,18 @@ export = CompanyProfilePlatformModel;
|
|
|
87
87
|
* @property {string} [stage]
|
|
88
88
|
* @property {string} company_type
|
|
89
89
|
* @property {Document[]} [documents]
|
|
90
|
-
* @property {
|
|
91
|
-
* @property {
|
|
90
|
+
* @property {GetAddressSerializer[]} [addresses]
|
|
91
|
+
* @property {UserSerializer} [verified_by]
|
|
92
92
|
* @property {string[]} [notification_emails]
|
|
93
|
-
* @property {
|
|
93
|
+
* @property {UserSerializer} [modified_by]
|
|
94
94
|
*/
|
|
95
95
|
/**
|
|
96
|
-
* @typedef
|
|
96
|
+
* @typedef ErrorResponse
|
|
97
|
+
* @property {number} [code]
|
|
98
|
+
* @property {string} [error]
|
|
97
99
|
* @property {string} [message]
|
|
98
|
-
* @property {string} [code]
|
|
99
|
-
* @property {number} [status]
|
|
100
100
|
* @property {Object} [meta]
|
|
101
|
+
* @property {number} [status]
|
|
101
102
|
*/
|
|
102
103
|
/**
|
|
103
104
|
* @typedef CompanyTaxesSerializer1
|
|
@@ -106,10 +107,10 @@ export = CompanyProfilePlatformModel;
|
|
|
106
107
|
* @property {boolean} [enable]
|
|
107
108
|
*/
|
|
108
109
|
/**
|
|
109
|
-
* @typedef
|
|
110
|
+
* @typedef CreateUpdateAddressSerializer
|
|
110
111
|
* @property {string} [landmark]
|
|
111
112
|
* @property {string} [country_code]
|
|
112
|
-
* @property {
|
|
113
|
+
* @property {string} [pincode]
|
|
113
114
|
* @property {string} address_type
|
|
114
115
|
* @property {number} longitude
|
|
115
116
|
* @property {string} country
|
|
@@ -130,15 +131,16 @@ export = CompanyProfilePlatformModel;
|
|
|
130
131
|
* @property {BusinessDetails} [business_details]
|
|
131
132
|
* @property {Document[]} [documents]
|
|
132
133
|
* @property {string} [business_type]
|
|
133
|
-
* @property {
|
|
134
|
+
* @property {CreateUpdateAddressSerializer[]} [addresses]
|
|
134
135
|
* @property {string[]} [notification_emails]
|
|
135
136
|
* @property {ContactDetails} [contact_details]
|
|
136
137
|
* @property {string} [reject_reason]
|
|
137
138
|
* @property {string} [name]
|
|
138
139
|
*/
|
|
139
140
|
/**
|
|
140
|
-
* @typedef
|
|
141
|
+
* @typedef ProfileSuccessResponse
|
|
141
142
|
* @property {number} [uid]
|
|
143
|
+
* @property {Object[]} [data]
|
|
142
144
|
* @property {string} [message]
|
|
143
145
|
* @property {boolean} [success]
|
|
144
146
|
*/
|
|
@@ -148,7 +150,7 @@ export = CompanyProfilePlatformModel;
|
|
|
148
150
|
* @property {number} [verified]
|
|
149
151
|
*/
|
|
150
152
|
/**
|
|
151
|
-
* @typedef
|
|
153
|
+
* @typedef MetricsSerializer
|
|
152
154
|
* @property {string} [stage]
|
|
153
155
|
* @property {DocumentsObj} [store]
|
|
154
156
|
* @property {DocumentsObj} [company_documents]
|
|
@@ -158,18 +160,18 @@ export = CompanyProfilePlatformModel;
|
|
|
158
160
|
* @property {DocumentsObj} [brand]
|
|
159
161
|
*/
|
|
160
162
|
/**
|
|
161
|
-
* @typedef
|
|
163
|
+
* @typedef BrandBannerSerializer
|
|
162
164
|
* @property {string} portrait
|
|
163
165
|
* @property {string} landscape
|
|
164
166
|
*/
|
|
165
167
|
/**
|
|
166
|
-
* @typedef
|
|
167
|
-
* @property {
|
|
168
|
-
* @property {
|
|
168
|
+
* @typedef GetBrandResponseSerializer
|
|
169
|
+
* @property {UserSerializer} [modified_by]
|
|
170
|
+
* @property {BrandBannerSerializer} [banner]
|
|
169
171
|
* @property {string} name
|
|
170
172
|
* @property {Object} [_custom_json]
|
|
171
173
|
* @property {string} [verified_on]
|
|
172
|
-
* @property {
|
|
174
|
+
* @property {UserSerializer} [created_by]
|
|
173
175
|
* @property {string} [created_on]
|
|
174
176
|
* @property {Object} [warnings]
|
|
175
177
|
* @property {Object} [_locale_language]
|
|
@@ -179,13 +181,13 @@ export = CompanyProfilePlatformModel;
|
|
|
179
181
|
* @property {number} [uid]
|
|
180
182
|
* @property {string} [reject_reason]
|
|
181
183
|
* @property {string} [stage]
|
|
182
|
-
* @property {
|
|
184
|
+
* @property {UserSerializer} [verified_by]
|
|
183
185
|
* @property {string} [slug_key]
|
|
184
186
|
* @property {string} [logo]
|
|
185
187
|
* @property {string} [description]
|
|
186
188
|
*/
|
|
187
189
|
/**
|
|
188
|
-
* @typedef
|
|
190
|
+
* @typedef CreateUpdateBrandRequestSerializer
|
|
189
191
|
* @property {Object} [_custom_json]
|
|
190
192
|
* @property {Object} [_locale_language]
|
|
191
193
|
* @property {string[]} [synonyms]
|
|
@@ -194,23 +196,10 @@ export = CompanyProfilePlatformModel;
|
|
|
194
196
|
* @property {string} logo
|
|
195
197
|
* @property {string} [brand_tier]
|
|
196
198
|
* @property {number} [uid]
|
|
197
|
-
* @property {
|
|
199
|
+
* @property {BrandBannerSerializer} banner
|
|
198
200
|
* @property {string} name
|
|
199
201
|
* @property {string} [slug_key]
|
|
200
202
|
*/
|
|
201
|
-
/**
|
|
202
|
-
* @typedef UpdateBrandRequestSchema
|
|
203
|
-
* @property {Object} [_custom_json]
|
|
204
|
-
* @property {Object} [_locale_language]
|
|
205
|
-
* @property {string[]} [synonyms]
|
|
206
|
-
* @property {number} [company_id]
|
|
207
|
-
* @property {string} [description]
|
|
208
|
-
* @property {string} logo
|
|
209
|
-
* @property {string} [brand_tier]
|
|
210
|
-
* @property {number} [uid]
|
|
211
|
-
* @property {BrandBannerSchema} banner
|
|
212
|
-
* @property {string} name
|
|
213
|
-
*/
|
|
214
203
|
/**
|
|
215
204
|
* @typedef CompanySocialAccounts
|
|
216
205
|
* @property {string} name
|
|
@@ -222,40 +211,40 @@ export = CompanyProfilePlatformModel;
|
|
|
222
211
|
* @property {string} [website_url]
|
|
223
212
|
*/
|
|
224
213
|
/**
|
|
225
|
-
* @typedef
|
|
214
|
+
* @typedef CompanySerializer
|
|
226
215
|
* @property {string} [stage]
|
|
227
216
|
* @property {Object} [_custom_json]
|
|
228
217
|
* @property {string} [verified_on]
|
|
229
|
-
* @property {
|
|
218
|
+
* @property {UserSerializer} [verified_by]
|
|
230
219
|
* @property {string} [created_on]
|
|
231
|
-
* @property {
|
|
220
|
+
* @property {UserSerializer} [created_by]
|
|
232
221
|
* @property {string} company_type
|
|
233
222
|
* @property {string} [modified_on]
|
|
234
223
|
* @property {string[]} [market_channels]
|
|
235
|
-
* @property {string} business_type
|
|
236
|
-
* @property {
|
|
224
|
+
* @property {string} [business_type]
|
|
225
|
+
* @property {GetAddressSerializer[]} [addresses]
|
|
237
226
|
* @property {string[]} [notification_emails]
|
|
238
227
|
* @property {CompanyDetails} [details]
|
|
239
228
|
* @property {BusinessCountryInfo} [business_country_info]
|
|
240
229
|
* @property {number} [uid]
|
|
241
230
|
* @property {string} [reject_reason]
|
|
242
231
|
* @property {string} [name]
|
|
243
|
-
* @property {
|
|
232
|
+
* @property {UserSerializer} [modified_by]
|
|
244
233
|
*/
|
|
245
234
|
/**
|
|
246
|
-
* @typedef
|
|
235
|
+
* @typedef CompanyBrandSerializer
|
|
247
236
|
* @property {string} [stage]
|
|
248
237
|
* @property {string} [verified_on]
|
|
249
|
-
* @property {
|
|
238
|
+
* @property {UserSerializer} [verified_by]
|
|
250
239
|
* @property {string} [created_on]
|
|
251
|
-
* @property {
|
|
252
|
-
* @property {
|
|
240
|
+
* @property {UserSerializer} [created_by]
|
|
241
|
+
* @property {CompanySerializer} [company]
|
|
253
242
|
* @property {Object} [warnings]
|
|
254
243
|
* @property {string} [modified_on]
|
|
255
244
|
* @property {number} [uid]
|
|
256
245
|
* @property {string} [reject_reason]
|
|
257
|
-
* @property {
|
|
258
|
-
* @property {
|
|
246
|
+
* @property {GetBrandResponseSerializer} [brand]
|
|
247
|
+
* @property {UserSerializer} [modified_by]
|
|
259
248
|
*/
|
|
260
249
|
/**
|
|
261
250
|
* @typedef Page
|
|
@@ -266,125 +255,126 @@ export = CompanyProfilePlatformModel;
|
|
|
266
255
|
* @property {number} [current] - The current page number.
|
|
267
256
|
* @property {string} type - The type of the page, such as 'PageType'.
|
|
268
257
|
* @property {number} [size] - The number of items per page.
|
|
258
|
+
* @property {number} [total] - Total number of items.
|
|
269
259
|
*/
|
|
270
260
|
/**
|
|
271
|
-
* @typedef
|
|
272
|
-
* @property {
|
|
261
|
+
* @typedef CompanyBrandListSerializer
|
|
262
|
+
* @property {CompanyBrandSerializer[]} [items]
|
|
273
263
|
* @property {Page} [page]
|
|
274
264
|
*/
|
|
275
265
|
/**
|
|
276
|
-
* @typedef
|
|
266
|
+
* @typedef CompanyBrandPostRequestSerializer
|
|
277
267
|
* @property {number} [uid]
|
|
278
268
|
* @property {number[]} brands
|
|
279
269
|
* @property {number} company
|
|
280
270
|
*/
|
|
281
271
|
/**
|
|
282
|
-
* @typedef
|
|
272
|
+
* @typedef InvoiceCredSerializer
|
|
283
273
|
* @property {string} [username]
|
|
284
274
|
* @property {boolean} [enabled]
|
|
285
275
|
* @property {string} [password]
|
|
286
276
|
*/
|
|
287
277
|
/**
|
|
288
|
-
* @typedef
|
|
289
|
-
* @property {
|
|
290
|
-
* @property {
|
|
278
|
+
* @typedef InvoiceDetailsSerializer
|
|
279
|
+
* @property {InvoiceCredSerializer} [e_invoice]
|
|
280
|
+
* @property {InvoiceCredSerializer} [e_waybill]
|
|
291
281
|
*/
|
|
292
282
|
/**
|
|
293
|
-
* @typedef
|
|
283
|
+
* @typedef GetCompanySerializer
|
|
294
284
|
* @property {string} [stage]
|
|
295
285
|
* @property {string} [verified_on]
|
|
296
|
-
* @property {
|
|
286
|
+
* @property {UserSerializer} [verified_by]
|
|
297
287
|
* @property {string} [created_on]
|
|
298
|
-
* @property {
|
|
288
|
+
* @property {UserSerializer} [created_by]
|
|
299
289
|
* @property {string} [company_type]
|
|
300
290
|
* @property {string} [modified_on]
|
|
301
291
|
* @property {string} [business_type]
|
|
302
|
-
* @property {
|
|
292
|
+
* @property {GetAddressSerializer[]} [addresses]
|
|
303
293
|
* @property {number} [uid]
|
|
304
294
|
* @property {string} [reject_reason]
|
|
305
295
|
* @property {string} [name]
|
|
306
|
-
* @property {
|
|
296
|
+
* @property {UserSerializer} [modified_by]
|
|
307
297
|
*/
|
|
308
298
|
/**
|
|
309
|
-
* @typedef
|
|
299
|
+
* @typedef LocationManagerSerializer
|
|
310
300
|
* @property {string} [email]
|
|
311
301
|
* @property {SellerPhoneNumber} mobile_no
|
|
312
302
|
* @property {string} [name]
|
|
313
303
|
*/
|
|
314
304
|
/**
|
|
315
|
-
* @typedef
|
|
305
|
+
* @typedef LocationTimingSerializer
|
|
316
306
|
* @property {number} hour
|
|
317
307
|
* @property {number} minute
|
|
318
308
|
*/
|
|
319
309
|
/**
|
|
320
|
-
* @typedef
|
|
310
|
+
* @typedef LocationDayWiseSerializer
|
|
321
311
|
* @property {boolean} open
|
|
322
312
|
* @property {string} weekday
|
|
323
|
-
* @property {
|
|
324
|
-
* @property {
|
|
313
|
+
* @property {LocationTimingSerializer} [opening]
|
|
314
|
+
* @property {LocationTimingSerializer} [closing]
|
|
325
315
|
*/
|
|
326
316
|
/**
|
|
327
|
-
* @typedef
|
|
317
|
+
* @typedef HolidayDateSerializer
|
|
328
318
|
* @property {string} end_date
|
|
329
319
|
* @property {string} start_date
|
|
330
320
|
*/
|
|
331
321
|
/**
|
|
332
|
-
* @typedef
|
|
333
|
-
* @property {
|
|
322
|
+
* @typedef HolidaySchemaSerializer
|
|
323
|
+
* @property {HolidayDateSerializer} date
|
|
334
324
|
* @property {string} title
|
|
335
325
|
* @property {string} holiday_type
|
|
336
326
|
*/
|
|
337
327
|
/**
|
|
338
|
-
* @typedef
|
|
328
|
+
* @typedef ProductReturnConfigSerializer
|
|
339
329
|
* @property {boolean} [on_same_store]
|
|
340
330
|
* @property {number} [store_uid]
|
|
341
331
|
*/
|
|
342
332
|
/**
|
|
343
|
-
* @typedef
|
|
333
|
+
* @typedef GetLocationSerializer
|
|
344
334
|
* @property {string} code
|
|
345
335
|
* @property {string} [phone_number]
|
|
346
336
|
* @property {SellerPhoneNumber[]} [contact_numbers]
|
|
347
|
-
* @property {
|
|
337
|
+
* @property {InvoiceDetailsSerializer} [gst_credentials]
|
|
348
338
|
* @property {string} name
|
|
349
339
|
* @property {Object} [_custom_json]
|
|
350
340
|
* @property {string} [verified_on]
|
|
351
|
-
* @property {
|
|
341
|
+
* @property {UserSerializer} [created_by]
|
|
352
342
|
* @property {string} [created_on]
|
|
353
|
-
* @property {
|
|
354
|
-
* @property {
|
|
343
|
+
* @property {GetCompanySerializer} [company]
|
|
344
|
+
* @property {GetAddressSerializer} address
|
|
355
345
|
* @property {Object} [warnings]
|
|
356
346
|
* @property {string} [store_type]
|
|
357
|
-
* @property {
|
|
347
|
+
* @property {LocationManagerSerializer} [manager]
|
|
358
348
|
* @property {boolean} [auto_invoice]
|
|
359
349
|
* @property {string} [modified_on]
|
|
360
350
|
* @property {number} [uid]
|
|
361
|
-
* @property {
|
|
351
|
+
* @property {LocationDayWiseSerializer[]} [timing]
|
|
362
352
|
* @property {string} [stage]
|
|
363
353
|
* @property {Document[]} [documents]
|
|
364
354
|
* @property {boolean} [credit_note]
|
|
365
|
-
* @property {
|
|
355
|
+
* @property {HolidaySchemaSerializer[]} [holiday]
|
|
366
356
|
* @property {string} display_name
|
|
367
|
-
* @property {
|
|
368
|
-
* @property {
|
|
357
|
+
* @property {ProductReturnConfigSerializer} [product_return_config]
|
|
358
|
+
* @property {UserSerializer} [verified_by]
|
|
369
359
|
* @property {string[]} [notification_emails]
|
|
370
|
-
* @property {
|
|
360
|
+
* @property {UserSerializer} [modified_by]
|
|
371
361
|
* @property {string[]} [tags]
|
|
372
362
|
* @property {boolean} [default_order_acceptance_timing]
|
|
373
|
-
* @property {
|
|
363
|
+
* @property {LocationDayWiseSerializer[]} [order_acceptance_timing]
|
|
374
364
|
* @property {AverageOrderProcessingTime} [avg_order_processing_time]
|
|
375
365
|
* @property {boolean} [bulk_shipment]
|
|
376
366
|
* @property {boolean} [auto_assign_courier_partner]
|
|
377
367
|
*/
|
|
378
368
|
/**
|
|
379
|
-
* @typedef
|
|
380
|
-
* @property {
|
|
369
|
+
* @typedef LocationListSerializer
|
|
370
|
+
* @property {GetLocationSerializer[]} [items]
|
|
381
371
|
* @property {Page} [page]
|
|
382
372
|
*/
|
|
383
373
|
/**
|
|
384
|
-
* @typedef
|
|
374
|
+
* @typedef AddressSerializer
|
|
385
375
|
* @property {string} [landmark]
|
|
386
376
|
* @property {string} country_code
|
|
387
|
-
* @property {
|
|
377
|
+
* @property {string} [pincode]
|
|
388
378
|
* @property {string} [address_type]
|
|
389
379
|
* @property {number} longitude
|
|
390
380
|
* @property {string} [country]
|
|
@@ -397,39 +387,39 @@ export = CompanyProfilePlatformModel;
|
|
|
397
387
|
* @property {number} latitude
|
|
398
388
|
*/
|
|
399
389
|
/**
|
|
400
|
-
* @typedef
|
|
390
|
+
* @typedef LocationSerializer
|
|
401
391
|
* @property {string} code
|
|
402
|
-
* @property {
|
|
392
|
+
* @property {InvoiceDetailsSerializer} [gst_credentials]
|
|
403
393
|
* @property {SellerPhoneNumber[]} [contact_numbers]
|
|
404
394
|
* @property {string} name
|
|
405
395
|
* @property {Object} [_custom_json]
|
|
406
396
|
* @property {Object} [warnings]
|
|
407
|
-
* @property {
|
|
397
|
+
* @property {AddressSerializer} address
|
|
408
398
|
* @property {number} company
|
|
409
399
|
* @property {string} [store_type]
|
|
410
|
-
* @property {
|
|
400
|
+
* @property {LocationManagerSerializer} [manager]
|
|
411
401
|
* @property {boolean} [auto_invoice]
|
|
412
402
|
* @property {number} [uid]
|
|
413
|
-
* @property {
|
|
403
|
+
* @property {LocationDayWiseSerializer[]} [timing]
|
|
414
404
|
* @property {string} [stage]
|
|
415
405
|
* @property {Document[]} documents
|
|
416
406
|
* @property {boolean} [credit_note]
|
|
417
|
-
* @property {
|
|
418
|
-
* @property {
|
|
407
|
+
* @property {HolidaySchemaSerializer[]} [holiday]
|
|
408
|
+
* @property {ProductReturnConfigSerializer} [product_return_config]
|
|
419
409
|
* @property {string} display_name
|
|
420
410
|
* @property {string[]} [notification_emails]
|
|
421
411
|
* @property {string[]} [tags]
|
|
422
412
|
* @property {boolean} [default_order_acceptance_timing] - Flag to set
|
|
423
413
|
* order_acceptance_timing as default timing
|
|
424
|
-
* @property {
|
|
414
|
+
* @property {LocationDayWiseSerializer[]} [order_acceptance_timing] - Order
|
|
425
415
|
* acceptance timing of the store
|
|
426
416
|
* @property {AverageOrderProcessingTime} [avg_order_processing_time]
|
|
427
417
|
* @property {boolean} [bulk_shipment]
|
|
428
418
|
* @property {boolean} [auto_assign_courier_partner]
|
|
429
419
|
*/
|
|
430
420
|
/**
|
|
431
|
-
* @typedef
|
|
432
|
-
* @property {
|
|
421
|
+
* @typedef BulkLocationSerializer
|
|
422
|
+
* @property {LocationSerializer[]} [data]
|
|
433
423
|
*/
|
|
434
424
|
/**
|
|
435
425
|
* @typedef AverageOrderProcessingTime
|
|
@@ -444,18 +434,18 @@ export = CompanyProfilePlatformModel;
|
|
|
444
434
|
declare class CompanyProfilePlatformModel {
|
|
445
435
|
}
|
|
446
436
|
declare namespace CompanyProfilePlatformModel {
|
|
447
|
-
export {
|
|
437
|
+
export { CompanyTaxesSerializer, UserSerializer, Website, BusinessDetails, SellerPhoneNumber, ContactDetails, CountryCurrencyInfo, BusinessCountryInfo, Document, GetAddressSerializer, GetCompanyProfileSerializerResponse, ErrorResponse, CompanyTaxesSerializer1, CreateUpdateAddressSerializer, UpdateCompany, ProfileSuccessResponse, DocumentsObj, MetricsSerializer, BrandBannerSerializer, GetBrandResponseSerializer, CreateUpdateBrandRequestSerializer, CompanySocialAccounts, CompanyDetails, CompanySerializer, CompanyBrandSerializer, Page, CompanyBrandListSerializer, CompanyBrandPostRequestSerializer, InvoiceCredSerializer, InvoiceDetailsSerializer, GetCompanySerializer, LocationManagerSerializer, LocationTimingSerializer, LocationDayWiseSerializer, HolidayDateSerializer, HolidaySchemaSerializer, ProductReturnConfigSerializer, GetLocationSerializer, LocationListSerializer, AddressSerializer, LocationSerializer, BulkLocationSerializer, AverageOrderProcessingTime, StoreTagsResponseSchema };
|
|
448
438
|
}
|
|
449
|
-
/** @returns {
|
|
450
|
-
declare function
|
|
451
|
-
type
|
|
439
|
+
/** @returns {CompanyTaxesSerializer} */
|
|
440
|
+
declare function CompanyTaxesSerializer(): CompanyTaxesSerializer;
|
|
441
|
+
type CompanyTaxesSerializer = {
|
|
452
442
|
effective_date?: string;
|
|
453
443
|
rate?: number;
|
|
454
444
|
enable?: boolean;
|
|
455
445
|
};
|
|
456
|
-
/** @returns {
|
|
457
|
-
declare function
|
|
458
|
-
type
|
|
446
|
+
/** @returns {UserSerializer} */
|
|
447
|
+
declare function UserSerializer(): UserSerializer;
|
|
448
|
+
type UserSerializer = {
|
|
459
449
|
user_id?: string;
|
|
460
450
|
contact?: string;
|
|
461
451
|
username?: string;
|
|
@@ -506,12 +496,12 @@ type Document = {
|
|
|
506
496
|
type: string;
|
|
507
497
|
url?: string;
|
|
508
498
|
};
|
|
509
|
-
/** @returns {
|
|
510
|
-
declare function
|
|
511
|
-
type
|
|
499
|
+
/** @returns {GetAddressSerializer} */
|
|
500
|
+
declare function GetAddressSerializer(): GetAddressSerializer;
|
|
501
|
+
type GetAddressSerializer = {
|
|
512
502
|
landmark?: string;
|
|
513
503
|
country_code?: string;
|
|
514
|
-
pincode?:
|
|
504
|
+
pincode?: string;
|
|
515
505
|
address_type?: string;
|
|
516
506
|
longitude: number;
|
|
517
507
|
country?: string;
|
|
@@ -523,16 +513,16 @@ type GetAddressSchema = {
|
|
|
523
513
|
city?: string;
|
|
524
514
|
latitude: number;
|
|
525
515
|
};
|
|
526
|
-
/** @returns {
|
|
527
|
-
declare function
|
|
528
|
-
type
|
|
516
|
+
/** @returns {GetCompanyProfileSerializerResponse} */
|
|
517
|
+
declare function GetCompanyProfileSerializerResponse(): GetCompanyProfileSerializerResponse;
|
|
518
|
+
type GetCompanyProfileSerializerResponse = {
|
|
529
519
|
business_info?: string;
|
|
530
|
-
taxes?:
|
|
520
|
+
taxes?: CompanyTaxesSerializer[];
|
|
531
521
|
business_type?: string;
|
|
532
522
|
name?: string;
|
|
533
523
|
_custom_json?: any;
|
|
534
524
|
verified_on?: string;
|
|
535
|
-
created_by?:
|
|
525
|
+
created_by?: UserSerializer;
|
|
536
526
|
created_on?: string;
|
|
537
527
|
warnings?: any;
|
|
538
528
|
business_details?: BusinessDetails;
|
|
@@ -545,18 +535,19 @@ type GetCompanyProfileSerializerResponseSchema = {
|
|
|
545
535
|
stage?: string;
|
|
546
536
|
company_type: string;
|
|
547
537
|
documents?: Document[];
|
|
548
|
-
addresses?:
|
|
549
|
-
verified_by?:
|
|
538
|
+
addresses?: GetAddressSerializer[];
|
|
539
|
+
verified_by?: UserSerializer;
|
|
550
540
|
notification_emails?: string[];
|
|
551
|
-
modified_by?:
|
|
541
|
+
modified_by?: UserSerializer;
|
|
552
542
|
};
|
|
553
|
-
/** @returns {
|
|
554
|
-
declare function
|
|
555
|
-
type
|
|
543
|
+
/** @returns {ErrorResponse} */
|
|
544
|
+
declare function ErrorResponse(): ErrorResponse;
|
|
545
|
+
type ErrorResponse = {
|
|
546
|
+
code?: number;
|
|
547
|
+
error?: string;
|
|
556
548
|
message?: string;
|
|
557
|
-
code?: string;
|
|
558
|
-
status?: number;
|
|
559
549
|
meta?: any;
|
|
550
|
+
status?: number;
|
|
560
551
|
};
|
|
561
552
|
/** @returns {CompanyTaxesSerializer1} */
|
|
562
553
|
declare function CompanyTaxesSerializer1(): CompanyTaxesSerializer1;
|
|
@@ -565,12 +556,12 @@ type CompanyTaxesSerializer1 = {
|
|
|
565
556
|
rate?: number;
|
|
566
557
|
enable?: boolean;
|
|
567
558
|
};
|
|
568
|
-
/** @returns {
|
|
569
|
-
declare function
|
|
570
|
-
type
|
|
559
|
+
/** @returns {CreateUpdateAddressSerializer} */
|
|
560
|
+
declare function CreateUpdateAddressSerializer(): CreateUpdateAddressSerializer;
|
|
561
|
+
type CreateUpdateAddressSerializer = {
|
|
571
562
|
landmark?: string;
|
|
572
563
|
country_code?: string;
|
|
573
|
-
pincode
|
|
564
|
+
pincode?: string;
|
|
574
565
|
address_type: string;
|
|
575
566
|
longitude: number;
|
|
576
567
|
country: string;
|
|
@@ -592,16 +583,17 @@ type UpdateCompany = {
|
|
|
592
583
|
business_details?: BusinessDetails;
|
|
593
584
|
documents?: Document[];
|
|
594
585
|
business_type?: string;
|
|
595
|
-
addresses?:
|
|
586
|
+
addresses?: CreateUpdateAddressSerializer[];
|
|
596
587
|
notification_emails?: string[];
|
|
597
588
|
contact_details?: ContactDetails;
|
|
598
589
|
reject_reason?: string;
|
|
599
590
|
name?: string;
|
|
600
591
|
};
|
|
601
|
-
/** @returns {
|
|
602
|
-
declare function
|
|
603
|
-
type
|
|
592
|
+
/** @returns {ProfileSuccessResponse} */
|
|
593
|
+
declare function ProfileSuccessResponse(): ProfileSuccessResponse;
|
|
594
|
+
type ProfileSuccessResponse = {
|
|
604
595
|
uid?: number;
|
|
596
|
+
data?: any[];
|
|
605
597
|
message?: string;
|
|
606
598
|
success?: boolean;
|
|
607
599
|
};
|
|
@@ -611,9 +603,9 @@ type DocumentsObj = {
|
|
|
611
603
|
pending?: number;
|
|
612
604
|
verified?: number;
|
|
613
605
|
};
|
|
614
|
-
/** @returns {
|
|
615
|
-
declare function
|
|
616
|
-
type
|
|
606
|
+
/** @returns {MetricsSerializer} */
|
|
607
|
+
declare function MetricsSerializer(): MetricsSerializer;
|
|
608
|
+
type MetricsSerializer = {
|
|
617
609
|
stage?: string;
|
|
618
610
|
store?: DocumentsObj;
|
|
619
611
|
company_documents?: DocumentsObj;
|
|
@@ -622,21 +614,21 @@ type MetricsSchema = {
|
|
|
622
614
|
uid?: number;
|
|
623
615
|
brand?: DocumentsObj;
|
|
624
616
|
};
|
|
625
|
-
/** @returns {
|
|
626
|
-
declare function
|
|
627
|
-
type
|
|
617
|
+
/** @returns {BrandBannerSerializer} */
|
|
618
|
+
declare function BrandBannerSerializer(): BrandBannerSerializer;
|
|
619
|
+
type BrandBannerSerializer = {
|
|
628
620
|
portrait: string;
|
|
629
621
|
landscape: string;
|
|
630
622
|
};
|
|
631
|
-
/** @returns {
|
|
632
|
-
declare function
|
|
633
|
-
type
|
|
634
|
-
modified_by?:
|
|
635
|
-
banner?:
|
|
623
|
+
/** @returns {GetBrandResponseSerializer} */
|
|
624
|
+
declare function GetBrandResponseSerializer(): GetBrandResponseSerializer;
|
|
625
|
+
type GetBrandResponseSerializer = {
|
|
626
|
+
modified_by?: UserSerializer;
|
|
627
|
+
banner?: BrandBannerSerializer;
|
|
636
628
|
name: string;
|
|
637
629
|
_custom_json?: any;
|
|
638
630
|
verified_on?: string;
|
|
639
|
-
created_by?:
|
|
631
|
+
created_by?: UserSerializer;
|
|
640
632
|
created_on?: string;
|
|
641
633
|
warnings?: any;
|
|
642
634
|
_locale_language?: any;
|
|
@@ -646,14 +638,14 @@ type GetBrandResponseSchema = {
|
|
|
646
638
|
uid?: number;
|
|
647
639
|
reject_reason?: string;
|
|
648
640
|
stage?: string;
|
|
649
|
-
verified_by?:
|
|
641
|
+
verified_by?: UserSerializer;
|
|
650
642
|
slug_key?: string;
|
|
651
643
|
logo?: string;
|
|
652
644
|
description?: string;
|
|
653
645
|
};
|
|
654
|
-
/** @returns {
|
|
655
|
-
declare function
|
|
656
|
-
type
|
|
646
|
+
/** @returns {CreateUpdateBrandRequestSerializer} */
|
|
647
|
+
declare function CreateUpdateBrandRequestSerializer(): CreateUpdateBrandRequestSerializer;
|
|
648
|
+
type CreateUpdateBrandRequestSerializer = {
|
|
657
649
|
_custom_json?: any;
|
|
658
650
|
_locale_language?: any;
|
|
659
651
|
synonyms?: string[];
|
|
@@ -662,24 +654,10 @@ type CreateBrandRequestSchema = {
|
|
|
662
654
|
logo: string;
|
|
663
655
|
brand_tier?: string;
|
|
664
656
|
uid?: number;
|
|
665
|
-
banner:
|
|
657
|
+
banner: BrandBannerSerializer;
|
|
666
658
|
name: string;
|
|
667
659
|
slug_key?: string;
|
|
668
660
|
};
|
|
669
|
-
/** @returns {UpdateBrandRequestSchema} */
|
|
670
|
-
declare function UpdateBrandRequestSchema(): UpdateBrandRequestSchema;
|
|
671
|
-
type UpdateBrandRequestSchema = {
|
|
672
|
-
_custom_json?: any;
|
|
673
|
-
_locale_language?: any;
|
|
674
|
-
synonyms?: string[];
|
|
675
|
-
company_id?: number;
|
|
676
|
-
description?: string;
|
|
677
|
-
logo: string;
|
|
678
|
-
brand_tier?: string;
|
|
679
|
-
uid?: number;
|
|
680
|
-
banner: BrandBannerSchema;
|
|
681
|
-
name: string;
|
|
682
|
-
};
|
|
683
661
|
/** @returns {CompanySocialAccounts} */
|
|
684
662
|
declare function CompanySocialAccounts(): CompanySocialAccounts;
|
|
685
663
|
type CompanySocialAccounts = {
|
|
@@ -692,43 +670,43 @@ type CompanyDetails = {
|
|
|
692
670
|
socials?: CompanySocialAccounts[];
|
|
693
671
|
website_url?: string;
|
|
694
672
|
};
|
|
695
|
-
/** @returns {
|
|
696
|
-
declare function
|
|
697
|
-
type
|
|
673
|
+
/** @returns {CompanySerializer} */
|
|
674
|
+
declare function CompanySerializer(): CompanySerializer;
|
|
675
|
+
type CompanySerializer = {
|
|
698
676
|
stage?: string;
|
|
699
677
|
_custom_json?: any;
|
|
700
678
|
verified_on?: string;
|
|
701
|
-
verified_by?:
|
|
679
|
+
verified_by?: UserSerializer;
|
|
702
680
|
created_on?: string;
|
|
703
|
-
created_by?:
|
|
681
|
+
created_by?: UserSerializer;
|
|
704
682
|
company_type: string;
|
|
705
683
|
modified_on?: string;
|
|
706
684
|
market_channels?: string[];
|
|
707
|
-
business_type
|
|
708
|
-
addresses?:
|
|
685
|
+
business_type?: string;
|
|
686
|
+
addresses?: GetAddressSerializer[];
|
|
709
687
|
notification_emails?: string[];
|
|
710
688
|
details?: CompanyDetails;
|
|
711
689
|
business_country_info?: BusinessCountryInfo;
|
|
712
690
|
uid?: number;
|
|
713
691
|
reject_reason?: string;
|
|
714
692
|
name?: string;
|
|
715
|
-
modified_by?:
|
|
693
|
+
modified_by?: UserSerializer;
|
|
716
694
|
};
|
|
717
|
-
/** @returns {
|
|
718
|
-
declare function
|
|
719
|
-
type
|
|
695
|
+
/** @returns {CompanyBrandSerializer} */
|
|
696
|
+
declare function CompanyBrandSerializer(): CompanyBrandSerializer;
|
|
697
|
+
type CompanyBrandSerializer = {
|
|
720
698
|
stage?: string;
|
|
721
699
|
verified_on?: string;
|
|
722
|
-
verified_by?:
|
|
700
|
+
verified_by?: UserSerializer;
|
|
723
701
|
created_on?: string;
|
|
724
|
-
created_by?:
|
|
725
|
-
company?:
|
|
702
|
+
created_by?: UserSerializer;
|
|
703
|
+
company?: CompanySerializer;
|
|
726
704
|
warnings?: any;
|
|
727
705
|
modified_on?: string;
|
|
728
706
|
uid?: number;
|
|
729
707
|
reject_reason?: string;
|
|
730
|
-
brand?:
|
|
731
|
-
modified_by?:
|
|
708
|
+
brand?: GetBrandResponseSerializer;
|
|
709
|
+
modified_by?: UserSerializer;
|
|
732
710
|
};
|
|
733
711
|
/** @returns {Page} */
|
|
734
712
|
declare function Page(): Page;
|
|
@@ -761,139 +739,143 @@ type Page = {
|
|
|
761
739
|
* - The number of items per page.
|
|
762
740
|
*/
|
|
763
741
|
size?: number;
|
|
742
|
+
/**
|
|
743
|
+
* - Total number of items.
|
|
744
|
+
*/
|
|
745
|
+
total?: number;
|
|
764
746
|
};
|
|
765
|
-
/** @returns {
|
|
766
|
-
declare function
|
|
767
|
-
type
|
|
768
|
-
items?:
|
|
747
|
+
/** @returns {CompanyBrandListSerializer} */
|
|
748
|
+
declare function CompanyBrandListSerializer(): CompanyBrandListSerializer;
|
|
749
|
+
type CompanyBrandListSerializer = {
|
|
750
|
+
items?: CompanyBrandSerializer[];
|
|
769
751
|
page?: Page;
|
|
770
752
|
};
|
|
771
|
-
/** @returns {
|
|
772
|
-
declare function
|
|
773
|
-
type
|
|
753
|
+
/** @returns {CompanyBrandPostRequestSerializer} */
|
|
754
|
+
declare function CompanyBrandPostRequestSerializer(): CompanyBrandPostRequestSerializer;
|
|
755
|
+
type CompanyBrandPostRequestSerializer = {
|
|
774
756
|
uid?: number;
|
|
775
757
|
brands: number[];
|
|
776
758
|
company: number;
|
|
777
759
|
};
|
|
778
|
-
/** @returns {
|
|
779
|
-
declare function
|
|
780
|
-
type
|
|
760
|
+
/** @returns {InvoiceCredSerializer} */
|
|
761
|
+
declare function InvoiceCredSerializer(): InvoiceCredSerializer;
|
|
762
|
+
type InvoiceCredSerializer = {
|
|
781
763
|
username?: string;
|
|
782
764
|
enabled?: boolean;
|
|
783
765
|
password?: string;
|
|
784
766
|
};
|
|
785
|
-
/** @returns {
|
|
786
|
-
declare function
|
|
787
|
-
type
|
|
788
|
-
e_invoice?:
|
|
789
|
-
e_waybill?:
|
|
767
|
+
/** @returns {InvoiceDetailsSerializer} */
|
|
768
|
+
declare function InvoiceDetailsSerializer(): InvoiceDetailsSerializer;
|
|
769
|
+
type InvoiceDetailsSerializer = {
|
|
770
|
+
e_invoice?: InvoiceCredSerializer;
|
|
771
|
+
e_waybill?: InvoiceCredSerializer;
|
|
790
772
|
};
|
|
791
|
-
/** @returns {
|
|
792
|
-
declare function
|
|
793
|
-
type
|
|
773
|
+
/** @returns {GetCompanySerializer} */
|
|
774
|
+
declare function GetCompanySerializer(): GetCompanySerializer;
|
|
775
|
+
type GetCompanySerializer = {
|
|
794
776
|
stage?: string;
|
|
795
777
|
verified_on?: string;
|
|
796
|
-
verified_by?:
|
|
778
|
+
verified_by?: UserSerializer;
|
|
797
779
|
created_on?: string;
|
|
798
|
-
created_by?:
|
|
780
|
+
created_by?: UserSerializer;
|
|
799
781
|
company_type?: string;
|
|
800
782
|
modified_on?: string;
|
|
801
783
|
business_type?: string;
|
|
802
|
-
addresses?:
|
|
784
|
+
addresses?: GetAddressSerializer[];
|
|
803
785
|
uid?: number;
|
|
804
786
|
reject_reason?: string;
|
|
805
787
|
name?: string;
|
|
806
|
-
modified_by?:
|
|
788
|
+
modified_by?: UserSerializer;
|
|
807
789
|
};
|
|
808
|
-
/** @returns {
|
|
809
|
-
declare function
|
|
810
|
-
type
|
|
790
|
+
/** @returns {LocationManagerSerializer} */
|
|
791
|
+
declare function LocationManagerSerializer(): LocationManagerSerializer;
|
|
792
|
+
type LocationManagerSerializer = {
|
|
811
793
|
email?: string;
|
|
812
794
|
mobile_no: SellerPhoneNumber;
|
|
813
795
|
name?: string;
|
|
814
796
|
};
|
|
815
|
-
/** @returns {
|
|
816
|
-
declare function
|
|
817
|
-
type
|
|
797
|
+
/** @returns {LocationTimingSerializer} */
|
|
798
|
+
declare function LocationTimingSerializer(): LocationTimingSerializer;
|
|
799
|
+
type LocationTimingSerializer = {
|
|
818
800
|
hour: number;
|
|
819
801
|
minute: number;
|
|
820
802
|
};
|
|
821
|
-
/** @returns {
|
|
822
|
-
declare function
|
|
823
|
-
type
|
|
803
|
+
/** @returns {LocationDayWiseSerializer} */
|
|
804
|
+
declare function LocationDayWiseSerializer(): LocationDayWiseSerializer;
|
|
805
|
+
type LocationDayWiseSerializer = {
|
|
824
806
|
open: boolean;
|
|
825
807
|
weekday: string;
|
|
826
|
-
opening?:
|
|
827
|
-
closing?:
|
|
808
|
+
opening?: LocationTimingSerializer;
|
|
809
|
+
closing?: LocationTimingSerializer;
|
|
828
810
|
};
|
|
829
|
-
/** @returns {
|
|
830
|
-
declare function
|
|
831
|
-
type
|
|
811
|
+
/** @returns {HolidayDateSerializer} */
|
|
812
|
+
declare function HolidayDateSerializer(): HolidayDateSerializer;
|
|
813
|
+
type HolidayDateSerializer = {
|
|
832
814
|
end_date: string;
|
|
833
815
|
start_date: string;
|
|
834
816
|
};
|
|
835
|
-
/** @returns {
|
|
836
|
-
declare function
|
|
837
|
-
type
|
|
838
|
-
date:
|
|
817
|
+
/** @returns {HolidaySchemaSerializer} */
|
|
818
|
+
declare function HolidaySchemaSerializer(): HolidaySchemaSerializer;
|
|
819
|
+
type HolidaySchemaSerializer = {
|
|
820
|
+
date: HolidayDateSerializer;
|
|
839
821
|
title: string;
|
|
840
822
|
holiday_type: string;
|
|
841
823
|
};
|
|
842
|
-
/** @returns {
|
|
843
|
-
declare function
|
|
844
|
-
type
|
|
824
|
+
/** @returns {ProductReturnConfigSerializer} */
|
|
825
|
+
declare function ProductReturnConfigSerializer(): ProductReturnConfigSerializer;
|
|
826
|
+
type ProductReturnConfigSerializer = {
|
|
845
827
|
on_same_store?: boolean;
|
|
846
828
|
store_uid?: number;
|
|
847
829
|
};
|
|
848
|
-
/** @returns {
|
|
849
|
-
declare function
|
|
850
|
-
type
|
|
830
|
+
/** @returns {GetLocationSerializer} */
|
|
831
|
+
declare function GetLocationSerializer(): GetLocationSerializer;
|
|
832
|
+
type GetLocationSerializer = {
|
|
851
833
|
code: string;
|
|
852
834
|
phone_number?: string;
|
|
853
835
|
contact_numbers?: SellerPhoneNumber[];
|
|
854
|
-
gst_credentials?:
|
|
836
|
+
gst_credentials?: InvoiceDetailsSerializer;
|
|
855
837
|
name: string;
|
|
856
838
|
_custom_json?: any;
|
|
857
839
|
verified_on?: string;
|
|
858
|
-
created_by?:
|
|
840
|
+
created_by?: UserSerializer;
|
|
859
841
|
created_on?: string;
|
|
860
|
-
company?:
|
|
861
|
-
address:
|
|
842
|
+
company?: GetCompanySerializer;
|
|
843
|
+
address: GetAddressSerializer;
|
|
862
844
|
warnings?: any;
|
|
863
845
|
store_type?: string;
|
|
864
|
-
manager?:
|
|
846
|
+
manager?: LocationManagerSerializer;
|
|
865
847
|
auto_invoice?: boolean;
|
|
866
848
|
modified_on?: string;
|
|
867
849
|
uid?: number;
|
|
868
|
-
timing?:
|
|
850
|
+
timing?: LocationDayWiseSerializer[];
|
|
869
851
|
stage?: string;
|
|
870
852
|
documents?: Document[];
|
|
871
853
|
credit_note?: boolean;
|
|
872
|
-
holiday?:
|
|
854
|
+
holiday?: HolidaySchemaSerializer[];
|
|
873
855
|
display_name: string;
|
|
874
|
-
product_return_config?:
|
|
875
|
-
verified_by?:
|
|
856
|
+
product_return_config?: ProductReturnConfigSerializer;
|
|
857
|
+
verified_by?: UserSerializer;
|
|
876
858
|
notification_emails?: string[];
|
|
877
|
-
modified_by?:
|
|
859
|
+
modified_by?: UserSerializer;
|
|
878
860
|
tags?: string[];
|
|
879
861
|
default_order_acceptance_timing?: boolean;
|
|
880
|
-
order_acceptance_timing?:
|
|
862
|
+
order_acceptance_timing?: LocationDayWiseSerializer[];
|
|
881
863
|
avg_order_processing_time?: AverageOrderProcessingTime;
|
|
882
864
|
bulk_shipment?: boolean;
|
|
883
865
|
auto_assign_courier_partner?: boolean;
|
|
884
866
|
};
|
|
885
|
-
/** @returns {
|
|
886
|
-
declare function
|
|
887
|
-
type
|
|
888
|
-
items?:
|
|
867
|
+
/** @returns {LocationListSerializer} */
|
|
868
|
+
declare function LocationListSerializer(): LocationListSerializer;
|
|
869
|
+
type LocationListSerializer = {
|
|
870
|
+
items?: GetLocationSerializer[];
|
|
889
871
|
page?: Page;
|
|
890
872
|
};
|
|
891
|
-
/** @returns {
|
|
892
|
-
declare function
|
|
893
|
-
type
|
|
873
|
+
/** @returns {AddressSerializer} */
|
|
874
|
+
declare function AddressSerializer(): AddressSerializer;
|
|
875
|
+
type AddressSerializer = {
|
|
894
876
|
landmark?: string;
|
|
895
877
|
country_code: string;
|
|
896
|
-
pincode?:
|
|
878
|
+
pincode?: string;
|
|
897
879
|
address_type?: string;
|
|
898
880
|
longitude: number;
|
|
899
881
|
country?: string;
|
|
@@ -905,27 +887,27 @@ type AddressSchema = {
|
|
|
905
887
|
city?: string;
|
|
906
888
|
latitude: number;
|
|
907
889
|
};
|
|
908
|
-
/** @returns {
|
|
909
|
-
declare function
|
|
910
|
-
type
|
|
890
|
+
/** @returns {LocationSerializer} */
|
|
891
|
+
declare function LocationSerializer(): LocationSerializer;
|
|
892
|
+
type LocationSerializer = {
|
|
911
893
|
code: string;
|
|
912
|
-
gst_credentials?:
|
|
894
|
+
gst_credentials?: InvoiceDetailsSerializer;
|
|
913
895
|
contact_numbers?: SellerPhoneNumber[];
|
|
914
896
|
name: string;
|
|
915
897
|
_custom_json?: any;
|
|
916
898
|
warnings?: any;
|
|
917
|
-
address:
|
|
899
|
+
address: AddressSerializer;
|
|
918
900
|
company: number;
|
|
919
901
|
store_type?: string;
|
|
920
|
-
manager?:
|
|
902
|
+
manager?: LocationManagerSerializer;
|
|
921
903
|
auto_invoice?: boolean;
|
|
922
904
|
uid?: number;
|
|
923
|
-
timing?:
|
|
905
|
+
timing?: LocationDayWiseSerializer[];
|
|
924
906
|
stage?: string;
|
|
925
907
|
documents: Document[];
|
|
926
908
|
credit_note?: boolean;
|
|
927
|
-
holiday?:
|
|
928
|
-
product_return_config?:
|
|
909
|
+
holiday?: HolidaySchemaSerializer[];
|
|
910
|
+
product_return_config?: ProductReturnConfigSerializer;
|
|
929
911
|
display_name: string;
|
|
930
912
|
notification_emails?: string[];
|
|
931
913
|
tags?: string[];
|
|
@@ -938,15 +920,15 @@ type LocationSchema = {
|
|
|
938
920
|
* - Order
|
|
939
921
|
* acceptance timing of the store
|
|
940
922
|
*/
|
|
941
|
-
order_acceptance_timing?:
|
|
923
|
+
order_acceptance_timing?: LocationDayWiseSerializer[];
|
|
942
924
|
avg_order_processing_time?: AverageOrderProcessingTime;
|
|
943
925
|
bulk_shipment?: boolean;
|
|
944
926
|
auto_assign_courier_partner?: boolean;
|
|
945
927
|
};
|
|
946
|
-
/** @returns {
|
|
947
|
-
declare function
|
|
948
|
-
type
|
|
949
|
-
data?:
|
|
928
|
+
/** @returns {BulkLocationSerializer} */
|
|
929
|
+
declare function BulkLocationSerializer(): BulkLocationSerializer;
|
|
930
|
+
type BulkLocationSerializer = {
|
|
931
|
+
data?: LocationSerializer[];
|
|
950
932
|
};
|
|
951
933
|
/** @returns {AverageOrderProcessingTime} */
|
|
952
934
|
declare function AverageOrderProcessingTime(): AverageOrderProcessingTime;
|