@gofynd/fdk-client-javascript 1.0.1 → 1.0.3
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/documentation/application/CART.md +5934 -4502
- package/documentation/application/CATALOG.md +6338 -7245
- package/documentation/application/COMMON.md +95 -222
- package/documentation/application/COMMUNICATION.md +106 -186
- package/documentation/application/CONFIGURATION.md +903 -1597
- package/documentation/application/CONTENT.md +562 -1270
- package/documentation/application/FILESTORAGE.md +84 -220
- package/documentation/application/LEAD.md +314 -660
- package/documentation/application/LOGISTIC.md +229 -305
- package/documentation/application/ORDER.md +642 -1137
- package/documentation/application/PAYMENT.md +2285 -3031
- package/documentation/application/POSCART.md +6079 -4642
- package/documentation/application/REWARDS.md +94 -248
- package/documentation/application/SHARE.md +152 -250
- package/documentation/application/THEME.md +952 -1235
- package/documentation/application/USER.md +1228 -1765
- package/documentation/platform/ANALYTICS.md +207 -349
- package/documentation/platform/AUDITTRAIL.md +121 -204
- package/documentation/platform/BILLING.md +865 -1376
- package/documentation/platform/CART.md +2814 -3662
- package/documentation/platform/CATALOG.md +15266 -17619
- package/documentation/platform/COMMON.md +95 -222
- package/documentation/platform/COMMUNICATION.md +1632 -2380
- package/documentation/platform/COMPANYPROFILE.md +572 -957
- package/documentation/platform/CONFIGURATION.md +3050 -4073
- package/documentation/platform/CONTENT.md +3509 -4121
- package/documentation/platform/DISCOUNT.md +140 -236
- package/documentation/platform/FILESTORAGE.md +187 -323
- package/documentation/platform/INVENTORY.md +268 -911
- package/documentation/platform/LEAD.md +2195 -2541
- package/documentation/platform/ORDER.md +3750 -5636
- package/documentation/platform/PARTNER.md +9 -36
- package/documentation/platform/PAYMENT.md +903 -1213
- package/documentation/platform/REWARDS.md +183 -347
- package/documentation/platform/SHARE.md +120 -213
- package/documentation/platform/THEME.md +12956 -13239
- package/documentation/platform/USER.md +975 -1120
- package/documentation/platform/WEBHOOK.md +78 -184
- package/documentation/public/CONFIGURATION.md +95 -222
- package/documentation/public/INVENTORY.md +100 -282
- package/documentation/public/WEBHOOK.md +27 -133
- package/package.json +1 -1
- package/sdk/application/ApplicationConfig.js +1 -1
- package/sdk/application/Cart/CartApplicationClient.d.ts +243 -243
- package/sdk/application/Cart/CartApplicationClient.js +1058 -547
- package/sdk/application/Cart/CartApplicationModel.d.ts +64 -63
- package/sdk/application/Cart/CartApplicationModel.js +489 -886
- package/sdk/application/Cart/CartApplicationValidator.d.ts +17 -17
- package/sdk/application/Cart/CartApplicationValidator.js +98 -98
- package/sdk/application/Catalog/CatalogApplicationClient.d.ts +358 -358
- package/sdk/application/Catalog/CatalogApplicationClient.js +1545 -949
- package/sdk/application/Catalog/CatalogApplicationModel.d.ts +90 -90
- package/sdk/application/Catalog/CatalogApplicationModel.js +692 -1258
- package/sdk/application/Catalog/CatalogApplicationValidator.d.ts +19 -19
- package/sdk/application/Catalog/CatalogApplicationValidator.js +110 -110
- package/sdk/application/Common/CommonApplicationClient.d.ts +13 -13
- package/sdk/application/Common/CommonApplicationClient.js +76 -36
- package/sdk/application/Common/CommonApplicationModel.d.ts +12 -12
- package/sdk/application/Common/CommonApplicationModel.js +83 -160
- package/sdk/application/Common/CommonApplicationValidator.d.ts +1 -1
- package/sdk/application/Common/CommonApplicationValidator.js +6 -6
- package/sdk/application/Communication/CommunicationApplicationClient.d.ts +11 -11
- package/sdk/application/Communication/CommunicationApplicationClient.js +92 -31
- package/sdk/application/Communication/CommunicationApplicationModel.d.ts +6 -6
- package/sdk/application/Communication/CommunicationApplicationModel.js +38 -83
- package/sdk/application/Communication/CommunicationApplicationValidator.d.ts +1 -1
- package/sdk/application/Communication/CommunicationApplicationValidator.js +4 -4
- package/sdk/application/Configuration/ConfigurationApplicationClient.d.ts +116 -116
- package/sdk/application/Configuration/ConfigurationApplicationClient.js +638 -312
- package/sdk/application/Configuration/ConfigurationApplicationModel.d.ts +85 -85
- package/sdk/application/Configuration/ConfigurationApplicationModel.js +480 -851
- package/sdk/application/Configuration/ConfigurationApplicationValidator.d.ts +8 -8
- package/sdk/application/Configuration/ConfigurationApplicationValidator.js +33 -33
- package/sdk/application/Content/ContentApplicationClient.d.ts +67 -67
- package/sdk/application/Content/ContentApplicationClient.js +581 -213
- package/sdk/application/Content/ContentApplicationModel.d.ts +76 -75
- package/sdk/application/Content/ContentApplicationModel.js +468 -875
- package/sdk/application/Content/ContentApplicationValidator.d.ts +5 -5
- package/sdk/application/Content/ContentApplicationValidator.js +24 -24
- package/sdk/application/FileStorage/FileStorageApplicationClient.d.ts +25 -25
- package/sdk/application/FileStorage/FileStorageApplicationClient.js +121 -59
- package/sdk/application/FileStorage/FileStorageApplicationModel.d.ts +13 -13
- package/sdk/application/FileStorage/FileStorageApplicationModel.js +86 -169
- package/sdk/application/FileStorage/FileStorageApplicationValidator.d.ts +1 -1
- package/sdk/application/FileStorage/FileStorageApplicationValidator.js +7 -7
- package/sdk/application/Lead/LeadApplicationClient.d.ts +24 -24
- package/sdk/application/Lead/LeadApplicationClient.js +230 -96
- package/sdk/application/Lead/LeadApplicationModel.d.ts +35 -35
- package/sdk/application/Lead/LeadApplicationModel.js +267 -474
- package/sdk/application/Lead/LeadApplicationValidator.d.ts +2 -2
- package/sdk/application/Lead/LeadApplicationValidator.js +11 -11
- package/sdk/application/Logistic/LogisticApplicationClient.d.ts +30 -19
- package/sdk/application/Logistic/LogisticApplicationClient.js +196 -47
- package/sdk/application/Logistic/LogisticApplicationModel.d.ts +17 -14
- package/sdk/application/Logistic/LogisticApplicationModel.js +133 -201
- package/sdk/application/Logistic/LogisticApplicationValidator.d.ts +3 -2
- package/sdk/application/Logistic/LogisticApplicationValidator.js +14 -8
- package/sdk/application/Order/OrderApplicationClient.d.ts +86 -86
- package/sdk/application/Order/OrderApplicationClient.js +448 -215
- package/sdk/application/Order/OrderApplicationModel.d.ts +50 -50
- package/sdk/application/Order/OrderApplicationModel.js +357 -661
- package/sdk/application/Order/OrderApplicationValidator.d.ts +7 -7
- package/sdk/application/Order/OrderApplicationValidator.js +28 -28
- package/sdk/application/Payment/PaymentApplicationClient.d.ts +318 -318
- package/sdk/application/Payment/PaymentApplicationClient.js +1525 -750
- package/sdk/application/Payment/PaymentApplicationModel.d.ts +72 -72
- package/sdk/application/Payment/PaymentApplicationModel.js +565 -1033
- package/sdk/application/Payment/PaymentApplicationValidator.d.ts +28 -28
- package/sdk/application/Payment/PaymentApplicationValidator.js +107 -107
- package/sdk/application/PosCart/PosCartApplicationClient.d.ts +254 -254
- package/sdk/application/PosCart/PosCartApplicationClient.js +1137 -606
- package/sdk/application/PosCart/PosCartApplicationModel.d.ts +61 -60
- package/sdk/application/PosCart/PosCartApplicationModel.js +477 -873
- package/sdk/application/PosCart/PosCartApplicationValidator.d.ts +18 -18
- package/sdk/application/PosCart/PosCartApplicationValidator.js +103 -103
- package/sdk/application/Rewards/RewardsApplicationClient.d.ts +27 -27
- package/sdk/application/Rewards/RewardsApplicationClient.js +253 -113
- package/sdk/application/Rewards/RewardsApplicationModel.d.ts +14 -14
- package/sdk/application/Rewards/RewardsApplicationModel.js +96 -191
- package/sdk/application/Rewards/RewardsApplicationValidator.d.ts +3 -3
- package/sdk/application/Rewards/RewardsApplicationValidator.js +12 -12
- package/sdk/application/Share/ShareApplicationClient.d.ts +37 -37
- package/sdk/application/Share/ShareApplicationClient.js +221 -96
- package/sdk/application/Share/ShareApplicationModel.d.ts +8 -8
- package/sdk/application/Share/ShareApplicationModel.js +63 -123
- package/sdk/application/Share/ShareApplicationValidator.d.ts +4 -4
- package/sdk/application/Share/ShareApplicationValidator.js +12 -12
- package/sdk/application/Theme/ThemeApplicationClient.d.ts +8 -8
- package/sdk/application/Theme/ThemeApplicationClient.js +115 -37
- package/sdk/application/Theme/ThemeApplicationModel.d.ts +34 -34
- package/sdk/application/Theme/ThemeApplicationModel.js +190 -336
- package/sdk/application/Theme/ThemeApplicationValidator.d.ts +1 -1
- package/sdk/application/Theme/ThemeApplicationValidator.js +4 -4
- package/sdk/application/User/UserApplicationClient.d.ts +280 -280
- package/sdk/application/User/UserApplicationClient.js +1201 -543
- package/sdk/application/User/UserApplicationModel.d.ts +79 -72
- package/sdk/application/User/UserApplicationModel.js +440 -689
- package/sdk/application/User/UserApplicationValidator.d.ts +24 -24
- package/sdk/application/User/UserApplicationValidator.js +89 -89
- package/sdk/common/AxiosHelper.js +1 -1
- package/sdk/platform/Analytics/AnalyticsPlatformApplicationClient.d.ts +55 -47
- package/sdk/platform/Analytics/AnalyticsPlatformApplicationClient.js +308 -151
- package/sdk/platform/Analytics/AnalyticsPlatformApplicationValidator.d.ts +6 -6
- package/sdk/platform/Analytics/AnalyticsPlatformApplicationValidator.js +20 -20
- package/sdk/platform/Analytics/AnalyticsPlatformClient.d.ts +8 -4
- package/sdk/platform/Analytics/AnalyticsPlatformClient.js +103 -16
- package/sdk/platform/Analytics/AnalyticsPlatformModel.d.ts +11 -11
- package/sdk/platform/Analytics/AnalyticsPlatformModel.js +95 -178
- package/sdk/platform/AuditTrail/AuditTrailPlatformClient.d.ts +16 -12
- package/sdk/platform/AuditTrail/AuditTrailPlatformClient.js +131 -44
- package/sdk/platform/AuditTrail/AuditTrailPlatformModel.d.ts +10 -10
- package/sdk/platform/AuditTrail/AuditTrailPlatformModel.js +50 -89
- package/sdk/platform/AuditTrail/AuditTrailPlatformValidator.d.ts +1 -1
- package/sdk/platform/AuditTrail/AuditTrailPlatformValidator.js +6 -6
- package/sdk/platform/Billing/BillingPlatformClient.d.ts +68 -56
- package/sdk/platform/Billing/BillingPlatformClient.js +416 -171
- package/sdk/platform/Billing/BillingPlatformModel.d.ts +40 -40
- package/sdk/platform/Billing/BillingPlatformModel.js +342 -668
- package/sdk/platform/Billing/BillingPlatformValidator.d.ts +8 -8
- package/sdk/platform/Billing/BillingPlatformValidator.js +25 -25
- package/sdk/platform/Cart/CartPlatformApplicationClient.d.ts +176 -159
- package/sdk/platform/Cart/CartPlatformApplicationClient.js +837 -500
- package/sdk/platform/Cart/CartPlatformApplicationValidator.d.ts +11 -11
- package/sdk/platform/Cart/CartPlatformApplicationValidator.js +63 -63
- package/sdk/platform/Cart/CartPlatformModel.d.ts +86 -85
- package/sdk/platform/Cart/CartPlatformModel.js +677 -1211
- package/sdk/platform/Catalog/CatalogPlatformApplicationClient.d.ts +582 -529
- package/sdk/platform/Catalog/CatalogPlatformApplicationClient.js +2642 -1533
- package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.d.ts +40 -40
- package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.js +175 -175
- package/sdk/platform/Catalog/CatalogPlatformClient.d.ts +708 -590
- package/sdk/platform/Catalog/CatalogPlatformClient.js +3103 -1362
- package/sdk/platform/Catalog/CatalogPlatformModel.d.ts +293 -284
- package/sdk/platform/Catalog/CatalogPlatformModel.js +2149 -3660
- package/sdk/platform/Catalog/CatalogPlatformValidator.d.ts +66 -64
- package/sdk/platform/Catalog/CatalogPlatformValidator.js +235 -216
- package/sdk/platform/Common/CommonPlatformClient.d.ts +14 -12
- package/sdk/platform/Common/CommonPlatformClient.js +80 -37
- package/sdk/platform/Common/CommonPlatformModel.d.ts +12 -12
- package/sdk/platform/Common/CommonPlatformModel.js +83 -160
- package/sdk/platform/Common/CommonPlatformValidator.d.ts +1 -1
- package/sdk/platform/Common/CommonPlatformValidator.js +6 -6
- package/sdk/platform/Communication/CommunicationPlatformApplicationClient.d.ts +333 -293
- package/sdk/platform/Communication/CommunicationPlatformApplicationClient.js +1687 -855
- package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.d.ts +30 -30
- package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.js +87 -87
- package/sdk/platform/Communication/CommunicationPlatformClient.d.ts +2 -1
- package/sdk/platform/Communication/CommunicationPlatformClient.js +28 -4
- package/sdk/platform/Communication/CommunicationPlatformModel.d.ts +67 -67
- package/sdk/platform/Communication/CommunicationPlatformModel.js +522 -974
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.d.ts +70 -57
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.js +463 -182
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.d.ts +28 -28
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.js +294 -557
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformValidator.d.ts +7 -7
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformValidator.js +24 -24
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.d.ts +175 -137
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.js +1168 -521
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationValidator.d.ts +22 -21
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationValidator.js +69 -63
- package/sdk/platform/Configuration/ConfigurationPlatformClient.d.ts +137 -119
- package/sdk/platform/Configuration/ConfigurationPlatformClient.js +691 -316
- package/sdk/platform/Configuration/ConfigurationPlatformModel.d.ts +148 -146
- package/sdk/platform/Configuration/ConfigurationPlatformModel.js +854 -1508
- package/sdk/platform/Configuration/ConfigurationPlatformValidator.d.ts +9 -9
- package/sdk/platform/Configuration/ConfigurationPlatformValidator.js +38 -38
- package/sdk/platform/Content/ContentPlatformApplicationClient.d.ts +542 -461
- package/sdk/platform/Content/ContentPlatformApplicationClient.js +2600 -1160
- package/sdk/platform/Content/ContentPlatformApplicationValidator.d.ts +50 -49
- package/sdk/platform/Content/ContentPlatformApplicationValidator.js +159 -152
- package/sdk/platform/Content/ContentPlatformModel.d.ts +79 -75
- package/sdk/platform/Content/ContentPlatformModel.js +486 -867
- package/sdk/platform/Discount/DiscountPlatformClient.d.ts +72 -61
- package/sdk/platform/Discount/DiscountPlatformClient.js +424 -198
- package/sdk/platform/Discount/DiscountPlatformModel.d.ts +7 -7
- package/sdk/platform/Discount/DiscountPlatformModel.js +60 -121
- package/sdk/platform/Discount/DiscountPlatformValidator.d.ts +6 -6
- package/sdk/platform/Discount/DiscountPlatformValidator.js +29 -29
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.d.ts +26 -22
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.js +145 -59
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.d.ts +1 -1
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.js +8 -8
- package/sdk/platform/FileStorage/FileStoragePlatformClient.d.ts +58 -52
- package/sdk/platform/FileStorage/FileStoragePlatformClient.js +240 -114
- package/sdk/platform/FileStorage/FileStoragePlatformModel.d.ts +13 -13
- package/sdk/platform/FileStorage/FileStoragePlatformModel.js +86 -169
- package/sdk/platform/FileStorage/FileStoragePlatformValidator.d.ts +3 -3
- package/sdk/platform/FileStorage/FileStoragePlatformValidator.js +11 -11
- package/sdk/platform/Inventory/InventoryPlatformClient.d.ts +76 -63
- package/sdk/platform/Inventory/InventoryPlatformClient.js +461 -197
- package/sdk/platform/Inventory/InventoryPlatformModel.d.ts +30 -30
- package/sdk/platform/Inventory/InventoryPlatformModel.js +497 -964
- package/sdk/platform/Inventory/InventoryPlatformValidator.d.ts +7 -7
- package/sdk/platform/Inventory/InventoryPlatformValidator.js +28 -28
- package/sdk/platform/Lead/LeadPlatformApplicationClient.d.ts +84 -71
- package/sdk/platform/Lead/LeadPlatformApplicationClient.js +441 -182
- package/sdk/platform/Lead/LeadPlatformApplicationValidator.d.ts +7 -7
- package/sdk/platform/Lead/LeadPlatformApplicationValidator.js +28 -28
- package/sdk/platform/Lead/LeadPlatformClient.d.ts +86 -75
- package/sdk/platform/Lead/LeadPlatformClient.js +434 -212
- package/sdk/platform/Lead/LeadPlatformModel.d.ts +35 -35
- package/sdk/platform/Lead/LeadPlatformModel.js +267 -474
- package/sdk/platform/Lead/LeadPlatformValidator.d.ts +6 -6
- package/sdk/platform/Lead/LeadPlatformValidator.js +24 -24
- package/sdk/platform/OAuthClient.js +8 -8
- package/sdk/platform/Order/OrderPlatformApplicationClient.d.ts +14 -11
- package/sdk/platform/Order/OrderPlatformApplicationClient.js +113 -49
- package/sdk/platform/Order/OrderPlatformApplicationValidator.d.ts +1 -1
- package/sdk/platform/Order/OrderPlatformApplicationValidator.js +6 -6
- package/sdk/platform/Order/OrderPlatformClient.d.ts +367 -315
- package/sdk/platform/Order/OrderPlatformClient.js +1775 -893
- package/sdk/platform/Order/OrderPlatformModel.d.ts +198 -192
- package/sdk/platform/Order/OrderPlatformModel.js +1591 -2822
- package/sdk/platform/Order/OrderPlatformValidator.d.ts +32 -32
- package/sdk/platform/Order/OrderPlatformValidator.js +160 -155
- package/sdk/platform/Partner/PartnerPlatformApplicationClient.d.ts +4 -2
- package/sdk/platform/Partner/PartnerPlatformApplicationClient.js +52 -8
- package/sdk/platform/Partner/PartnerPlatformModel.js +6 -22
- package/sdk/platform/Payment/PaymentPlatformApplicationClient.d.ts +65 -54
- package/sdk/platform/Payment/PaymentPlatformApplicationClient.js +395 -164
- package/sdk/platform/Payment/PaymentPlatformApplicationValidator.d.ts +6 -6
- package/sdk/platform/Payment/PaymentPlatformApplicationValidator.js +23 -23
- package/sdk/platform/Payment/PaymentPlatformClient.d.ts +55 -45
- package/sdk/platform/Payment/PaymentPlatformClient.js +362 -147
- package/sdk/platform/Payment/PaymentPlatformModel.d.ts +27 -27
- package/sdk/platform/Payment/PaymentPlatformModel.js +220 -408
- package/sdk/platform/Payment/PaymentPlatformValidator.d.ts +4 -4
- package/sdk/platform/Payment/PaymentPlatformValidator.js +21 -21
- package/sdk/platform/PlatformApplicationClient.d.ts +1496 -10153
- package/sdk/platform/PlatformApplicationClient.js +1584 -13691
- package/sdk/platform/PlatformClient.d.ts +7918 -7666
- package/sdk/platform/PlatformClient.js +8701 -9926
- package/sdk/platform/Rewards/RewardsPlatformApplicationClient.d.ts +91 -78
- package/sdk/platform/Rewards/RewardsPlatformApplicationClient.js +507 -253
- package/sdk/platform/Rewards/RewardsPlatformApplicationValidator.d.ts +8 -8
- package/sdk/platform/Rewards/RewardsPlatformApplicationValidator.js +34 -34
- package/sdk/platform/Rewards/RewardsPlatformModel.d.ts +15 -15
- package/sdk/platform/Rewards/RewardsPlatformModel.js +92 -194
- package/sdk/platform/Share/SharePlatformApplicationClient.d.ts +16 -12
- package/sdk/platform/Share/SharePlatformApplicationClient.js +130 -52
- package/sdk/platform/Share/SharePlatformApplicationValidator.d.ts +1 -1
- package/sdk/platform/Share/SharePlatformApplicationValidator.js +6 -6
- package/sdk/platform/Share/SharePlatformModel.d.ts +8 -8
- package/sdk/platform/Share/SharePlatformModel.js +60 -118
- package/sdk/platform/Theme/ThemePlatformApplicationClient.d.ts +148 -124
- package/sdk/platform/Theme/ThemePlatformApplicationClient.js +770 -295
- package/sdk/platform/Theme/ThemePlatformApplicationValidator.d.ts +15 -15
- package/sdk/platform/Theme/ThemePlatformApplicationValidator.js +44 -44
- package/sdk/platform/Theme/ThemePlatformModel.d.ts +34 -34
- package/sdk/platform/Theme/ThemePlatformModel.js +190 -336
- package/sdk/platform/User/UserPlatformApplicationClient.d.ts +146 -67
- package/sdk/platform/User/UserPlatformApplicationClient.js +742 -155
- package/sdk/platform/User/UserPlatformApplicationValidator.d.ts +12 -7
- package/sdk/platform/User/UserPlatformApplicationValidator.js +61 -23
- package/sdk/platform/User/UserPlatformModel.d.ts +79 -72
- package/sdk/platform/User/UserPlatformModel.js +440 -689
- package/sdk/platform/Webhook/WebhookPlatformClient.d.ts +35 -29
- package/sdk/platform/Webhook/WebhookPlatformClient.js +218 -91
- package/sdk/platform/Webhook/WebhookPlatformModel.d.ts +7 -7
- package/sdk/platform/Webhook/WebhookPlatformModel.js +68 -136
- package/sdk/platform/Webhook/WebhookPlatformValidator.d.ts +3 -3
- package/sdk/platform/Webhook/WebhookPlatformValidator.js +14 -14
- package/sdk/public/Configuration/ConfigurationPublicClient.d.ts +13 -13
- package/sdk/public/Configuration/ConfigurationPublicClient.js +81 -38
- package/sdk/public/Configuration/ConfigurationPublicModel.d.ts +12 -12
- package/sdk/public/Configuration/ConfigurationPublicModel.js +85 -162
- package/sdk/public/Configuration/ConfigurationPublicValidator.d.ts +1 -1
- package/sdk/public/Configuration/ConfigurationPublicValidator.js +6 -6
- package/sdk/public/Inventory/InventoryPublicClient.d.ts +34 -34
- package/sdk/public/Inventory/InventoryPublicClient.js +228 -105
- package/sdk/public/Inventory/InventoryPublicModel.d.ts +10 -10
- package/sdk/public/Inventory/InventoryPublicModel.js +119 -245
- package/sdk/public/Inventory/InventoryPublicValidator.d.ts +3 -3
- package/sdk/public/Inventory/InventoryPublicValidator.js +15 -15
- package/sdk/public/Webhook/WebhookPublicClient.js +51 -10
- package/sdk/public/Webhook/WebhookPublicModel.d.ts +7 -7
- package/sdk/public/Webhook/WebhookPublicModel.js +68 -136
- package/tests/application/catalog.spec.js +7 -0
|
@@ -1,222 +1,228 @@
|
|
|
1
1
|
export = OrderModel;
|
|
2
2
|
declare class OrderModel {
|
|
3
|
-
static
|
|
4
|
-
static
|
|
5
|
-
static
|
|
6
|
-
static
|
|
7
|
-
static
|
|
8
|
-
static
|
|
9
|
-
static
|
|
10
|
-
static
|
|
11
|
-
static
|
|
12
|
-
static
|
|
13
|
-
static
|
|
14
|
-
static
|
|
15
|
-
static
|
|
3
|
+
static ActionInfo(): any;
|
|
4
|
+
static Affiliate(): any;
|
|
5
|
+
static AffiliateAppConfig(): any;
|
|
6
|
+
static AffiliateAppConfigMeta(): any;
|
|
7
|
+
static AffiliateBag(): any;
|
|
8
|
+
static AffiliateBagDetails(): any;
|
|
9
|
+
static AffiliateConfig(): any;
|
|
10
|
+
static AffiliateDetails(): any;
|
|
11
|
+
static AffiliateInventoryArticleAssignmentConfig(): any;
|
|
12
|
+
static AffiliateInventoryConfig(): any;
|
|
13
|
+
static AffiliateInventoryLogisticsConfig(): any;
|
|
14
|
+
static AffiliateInventoryOrderConfig(): any;
|
|
15
|
+
static AffiliateInventoryPaymentConfig(): any;
|
|
16
|
+
static AffiliateInventoryStoreConfig(): any;
|
|
17
|
+
static AffiliateMeta(): any;
|
|
18
|
+
static AffiliateStoreIdMapping(): any;
|
|
19
|
+
static AnnouncementResponse(): any;
|
|
20
|
+
static AnnouncementsResponse(): any;
|
|
21
|
+
static AppliedPromos(): any;
|
|
22
|
+
static Article(): any;
|
|
23
|
+
static ArticleDetails(): any;
|
|
24
|
+
static ArticleDetails1(): any;
|
|
25
|
+
static Attributes(): any;
|
|
26
|
+
static B2BPODetails(): any;
|
|
27
|
+
static BagConfigs(): any;
|
|
28
|
+
static BagDetailsPlatformResponse(): any;
|
|
29
|
+
static BagGST(): any;
|
|
30
|
+
static BagGSTDetails(): any;
|
|
31
|
+
static BagMeta(): any;
|
|
32
|
+
static BagReturnableCancelableStatus(): any;
|
|
33
|
+
static Bags(): any;
|
|
16
34
|
static BagStateMapper(): any;
|
|
17
35
|
static BagStatusHistory(): any;
|
|
18
|
-
static
|
|
19
|
-
static
|
|
20
|
-
static
|
|
21
|
-
static
|
|
22
|
-
static
|
|
23
|
-
static
|
|
24
|
-
static
|
|
25
|
-
static
|
|
26
|
-
static
|
|
27
|
-
static
|
|
28
|
-
static
|
|
29
|
-
static
|
|
30
|
-
static
|
|
31
|
-
static
|
|
32
|
-
static
|
|
36
|
+
static BagUnit(): any;
|
|
37
|
+
static BaseResponse(): any;
|
|
38
|
+
static BillingInfo(): any;
|
|
39
|
+
static BillingStaffDetails(): any;
|
|
40
|
+
static Brand(): any;
|
|
41
|
+
static BulkActionDetailsDataField(): any;
|
|
42
|
+
static BulkActionDetailsResponse(): any;
|
|
43
|
+
static BulkActionPayload(): any;
|
|
44
|
+
static BulkActionResponse(): any;
|
|
45
|
+
static BulkInvoiceLabelResponse(): any;
|
|
46
|
+
static BulkInvoicingResponse(): any;
|
|
47
|
+
static bulkListingData(): any;
|
|
48
|
+
static BulkListingPage(): any;
|
|
49
|
+
static BulkListingResponse(): any;
|
|
50
|
+
static BuyerDetails(): any;
|
|
33
51
|
static BuyRules(): any;
|
|
34
|
-
static
|
|
35
|
-
static
|
|
36
|
-
static
|
|
37
|
-
static
|
|
38
|
-
static
|
|
39
|
-
static
|
|
40
|
-
static
|
|
41
|
-
static
|
|
42
|
-
static
|
|
52
|
+
static Charge(): any;
|
|
53
|
+
static CheckResponse(): any;
|
|
54
|
+
static Click2CallResponse(): any;
|
|
55
|
+
static CompanyDetails(): any;
|
|
56
|
+
static ContactDetails(): any;
|
|
57
|
+
static CreateChannelConfig(): any;
|
|
58
|
+
static CreateChannelConfigData(): any;
|
|
59
|
+
static CreateChannelConfigResponse(): any;
|
|
60
|
+
static CreateChannelConifgErrorResponse(): any;
|
|
61
|
+
static CreateChannelPaymentInfo(): any;
|
|
62
|
+
static CreateOrderAPI(): any;
|
|
63
|
+
static CreateOrderErrorReponse(): any;
|
|
64
|
+
static CreateOrderPayload(): any;
|
|
65
|
+
static CreateOrderResponse(): any;
|
|
66
|
+
static CurrentStatus(): any;
|
|
67
|
+
static DataUpdates(): any;
|
|
68
|
+
static Dates(): any;
|
|
43
69
|
static DebugInfo(): any;
|
|
44
|
-
static
|
|
70
|
+
static Dimensions(): any;
|
|
71
|
+
static DiscountRules(): any;
|
|
72
|
+
static DispatchManifest(): any;
|
|
73
|
+
static Document(): any;
|
|
74
|
+
static DpConfiguration(): any;
|
|
75
|
+
static DPDetailsData(): any;
|
|
45
76
|
static EinvoiceInfo(): any;
|
|
46
|
-
static
|
|
77
|
+
static EInvoicePortalDetails(): any;
|
|
78
|
+
static Entities(): any;
|
|
79
|
+
static EntitiesDataUpdates(): any;
|
|
80
|
+
static EntitiesReasons(): any;
|
|
81
|
+
static EntityReasonData(): any;
|
|
82
|
+
static Error(): any;
|
|
83
|
+
static ErrorDetail(): any;
|
|
84
|
+
static ErrorResponse(): any;
|
|
85
|
+
static ErrorResponse1(): any;
|
|
86
|
+
static FileResponse(): any;
|
|
87
|
+
static FileUploadResponse(): any;
|
|
88
|
+
static FilterInfoOption(): any;
|
|
89
|
+
static FiltersInfo(): any;
|
|
90
|
+
static FiltersResponse(): any;
|
|
91
|
+
static FinancialBreakup(): any;
|
|
47
92
|
static Formatted(): any;
|
|
48
|
-
static
|
|
49
|
-
static
|
|
50
|
-
static
|
|
51
|
-
static
|
|
93
|
+
static FulfillingStore(): any;
|
|
94
|
+
static FyndOrderIdList(): any;
|
|
95
|
+
static GetActionsResponse(): any;
|
|
96
|
+
static GetBagsPlatformResponse(): any;
|
|
97
|
+
static GSTDetailsData(): any;
|
|
98
|
+
static HistoryDict(): any;
|
|
99
|
+
static Identifier(): any;
|
|
100
|
+
static InvalidateShipmentCacheNestedResponse(): any;
|
|
101
|
+
static InvalidateShipmentCachePayload(): any;
|
|
102
|
+
static InvalidateShipmentCacheResponse(): any;
|
|
103
|
+
static InvoiceInfo(): any;
|
|
104
|
+
static Item(): any;
|
|
105
|
+
static ItemCriterias(): any;
|
|
106
|
+
static JioCodeUpsertDataSet(): any;
|
|
107
|
+
static JioCodeUpsertPayload(): any;
|
|
108
|
+
static JioCodeUpsertResponse(): any;
|
|
109
|
+
static LaneConfigResponse(): any;
|
|
110
|
+
static LineItem(): any;
|
|
111
|
+
static LocationDetails(): any;
|
|
112
|
+
static LockData(): any;
|
|
113
|
+
static ManualAssignDPToShipment(): any;
|
|
114
|
+
static ManualAssignDPToShipmentResponse(): any;
|
|
115
|
+
static MarketPlacePdf(): any;
|
|
116
|
+
static Meta(): any;
|
|
117
|
+
static Meta1(): any;
|
|
118
|
+
static MetricCountResponse(): any;
|
|
119
|
+
static MetricsCount(): any;
|
|
120
|
+
static NestedErrorSchemaDataSet(): any;
|
|
121
|
+
static OmsReports(): any;
|
|
122
|
+
static Options(): any;
|
|
123
|
+
static OrderBagArticle(): any;
|
|
124
|
+
static OrderBags(): any;
|
|
125
|
+
static OrderBrandName(): any;
|
|
126
|
+
static OrderConfig(): any;
|
|
127
|
+
static OrderDetails(): any;
|
|
52
128
|
static OrderDetailsData(): any;
|
|
53
|
-
static PlatformShipment(): any;
|
|
54
|
-
static ShipmentInfoResponse(): any;
|
|
55
|
-
static OrderMeta(): any;
|
|
56
129
|
static OrderDict(): any;
|
|
57
|
-
static
|
|
58
|
-
static
|
|
59
|
-
static
|
|
60
|
-
static
|
|
130
|
+
static OrderInfo(): any;
|
|
131
|
+
static OrderingStoreDetails(): any;
|
|
132
|
+
static OrderListingResponse(): any;
|
|
133
|
+
static OrderMeta(): any;
|
|
134
|
+
static OrderPriority(): any;
|
|
135
|
+
static OrderStatus(): any;
|
|
136
|
+
static OrderStatusData(): any;
|
|
137
|
+
static OrderStatusResult(): any;
|
|
138
|
+
static OrderUser(): any;
|
|
139
|
+
static OriginalFilter(): any;
|
|
61
140
|
static Page(): any;
|
|
141
|
+
static Page1(): any;
|
|
142
|
+
static PaymentInfo(): any;
|
|
143
|
+
static PaymentMethod(): any;
|
|
144
|
+
static PaymentMethods(): any;
|
|
145
|
+
static PaymentModeInfo(): any;
|
|
146
|
+
static PDFLinks(): any;
|
|
147
|
+
static PhoneDetails(): any;
|
|
62
148
|
static PlatformBreakupValues(): any;
|
|
63
149
|
static PlatformChannel(): any;
|
|
150
|
+
static PlatformDeliveryAddress(): any;
|
|
151
|
+
static PlatformItem(): any;
|
|
64
152
|
static PlatformOrderItems(): any;
|
|
65
|
-
static
|
|
66
|
-
static
|
|
67
|
-
static
|
|
68
|
-
static MetricCountResponse(): any;
|
|
69
|
-
static PlatformTrack(): any;
|
|
153
|
+
static PlatformOrderUpdate(): any;
|
|
154
|
+
static PlatformShipment(): any;
|
|
155
|
+
static PlatformShipmentReasonsResponse(): any;
|
|
70
156
|
static PlatformShipmentTrack(): any;
|
|
71
|
-
static
|
|
72
|
-
static
|
|
73
|
-
static
|
|
74
|
-
static
|
|
75
|
-
static
|
|
76
|
-
static
|
|
77
|
-
static
|
|
78
|
-
static
|
|
79
|
-
static
|
|
80
|
-
static
|
|
81
|
-
static
|
|
82
|
-
static
|
|
83
|
-
static
|
|
84
|
-
static
|
|
85
|
-
static
|
|
157
|
+
static PlatformTrack(): any;
|
|
158
|
+
static PlatformUserDetails(): any;
|
|
159
|
+
static PostActivityHistory(): any;
|
|
160
|
+
static PostHistoryData(): any;
|
|
161
|
+
static PostHistoryDict(): any;
|
|
162
|
+
static PostHistoryFilters(): any;
|
|
163
|
+
static PostShipmentHistory(): any;
|
|
164
|
+
static Prices(): any;
|
|
165
|
+
static ProcessingDates(): any;
|
|
166
|
+
static Products(): any;
|
|
167
|
+
static ProductsDataUpdates(): any;
|
|
168
|
+
static ProductsDataUpdatesFilters(): any;
|
|
169
|
+
static ProductsReasons(): any;
|
|
170
|
+
static ProductsReasonsData(): any;
|
|
171
|
+
static ProductsReasonsFilters(): any;
|
|
86
172
|
static QuestionSet(): any;
|
|
87
173
|
static Reason(): any;
|
|
88
|
-
static
|
|
89
|
-
static
|
|
90
|
-
static BulkActionResponse(): any;
|
|
91
|
-
static BulkActionDetailsDataField(): any;
|
|
92
|
-
static BulkActionDetailsResponse(): any;
|
|
93
|
-
static BagGSTDetails(): any;
|
|
94
|
-
static B2BPODetails(): any;
|
|
95
|
-
static BagMeta(): any;
|
|
174
|
+
static ReasonsData(): any;
|
|
175
|
+
static ResponseDetail(): any;
|
|
96
176
|
static ReturnConfig(): any;
|
|
97
|
-
static
|
|
98
|
-
static
|
|
99
|
-
static
|
|
100
|
-
static
|
|
101
|
-
static
|
|
177
|
+
static SendSmsPayload(): any;
|
|
178
|
+
static Shipment(): any;
|
|
179
|
+
static ShipmentConfig(): any;
|
|
180
|
+
static ShipmentData(): any;
|
|
181
|
+
static ShipmentDetail(): any;
|
|
182
|
+
static ShipmentDetails(): any;
|
|
183
|
+
static ShipmentDetailsResponse(): any;
|
|
184
|
+
static ShipmentHistoryResponse(): any;
|
|
185
|
+
static ShipmentInfoResponse(): any;
|
|
186
|
+
static ShipmentInternalPlatformViewResponse(): any;
|
|
187
|
+
static ShipmentItem(): any;
|
|
188
|
+
static ShipmentItemFulFillingStore(): any;
|
|
189
|
+
static ShipmentMeta(): any;
|
|
190
|
+
static ShipmentPayments(): any;
|
|
191
|
+
static ShipmentsRequest(): any;
|
|
192
|
+
static ShipmentsResponse(): any;
|
|
193
|
+
static ShipmentStatus(): any;
|
|
194
|
+
static ShipmentStatusData(): any;
|
|
195
|
+
static ShipmentTimeStamp(): any;
|
|
196
|
+
static ShippingInfo(): any;
|
|
197
|
+
static SmsDataPayload(): any;
|
|
198
|
+
static StatuesRequest(): any;
|
|
199
|
+
static StatuesResponse(): any;
|
|
200
|
+
static Store(): any;
|
|
201
|
+
static StoreAddress(): any;
|
|
102
202
|
static StoreDocuments(): any;
|
|
103
|
-
static EInvoicePortalDetails(): any;
|
|
104
|
-
static StoreEwaybill(): any;
|
|
105
203
|
static StoreEinvoice(): any;
|
|
204
|
+
static StoreEwaybill(): any;
|
|
106
205
|
static StoreGstCredentials(): any;
|
|
107
206
|
static StoreMeta(): any;
|
|
108
|
-
static StoreAddress(): any;
|
|
109
|
-
static Store(): any;
|
|
110
|
-
static AffiliateBagDetails(): any;
|
|
111
|
-
static Dates(): any;
|
|
112
|
-
static Brand(): any;
|
|
113
|
-
static Attributes(): any;
|
|
114
|
-
static Item(): any;
|
|
115
|
-
static BagDetailsPlatformResponse(): any;
|
|
116
|
-
static ErrorResponse(): any;
|
|
117
|
-
static Page1(): any;
|
|
118
|
-
static GetBagsPlatformResponse(): any;
|
|
119
|
-
static InvalidateShipmentCachePayload(): any;
|
|
120
|
-
static InvalidateShipmentCacheNestedResponse(): any;
|
|
121
|
-
static InvalidateShipmentCacheResponse(): any;
|
|
122
|
-
static ErrorResponse1(): any;
|
|
123
207
|
static StoreReassign(): any;
|
|
124
208
|
static StoreReassignResponse(): any;
|
|
125
|
-
static
|
|
209
|
+
static SubLane(): any;
|
|
210
|
+
static Success(): any;
|
|
211
|
+
static SuccessResponse(): any;
|
|
212
|
+
static SuperLane(): any;
|
|
213
|
+
static Tax(): any;
|
|
214
|
+
static TaxDetails(): any;
|
|
215
|
+
static TaxInfo(): any;
|
|
216
|
+
static TrackingList(): any;
|
|
217
|
+
static TransactionData(): any;
|
|
126
218
|
static UpdateShipmentLockPayload(): any;
|
|
127
|
-
static OriginalFilter(): any;
|
|
128
|
-
static Bags(): any;
|
|
129
|
-
static CheckResponse(): any;
|
|
130
219
|
static UpdateShipmentLockResponse(): any;
|
|
131
|
-
static AnnouncementResponse(): any;
|
|
132
|
-
static AnnouncementsResponse(): any;
|
|
133
|
-
static BaseResponse(): any;
|
|
134
|
-
static Click2CallResponse(): any;
|
|
135
|
-
static ProductsDataUpdatesFilters(): any;
|
|
136
|
-
static ProductsDataUpdates(): any;
|
|
137
|
-
static EntitiesDataUpdates(): any;
|
|
138
|
-
static DataUpdates(): any;
|
|
139
|
-
static Products(): any;
|
|
140
|
-
static ProductsReasonsData(): any;
|
|
141
|
-
static ProductsReasonsFilters(): any;
|
|
142
|
-
static ProductsReasons(): any;
|
|
143
|
-
static EntityReasonData(): any;
|
|
144
|
-
static EntitiesReasons(): any;
|
|
145
|
-
static ReasonsData(): any;
|
|
146
|
-
static ShipmentsRequest(): any;
|
|
147
|
-
static StatuesRequest(): any;
|
|
148
220
|
static UpdateShipmentStatusRequest(): any;
|
|
149
|
-
static ShipmentsResponse(): any;
|
|
150
|
-
static StatuesResponse(): any;
|
|
151
221
|
static UpdateShipmentStatusResponseBody(): any;
|
|
152
|
-
static AffiliateAppConfigMeta(): any;
|
|
153
|
-
static AffiliateAppConfig(): any;
|
|
154
|
-
static AffiliateInventoryArticleAssignmentConfig(): any;
|
|
155
|
-
static AffiliateInventoryPaymentConfig(): any;
|
|
156
|
-
static AffiliateInventoryStoreConfig(): any;
|
|
157
|
-
static AffiliateInventoryOrderConfig(): any;
|
|
158
|
-
static AffiliateInventoryLogisticsConfig(): any;
|
|
159
|
-
static AffiliateInventoryConfig(): any;
|
|
160
|
-
static AffiliateConfig(): any;
|
|
161
|
-
static Affiliate(): any;
|
|
162
|
-
static AffiliateStoreIdMapping(): any;
|
|
163
|
-
static OrderConfig(): any;
|
|
164
|
-
static OrderUser(): any;
|
|
165
|
-
static UserData(): any;
|
|
166
|
-
static ArticleDetails1(): any;
|
|
167
|
-
static LocationDetails(): any;
|
|
168
|
-
static ShipmentDetails(): any;
|
|
169
|
-
static ShipmentConfig(): any;
|
|
170
|
-
static ShipmentData(): any;
|
|
171
|
-
static MarketPlacePdf(): any;
|
|
172
|
-
static AffiliateBag(): any;
|
|
173
|
-
static OrderPriority(): any;
|
|
174
|
-
static OrderInfo(): any;
|
|
175
|
-
static CreateOrderPayload(): any;
|
|
176
|
-
static CreateOrderResponse(): any;
|
|
177
|
-
static DispatchManifest(): any;
|
|
178
|
-
static SuccessResponse(): any;
|
|
179
|
-
static ActionInfo(): any;
|
|
180
|
-
static GetActionsResponse(): any;
|
|
181
|
-
static HistoryDict(): any;
|
|
182
|
-
static ShipmentHistoryResponse(): any;
|
|
183
|
-
static ErrorDetail(): any;
|
|
184
|
-
static PostHistoryData(): any;
|
|
185
|
-
static PostHistoryFilters(): any;
|
|
186
|
-
static PostActivityHistory(): any;
|
|
187
|
-
static PostHistoryDict(): any;
|
|
188
|
-
static PostShipmentHistory(): any;
|
|
189
|
-
static SmsDataPayload(): any;
|
|
190
|
-
static SendSmsPayload(): any;
|
|
191
|
-
static OrderDetails(): any;
|
|
192
|
-
static Meta1(): any;
|
|
193
|
-
static ShipmentDetail(): any;
|
|
194
|
-
static OrderStatusData(): any;
|
|
195
|
-
static OrderStatusResult(): any;
|
|
196
|
-
static ManualAssignDPToShipment(): any;
|
|
197
|
-
static ManualAssignDPToShipmentResponse(): any;
|
|
198
|
-
static TaxInfo(): any;
|
|
199
|
-
static BillingInfo(): any;
|
|
200
|
-
static ShippingInfo(): any;
|
|
201
|
-
static PaymentMethod(): any;
|
|
202
|
-
static PaymentInfo(): any;
|
|
203
|
-
static Tax(): any;
|
|
204
|
-
static Charge(): any;
|
|
205
|
-
static ProcessingDates(): any;
|
|
206
|
-
static LineItem(): any;
|
|
207
|
-
static Shipment(): any;
|
|
208
|
-
static CreateOrderAPI(): any;
|
|
209
|
-
static CreateOrderErrorReponse(): any;
|
|
210
|
-
static PaymentMethods(): any;
|
|
211
|
-
static CreateChannelPaymentInfo(): any;
|
|
212
|
-
static DpConfiguration(): any;
|
|
213
|
-
static CreateChannelConfig(): any;
|
|
214
|
-
static CreateChannelConfigData(): any;
|
|
215
|
-
static CreateChannelConifgErrorResponse(): any;
|
|
216
|
-
static CreateChannelConfigResponse(): any;
|
|
217
222
|
static UploadConsent(): any;
|
|
218
|
-
static
|
|
219
|
-
static
|
|
220
|
-
static
|
|
221
|
-
static
|
|
223
|
+
static URL(): any;
|
|
224
|
+
static UserData(): any;
|
|
225
|
+
static UserDataInfo(): any;
|
|
226
|
+
static UserDetailsData(): any;
|
|
227
|
+
static Weight(): any;
|
|
222
228
|
}
|