@gofynd/fdk-client-javascript 1.0.0 → 1.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/documentation/application/CART.md +251 -251
- package/documentation/application/CATALOG.md +393 -393
- package/documentation/application/CONTENT.md +15 -1
- package/documentation/application/ORDER.md +268 -268
- package/documentation/application/PAYMENT.md +249 -249
- package/documentation/application/POSCART.md +297 -297
- package/documentation/platform/CART.md +499 -499
- package/documentation/platform/CATALOG.md +3497 -3097
- package/documentation/platform/COMPANYPROFILE.md +207 -207
- package/documentation/platform/CONTENT.md +123 -1
- package/documentation/platform/ORDER.md +1518 -1324
- package/documentation/platform/PARTNER.md +7 -7
- package/documentation/platform/PAYMENT.md +96 -96
- package/index.js +7 -1
- package/package.json +1 -1
- package/sdk/application/ApplicationConfig.js +1 -1
- package/sdk/application/Cart/CartApplicationClient.js +865 -52
- package/sdk/application/Cart/CartApplicationModel.d.ts +7 -7
- package/sdk/application/Cart/CartApplicationModel.js +335 -335
- package/sdk/application/Cart/CartApplicationValidator.js +1 -0
- package/sdk/application/Catalog/CatalogApplicationClient.d.ts +1 -1
- package/sdk/application/Catalog/CatalogApplicationClient.js +1034 -60
- package/sdk/application/Catalog/CatalogApplicationModel.d.ts +19 -19
- package/sdk/application/Catalog/CatalogApplicationModel.js +532 -532
- package/sdk/application/Catalog/CatalogApplicationValidator.js +1 -0
- package/sdk/application/Common/CommonApplicationClient.js +66 -4
- package/sdk/application/Common/CommonApplicationValidator.js +1 -0
- package/sdk/application/Communication/CommunicationApplicationClient.js +108 -6
- package/sdk/application/Communication/CommunicationApplicationValidator.js +1 -0
- package/sdk/application/Configuration/ConfigurationApplicationClient.d.ts +1 -1
- package/sdk/application/Configuration/ConfigurationApplicationClient.js +558 -32
- package/sdk/application/Configuration/ConfigurationApplicationValidator.js +1 -0
- package/sdk/application/Content/ContentApplicationClient.js +621 -38
- package/sdk/application/Content/ContentApplicationModel.d.ts +1 -0
- package/sdk/application/Content/ContentApplicationModel.js +11 -1
- package/sdk/application/Content/ContentApplicationValidator.js +1 -0
- package/sdk/application/FileStorage/FileStorageApplicationClient.js +101 -6
- package/sdk/application/FileStorage/FileStorageApplicationValidator.js +1 -0
- package/sdk/application/Lead/LeadApplicationClient.js +229 -14
- package/sdk/application/Lead/LeadApplicationValidator.js +1 -0
- package/sdk/application/Logistic/LogisticApplicationClient.js +134 -8
- package/sdk/application/Logistic/LogisticApplicationValidator.js +1 -0
- package/sdk/application/Order/OrderApplicationClient.d.ts +1 -1
- package/sdk/application/Order/OrderApplicationClient.js +403 -24
- package/sdk/application/Order/OrderApplicationModel.d.ts +20 -20
- package/sdk/application/Order/OrderApplicationModel.js +334 -334
- package/sdk/application/Order/OrderApplicationValidator.js +1 -0
- package/sdk/application/Payment/PaymentApplicationClient.js +1381 -78
- package/sdk/application/Payment/PaymentApplicationModel.d.ts +2 -2
- package/sdk/application/Payment/PaymentApplicationModel.js +350 -350
- package/sdk/application/Payment/PaymentApplicationValidator.js +1 -0
- package/sdk/application/PosCart/PosCartApplicationClient.js +914 -54
- package/sdk/application/PosCart/PosCartApplicationModel.d.ts +15 -15
- package/sdk/application/PosCart/PosCartApplicationModel.js +389 -389
- package/sdk/application/PosCart/PosCartApplicationValidator.js +1 -0
- package/sdk/application/Rewards/RewardsApplicationClient.js +235 -14
- package/sdk/application/Rewards/RewardsApplicationValidator.js +1 -0
- package/sdk/application/Share/ShareApplicationClient.js +226 -14
- package/sdk/application/Share/ShareApplicationValidator.js +1 -0
- package/sdk/application/Theme/ThemeApplicationClient.js +130 -8
- package/sdk/application/Theme/ThemeApplicationValidator.js +1 -0
- package/sdk/application/User/UserApplicationClient.js +1133 -70
- package/sdk/application/User/UserApplicationValidator.js +1 -0
- package/sdk/common/AxiosHelper.js +1 -1
- package/sdk/platform/Analytics/AnalyticsPlatformApplicationClient.d.ts +16 -8
- package/sdk/platform/Analytics/AnalyticsPlatformApplicationClient.js +287 -16
- package/sdk/platform/Analytics/AnalyticsPlatformClient.d.ts +8 -4
- package/sdk/platform/Analytics/AnalyticsPlatformClient.js +153 -8
- package/sdk/platform/AuditTrail/AuditTrailPlatformClient.d.ts +8 -4
- package/sdk/platform/AuditTrail/AuditTrailPlatformClient.js +141 -8
- package/sdk/platform/Billing/BillingPlatformClient.d.ts +24 -12
- package/sdk/platform/Billing/BillingPlatformClient.js +429 -24
- package/sdk/platform/Cart/CartPlatformApplicationClient.d.ts +34 -17
- package/sdk/platform/Cart/CartPlatformApplicationClient.js +617 -34
- package/sdk/platform/Cart/CartPlatformModel.d.ts +35 -35
- package/sdk/platform/Cart/CartPlatformModel.js +617 -617
- package/sdk/platform/Catalog/CatalogPlatformApplicationClient.d.ts +191 -138
- package/sdk/platform/Catalog/CatalogPlatformApplicationClient.js +2202 -302
- package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.d.ts +11 -11
- package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.js +45 -45
- package/sdk/platform/Catalog/CatalogPlatformClient.d.ts +344 -226
- package/sdk/platform/Catalog/CatalogPlatformClient.js +3282 -488
- package/sdk/platform/Catalog/CatalogPlatformModel.d.ts +110 -100
- package/sdk/platform/Catalog/CatalogPlatformModel.js +2073 -1795
- package/sdk/platform/Catalog/CatalogPlatformValidator.d.ts +23 -21
- package/sdk/platform/Catalog/CatalogPlatformValidator.js +103 -84
- package/sdk/platform/Common/CommonPlatformClient.d.ts +4 -2
- package/sdk/platform/Common/CommonPlatformClient.js +73 -4
- package/sdk/platform/Communication/CommunicationPlatformApplicationClient.d.ts +80 -40
- package/sdk/platform/Communication/CommunicationPlatformApplicationClient.js +1499 -80
- package/sdk/platform/Communication/CommunicationPlatformClient.d.ts +2 -1
- package/sdk/platform/Communication/CommunicationPlatformClient.js +41 -2
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.d.ts +27 -14
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.js +486 -26
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.d.ts +9 -9
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.js +274 -274
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.d.ts +56 -28
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.js +1022 -56
- package/sdk/platform/Configuration/ConfigurationPlatformClient.d.ts +36 -18
- package/sdk/platform/Configuration/ConfigurationPlatformClient.js +693 -36
- package/sdk/platform/Content/ContentPlatformApplicationClient.d.ts +148 -67
- package/sdk/platform/Content/ContentPlatformApplicationClient.js +2446 -140
- package/sdk/platform/Content/ContentPlatformApplicationValidator.d.ts +1 -0
- package/sdk/platform/Content/ContentPlatformApplicationValidator.js +7 -0
- package/sdk/platform/Content/ContentPlatformModel.d.ts +4 -0
- package/sdk/platform/Content/ContentPlatformModel.js +43 -1
- package/sdk/platform/Discount/DiscountPlatformClient.d.ts +21 -10
- package/sdk/platform/Discount/DiscountPlatformClient.js +400 -22
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.d.ts +8 -4
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.js +148 -8
- package/sdk/platform/FileStorage/FileStoragePlatformClient.d.ts +12 -6
- package/sdk/platform/FileStorage/FileStoragePlatformClient.js +214 -12
- package/sdk/platform/Inventory/InventoryPlatformClient.d.ts +27 -14
- package/sdk/platform/Inventory/InventoryPlatformClient.js +449 -24
- package/sdk/platform/Lead/LeadPlatformApplicationClient.d.ts +26 -13
- package/sdk/platform/Lead/LeadPlatformApplicationClient.js +447 -26
- package/sdk/platform/Lead/LeadPlatformClient.d.ts +22 -11
- package/sdk/platform/Lead/LeadPlatformClient.js +384 -22
- package/sdk/platform/OAuthClient.js +8 -8
- package/sdk/platform/Order/OrderPlatformApplicationClient.d.ts +6 -3
- package/sdk/platform/Order/OrderPlatformApplicationClient.js +125 -6
- package/sdk/platform/Order/OrderPlatformClient.d.ts +108 -47
- package/sdk/platform/Order/OrderPlatformClient.js +1641 -100
- package/sdk/platform/Order/OrderPlatformModel.d.ts +69 -58
- package/sdk/platform/Order/OrderPlatformModel.js +1485 -1493
- package/sdk/platform/Order/OrderPlatformValidator.d.ts +2 -1
- package/sdk/platform/Order/OrderPlatformValidator.js +15 -4
- package/sdk/platform/Partner/PartnerPlatformApplicationClient.d.ts +4 -2
- package/sdk/platform/Partner/PartnerPlatformApplicationClient.js +74 -4
- package/sdk/platform/Partner/PartnerPlatformModel.d.ts +1 -1
- package/sdk/platform/Partner/PartnerPlatformModel.js +8 -8
- package/sdk/platform/Payment/PaymentPlatformApplicationClient.d.ts +22 -11
- package/sdk/platform/Payment/PaymentPlatformApplicationClient.js +418 -22
- package/sdk/platform/Payment/PaymentPlatformClient.d.ts +21 -11
- package/sdk/platform/Payment/PaymentPlatformClient.js +374 -20
- package/sdk/platform/Payment/PaymentPlatformModel.js +139 -139
- package/sdk/platform/PlatformApplicationClient.d.ts +2973 -2827
- package/sdk/platform/PlatformApplicationClient.js +3461 -3263
- package/sdk/platform/PlatformClient.d.ts +2973 -2827
- package/sdk/platform/PlatformClient.js +3461 -3263
- package/sdk/platform/Rewards/RewardsPlatformApplicationClient.d.ts +26 -13
- package/sdk/platform/Rewards/RewardsPlatformApplicationClient.js +449 -26
- package/sdk/platform/Share/SharePlatformApplicationClient.d.ts +8 -4
- package/sdk/platform/Share/SharePlatformApplicationClient.js +139 -8
- package/sdk/platform/Theme/ThemePlatformApplicationClient.d.ts +47 -23
- package/sdk/platform/Theme/ThemePlatformApplicationClient.js +816 -48
- package/sdk/platform/User/UserPlatformApplicationClient.d.ts +24 -12
- package/sdk/platform/User/UserPlatformApplicationClient.js +417 -24
- package/sdk/platform/Webhook/WebhookPlatformClient.d.ts +12 -6
- package/sdk/platform/Webhook/WebhookPlatformClient.js +229 -12
- package/sdk/public/Configuration/ConfigurationPublicClient.js +72 -4
- package/sdk/public/Configuration/ConfigurationPublicValidator.js +3 -1
- package/sdk/public/Inventory/InventoryPublicClient.js +210 -12
- package/sdk/public/Inventory/InventoryPublicValidator.js +3 -1
- package/sdk/public/Webhook/WebhookPublicClient.js +74 -4
- package/sdk/public/Webhook/WebhookPublicValidator.js +3 -1
|
@@ -1,68 +1,68 @@
|
|
|
1
1
|
export = CatalogModel;
|
|
2
2
|
declare class CatalogModel {
|
|
3
|
-
static SearchKeywordResult(): any;
|
|
4
|
-
static CreateSearchKeyword(): any;
|
|
5
|
-
static GetSearchWordsData(): any;
|
|
6
|
-
static ErrorResponse(): any;
|
|
7
3
|
static Page(): any;
|
|
4
|
+
static GetSearchWordsData(): any;
|
|
8
5
|
static GetSearchWordsDetailResponse(): any;
|
|
6
|
+
static ErrorResponse(): any;
|
|
7
|
+
static SearchKeywordResult(): any;
|
|
8
|
+
static CreateSearchKeyword(): any;
|
|
9
9
|
static DeleteResponse(): any;
|
|
10
10
|
static GetSearchWordsResponse(): any;
|
|
11
|
+
static GetAutocompleteWordsData(): any;
|
|
12
|
+
static GetAutocompleteWordsResponse(): any;
|
|
13
|
+
static Media(): any;
|
|
11
14
|
static AutocompletePageAction(): any;
|
|
12
15
|
static AutocompleteAction(): any;
|
|
13
|
-
static Media(): any;
|
|
14
16
|
static AutocompleteResult(): any;
|
|
15
17
|
static CreateAutocompleteKeyword(): any;
|
|
16
|
-
static GetAutocompleteWordsData(): any;
|
|
17
|
-
static GetAutocompleteWordsResponse(): any;
|
|
18
18
|
static CreateAutocompleteWordsResponse(): any;
|
|
19
19
|
static ProductBundleItem(): any;
|
|
20
|
+
static ProductBundleRequest(): any;
|
|
20
21
|
static GetProductBundleCreateResponse(): any;
|
|
21
22
|
static GetProductBundleListingResponse(): any;
|
|
22
|
-
static
|
|
23
|
-
static ProductBundleUpdateRequest(): any;
|
|
23
|
+
static Price(): any;
|
|
24
24
|
static LimitedProductData(): any;
|
|
25
25
|
static Size(): any;
|
|
26
|
-
static Price(): any;
|
|
27
26
|
static GetProducts(): any;
|
|
28
27
|
static GetProductBundleResponse(): any;
|
|
29
|
-
static
|
|
28
|
+
static ProductBundleUpdateRequest(): any;
|
|
30
29
|
static Meta(): any;
|
|
31
30
|
static Guide(): any;
|
|
32
31
|
static ValidateSizeGuide(): any;
|
|
33
32
|
static SuccessResponse(): any;
|
|
33
|
+
static ListSizeGuide(): any;
|
|
34
34
|
static SizeGuideResponse(): any;
|
|
35
|
-
static
|
|
35
|
+
static SEOData(): any;
|
|
36
|
+
static MOQData(): any;
|
|
37
|
+
static OwnerAppItemResponse(): any;
|
|
36
38
|
static MetaFields(): any;
|
|
37
39
|
static ApplicationItemSEO(): any;
|
|
40
|
+
static ApplicationItemMOQ(): any;
|
|
38
41
|
static ApplicationItemMeta(): any;
|
|
39
42
|
static SuccessResponse1(): any;
|
|
40
|
-
static MOQData(): any;
|
|
41
|
-
static SEOData(): any;
|
|
42
|
-
static OwnerAppItemResponse(): any;
|
|
43
43
|
static GetConfigMetadataResponse(): any;
|
|
44
|
-
static PageResponseType(): any;
|
|
45
|
-
static GetConfigResponse(): any;
|
|
46
|
-
static ConfigErrorResponse(): any;
|
|
47
44
|
static AttributeDetailsGroup(): any;
|
|
48
45
|
static AppConfigurationDetail(): any;
|
|
46
|
+
static ConfigErrorResponse(): any;
|
|
47
|
+
static PageResponseType(): any;
|
|
48
|
+
static GetConfigResponse(): any;
|
|
49
49
|
static ConfigSuccessResponse(): any;
|
|
50
50
|
static AppConfigurationsSort(): any;
|
|
51
51
|
static AllowSingleRequest(): any;
|
|
52
52
|
static DefaultKeyRequest(): any;
|
|
53
|
-
static MetaDataListingSortMetaResponse(): any;
|
|
54
|
-
static MetaDataListingSortResponse(): any;
|
|
55
53
|
static MetaDataListingFilterMetaResponse(): any;
|
|
56
54
|
static MetaDataListingFilterResponse(): any;
|
|
55
|
+
static MetaDataListingSortMetaResponse(): any;
|
|
56
|
+
static MetaDataListingSortResponse(): any;
|
|
57
57
|
static MetaDataListingResponse(): any;
|
|
58
58
|
static GetCatalogConfigurationDetailsProduct(): any;
|
|
59
59
|
static GetCatalogConfigurationMetaData(): any;
|
|
60
|
-
static ConfigurationListingSortConfig(): any;
|
|
61
|
-
static ConfigurationListingSort(): any;
|
|
62
60
|
static ConfigurationBucketPoints(): any;
|
|
63
61
|
static ConfigurationListingFilterValue(): any;
|
|
64
62
|
static ConfigurationListingFilterConfig(): any;
|
|
65
63
|
static ConfigurationListingFilter(): any;
|
|
64
|
+
static ConfigurationListingSortConfig(): any;
|
|
65
|
+
static ConfigurationListingSort(): any;
|
|
66
66
|
static ConfigurationListing(): any;
|
|
67
67
|
static ProductSize(): any;
|
|
68
68
|
static ConfigurationProductVariantConfig(): any;
|
|
@@ -70,9 +70,9 @@ declare class CatalogModel {
|
|
|
70
70
|
static ConfigurationProductConfig(): any;
|
|
71
71
|
static ConfigurationProductSimilar(): any;
|
|
72
72
|
static ConfigurationProduct(): any;
|
|
73
|
+
static AppConfiguration(): any;
|
|
73
74
|
static AppCatalogConfiguration(): any;
|
|
74
75
|
static GetAppCatalogConfiguration(): any;
|
|
75
|
-
static AppConfiguration(): any;
|
|
76
76
|
static GetCatalogConfigurationDetailsSchemaListing(): any;
|
|
77
77
|
static EntityConfiguration(): any;
|
|
78
78
|
static GetAppCatalogEntityConfiguration(): any;
|
|
@@ -81,40 +81,40 @@ declare class CatalogModel {
|
|
|
81
81
|
static ProductFiltersKey(): any;
|
|
82
82
|
static ProductFilters(): any;
|
|
83
83
|
static GetCollectionQueryOptionResponse(): any;
|
|
84
|
-
static
|
|
85
|
-
static CollectionListingFilterType(): any;
|
|
86
|
-
static CollectionListingFilter(): any;
|
|
87
|
-
static CollectionQuery(): any;
|
|
88
|
-
static ActionPage(): any;
|
|
89
|
-
static Action(): any;
|
|
90
|
-
static BannerImage(): any;
|
|
91
|
-
static ImageUrls(): any;
|
|
92
|
-
static Media1(): any;
|
|
93
|
-
static GetCollectionDetailNest(): any;
|
|
94
|
-
static GetCollectionListingResponse(): any;
|
|
95
|
-
static SeoDetail(): any;
|
|
84
|
+
static CollectionBadge(): any;
|
|
96
85
|
static UserInfo(): any;
|
|
97
86
|
static NextSchedule(): any;
|
|
98
87
|
static CollectionSchedule(): any;
|
|
99
88
|
static CollectionImage(): any;
|
|
100
89
|
static CollectionBanner(): any;
|
|
101
|
-
static
|
|
90
|
+
static CollectionQuery(): any;
|
|
91
|
+
static SeoDetail(): any;
|
|
102
92
|
static CreateCollection(): any;
|
|
93
|
+
static BannerImage(): any;
|
|
94
|
+
static ImageUrls(): any;
|
|
103
95
|
static CollectionCreateResponse(): any;
|
|
96
|
+
static Media1(): any;
|
|
97
|
+
static ActionPage(): any;
|
|
98
|
+
static Action(): any;
|
|
99
|
+
static GetCollectionDetailNest(): any;
|
|
100
|
+
static CollectionListingFilterType(): any;
|
|
101
|
+
static CollectionListingFilterTag(): any;
|
|
102
|
+
static CollectionListingFilter(): any;
|
|
103
|
+
static GetCollectionListingResponse(): any;
|
|
104
104
|
static CollectionDetailResponse(): any;
|
|
105
105
|
static UpdateCollection(): any;
|
|
106
|
+
static CollectionItem(): any;
|
|
107
|
+
static CollectionItemUpdate(): any;
|
|
108
|
+
static UpdatedResponse(): any;
|
|
106
109
|
static ProductDetailAttribute(): any;
|
|
107
110
|
static ProductDetailGroupedAttribute(): any;
|
|
111
|
+
static ProductBrand(): any;
|
|
108
112
|
static Price1(): any;
|
|
109
113
|
static ProductListingPrice(): any;
|
|
110
|
-
static ProductBrand(): any;
|
|
111
114
|
static ProductListingDetail(): any;
|
|
112
115
|
static GetCollectionItemsResponse(): any;
|
|
113
|
-
static ItemQueryForUserCollection(): any;
|
|
114
|
-
static CollectionItemRequest(): any;
|
|
115
|
-
static UpdatedResponse(): any;
|
|
116
|
-
static CatalogInsightItem(): any;
|
|
117
116
|
static CatalogInsightBrand(): any;
|
|
117
|
+
static CatalogInsightItem(): any;
|
|
118
118
|
static CatalogInsightResponse(): any;
|
|
119
119
|
static CrossSellingData(): any;
|
|
120
120
|
static CrossSellingResponse(): any;
|
|
@@ -127,65 +127,68 @@ declare class CatalogModel {
|
|
|
127
127
|
static OptinCompanyMetrics(): any;
|
|
128
128
|
static StoreDetail(): any;
|
|
129
129
|
static OptinStoreDetails(): any;
|
|
130
|
+
static AttributeMasterDetails(): any;
|
|
130
131
|
static AttributeSchemaRange(): any;
|
|
131
132
|
static AttributeMaster(): any;
|
|
132
|
-
static AttributeMasterFilter(): any;
|
|
133
133
|
static AttributeMasterMandatoryDetails(): any;
|
|
134
134
|
static AttributeMasterMeta(): any;
|
|
135
|
-
static
|
|
135
|
+
static AttributeMasterFilter(): any;
|
|
136
136
|
static GenderDetail(): any;
|
|
137
|
+
static CategoriesResponse(): any;
|
|
137
138
|
static ProdcutTemplateCategoriesResponse(): any;
|
|
138
139
|
static PTErrorResponse(): any;
|
|
140
|
+
static DepartmentCreateUpdate(): any;
|
|
141
|
+
static DepartmentCreateResponse(): any;
|
|
142
|
+
static DepartmentCreateErrorResponse(): any;
|
|
139
143
|
static UserSerializer(): any;
|
|
140
144
|
static GetDepartment(): any;
|
|
141
145
|
static DepartmentsResponse(): any;
|
|
142
146
|
static DepartmentErrorResponse(): any;
|
|
143
|
-
static DepartmentCreateUpdate(): any;
|
|
144
|
-
static DepartmentCreateResponse(): any;
|
|
145
|
-
static DepartmentCreateErrorResponse(): any;
|
|
146
147
|
static UserDetail(): any;
|
|
147
148
|
static DepartmentModel(): any;
|
|
148
149
|
static ProductTemplate(): any;
|
|
149
150
|
static TemplatesResponse(): any;
|
|
151
|
+
static TemplateDetails(): any;
|
|
150
152
|
static Properties(): any;
|
|
151
153
|
static GlobalValidation(): any;
|
|
152
154
|
static TemplateValidationData(): any;
|
|
153
|
-
static TemplateDetails(): any;
|
|
154
155
|
static TemplatesValidationResponse(): any;
|
|
155
156
|
static InventoryValidationResponse(): any;
|
|
156
157
|
static HSNData(): any;
|
|
157
158
|
static HSNCodesResponse(): any;
|
|
158
|
-
static
|
|
159
|
-
static
|
|
160
|
-
static ProductDownloadsItems(): any;
|
|
159
|
+
static UserInfo1(): any;
|
|
160
|
+
static ProductTemplateExportResponse(): any;
|
|
161
161
|
static ProductDownloadsResponse(): any;
|
|
162
|
+
static ProductTemplateExportFilterRequest(): any;
|
|
163
|
+
static ProductTemplateDownloadsExport(): any;
|
|
162
164
|
static ProductConfigurationDownloads(): any;
|
|
163
|
-
static CategoryMappingValues(): any;
|
|
164
|
-
static CategoryMapping(): any;
|
|
165
165
|
static Media2(): any;
|
|
166
166
|
static Hierarchy(): any;
|
|
167
|
-
static
|
|
168
|
-
static
|
|
167
|
+
static CategoryMappingValues(): any;
|
|
168
|
+
static CategoryMapping(): any;
|
|
169
169
|
static CategoryRequestBody(): any;
|
|
170
170
|
static CategoryCreateResponse(): any;
|
|
171
|
-
static
|
|
171
|
+
static Category(): any;
|
|
172
|
+
static CategoryResponse(): any;
|
|
172
173
|
static SingleCategoryResponse(): any;
|
|
173
|
-
static
|
|
174
|
-
static
|
|
175
|
-
static ReturnConfigResponse(): any;
|
|
176
|
-
static Logo(): any;
|
|
177
|
-
static Brand(): any;
|
|
178
|
-
static Image(): any;
|
|
179
|
-
static Product(): any;
|
|
180
|
-
static ProductListingResponse(): any;
|
|
181
|
-
static CustomOrder(): any;
|
|
174
|
+
static CategoryUpdateResponse(): any;
|
|
175
|
+
static ReturnConfig(): any;
|
|
182
176
|
static NetQuantity(): any;
|
|
183
|
-
static ProductPublish(): any;
|
|
184
177
|
static TeaserTag(): any;
|
|
185
|
-
static
|
|
178
|
+
static ProductPublish(): any;
|
|
186
179
|
static Trader(): any;
|
|
187
180
|
static TaxIdentifier(): any;
|
|
181
|
+
static CustomOrder(): any;
|
|
188
182
|
static ProductCreateUpdateSchemaV2(): any;
|
|
183
|
+
static ReturnConfigResponse(): any;
|
|
184
|
+
static NetQuantityResponse(): any;
|
|
185
|
+
static Image(): any;
|
|
186
|
+
static Logo(): any;
|
|
187
|
+
static Brand(): any;
|
|
188
|
+
static ProductPublish1(): any;
|
|
189
|
+
static VerifiedBy(): any;
|
|
190
|
+
static ProductSchemaV2(): any;
|
|
191
|
+
static ProductListingResponseV2(): any;
|
|
189
192
|
static ProductVariants(): any;
|
|
190
193
|
static ProductVariantsResponse(): any;
|
|
191
194
|
static AttributeMasterSerializer(): any;
|
|
@@ -195,64 +198,72 @@ declare class CatalogModel {
|
|
|
195
198
|
static AllSizes(): any;
|
|
196
199
|
static GetAllSizes(): any;
|
|
197
200
|
static ValidateProduct(): any;
|
|
201
|
+
static ProductPublished(): any;
|
|
202
|
+
static Product(): any;
|
|
203
|
+
static ProductListingResponse(): any;
|
|
204
|
+
static BulkJob(): any;
|
|
205
|
+
static BulkResponse(): any;
|
|
198
206
|
static UserDetail1(): any;
|
|
199
207
|
static ProductBulkRequest(): any;
|
|
200
208
|
static ProductBulkRequestList(): any;
|
|
201
|
-
static UserInfo1(): any;
|
|
202
|
-
static BulkJob(): any;
|
|
203
|
-
static BulkResponse(): any;
|
|
204
209
|
static BulkProductRequest(): any;
|
|
205
|
-
static NestedTags(): any;
|
|
206
210
|
static ProductTagsViewResponse(): any;
|
|
211
|
+
static ProductBulkAssets(): any;
|
|
207
212
|
static UserCommon(): any;
|
|
208
213
|
static Items(): any;
|
|
209
214
|
static BulkAssetResponse(): any;
|
|
210
|
-
static ProductBulkAssets(): any;
|
|
211
215
|
static ProductSizeDeleteDataResponse(): any;
|
|
212
216
|
static ProductSizeDeleteResponse(): any;
|
|
213
|
-
static InventoryResponse(): any;
|
|
214
|
-
static InventoryResponsePaginated(): any;
|
|
215
|
-
static ItemQuery(): any;
|
|
216
|
-
static GTIN(): any;
|
|
217
217
|
static SetSize(): any;
|
|
218
218
|
static SizeDistribution(): any;
|
|
219
219
|
static InventorySet(): any;
|
|
220
|
+
static GTIN(): any;
|
|
220
221
|
static InvSize(): any;
|
|
222
|
+
static ItemQuery(): any;
|
|
221
223
|
static InventoryRequest(): any;
|
|
224
|
+
static InventoryResponse(): any;
|
|
225
|
+
static InventoryResponsePaginated(): any;
|
|
226
|
+
static ReturnConfig1(): any;
|
|
222
227
|
static ManufacturerResponse(): any;
|
|
228
|
+
static CompanyMeta(): any;
|
|
229
|
+
static StoreMeta(): any;
|
|
230
|
+
static BrandMeta(): any;
|
|
231
|
+
static PriceMeta(): any;
|
|
223
232
|
static WeightResponse(): any;
|
|
233
|
+
static Trader1(): any;
|
|
224
234
|
static DimensionResponse(): any;
|
|
225
|
-
static ReturnConfig1(): any;
|
|
226
|
-
static StoreMeta(): any;
|
|
227
235
|
static QuantityBase(): any;
|
|
228
236
|
static Quantities(): any;
|
|
229
|
-
static PriceMeta(): any;
|
|
230
|
-
static Trader1(): any;
|
|
231
|
-
static BrandMeta(): any;
|
|
232
|
-
static CompanyMeta(): any;
|
|
233
237
|
static InventorySellerResponse(): any;
|
|
234
238
|
static InventorySellerIdentifierResponsePaginated(): any;
|
|
235
239
|
static DateMeta(): any;
|
|
240
|
+
static ReturnConfig2(): any;
|
|
236
241
|
static ManufacturerResponse1(): any;
|
|
242
|
+
static CompanyMeta1(): any;
|
|
243
|
+
static ArticleStoreResponse(): any;
|
|
244
|
+
static BrandMeta1(): any;
|
|
245
|
+
static PriceArticle(): any;
|
|
237
246
|
static WeightResponse1(): any;
|
|
247
|
+
static Trader2(): any;
|
|
238
248
|
static DimensionResponse1(): any;
|
|
239
249
|
static Quantity(): any;
|
|
240
250
|
static QuantitiesArticle(): any;
|
|
241
|
-
static ArticleStoreResponse(): any;
|
|
242
|
-
static ReturnConfig2(): any;
|
|
243
|
-
static PriceArticle(): any;
|
|
244
|
-
static Trader2(): any;
|
|
245
|
-
static BrandMeta1(): any;
|
|
246
|
-
static CompanyMeta1(): any;
|
|
247
251
|
static GetInventories(): any;
|
|
248
252
|
static GetInventoriesResponse(): any;
|
|
249
253
|
static BulkInventoryGetItems(): any;
|
|
250
254
|
static BulkInventoryGet(): any;
|
|
251
255
|
static InventoryJobPayload(): any;
|
|
252
256
|
static InventoryBulkRequest(): any;
|
|
253
|
-
static InventoryExportJob(): any;
|
|
254
257
|
static InventoryExportRequest(): any;
|
|
255
258
|
static InventoryExportResponse(): any;
|
|
259
|
+
static InventoryExportQuantityFilter(): any;
|
|
260
|
+
static InventoryExportAdvanceOption(): any;
|
|
261
|
+
static InventoryExportJob(): any;
|
|
262
|
+
static InventoryExportFilter(): any;
|
|
263
|
+
static InventoryCreateRequest(): any;
|
|
264
|
+
static InventoryJobFilters(): any;
|
|
265
|
+
static InventoryJobDetailResponse(): any;
|
|
266
|
+
static InventoryExportJobListResponse(): any;
|
|
256
267
|
static FilerList(): any;
|
|
257
268
|
static InventoryConfig(): any;
|
|
258
269
|
static InventoryPayload(): any;
|
|
@@ -260,13 +271,12 @@ declare class CatalogModel {
|
|
|
260
271
|
static InventoryFailedReason(): any;
|
|
261
272
|
static InventoryResponseItem(): any;
|
|
262
273
|
static InventoryUpdateResponse(): any;
|
|
263
|
-
static PageResponse(): any;
|
|
264
274
|
static HsnCodesObject(): any;
|
|
265
|
-
static HsnCodesListingResponse(): any;
|
|
266
|
-
static HsnUpsert(): any;
|
|
267
275
|
static HsnCode(): any;
|
|
276
|
+
static HsnUpsert(): any;
|
|
268
277
|
static BulkHsnUpsert(): any;
|
|
269
278
|
static BulkHsnResponse(): any;
|
|
279
|
+
static PageResponse(): any;
|
|
270
280
|
static TaxSlab(): any;
|
|
271
281
|
static HSNDataInsertV2(): any;
|
|
272
282
|
static HsnCodesListingResponseSchemaV2(): any;
|
|
@@ -274,36 +284,36 @@ declare class CatalogModel {
|
|
|
274
284
|
static BrandListingResponse(): any;
|
|
275
285
|
static Department(): any;
|
|
276
286
|
static DepartmentResponse(): any;
|
|
287
|
+
static DepartmentIdentifier(): any;
|
|
277
288
|
static ThirdLevelChild(): any;
|
|
278
289
|
static SecondLevelChild(): any;
|
|
279
290
|
static Child(): any;
|
|
280
291
|
static CategoryItems(): any;
|
|
281
292
|
static DepartmentCategoryTree(): any;
|
|
282
|
-
static DepartmentIdentifier(): any;
|
|
283
293
|
static CategoryListingResponse(): any;
|
|
284
294
|
static ApplicationProductListingResponse(): any;
|
|
285
295
|
static ProductDetail(): any;
|
|
286
296
|
static InventoryPage(): any;
|
|
287
297
|
static InventoryStockResponse(): any;
|
|
288
|
-
static ArticleAssignment(): any;
|
|
289
298
|
static ArticleQuery(): any;
|
|
299
|
+
static ArticleAssignment(): any;
|
|
290
300
|
static AssignStoreArticle(): any;
|
|
291
301
|
static AssignStore(): any;
|
|
292
302
|
static ArticleAssignment1(): any;
|
|
293
303
|
static StoreAssignResponse(): any;
|
|
294
|
-
static LocationIntegrationType(): any;
|
|
295
|
-
static SellerPhoneNumber(): any;
|
|
296
|
-
static InvoiceCredSerializer(): any;
|
|
297
|
-
static InvoiceDetailsSerializer(): any;
|
|
298
304
|
static UserSerializer1(): any;
|
|
299
|
-
static Document(): any;
|
|
300
305
|
static LocationTimingSerializer(): any;
|
|
301
306
|
static LocationDayWiseSerializer(): any;
|
|
302
|
-
static LocationManagerSerializer(): any;
|
|
303
|
-
static ProductReturnConfigSerializer(): any;
|
|
304
307
|
static GetAddressSerializer(): any;
|
|
305
308
|
static UserSerializer2(): any;
|
|
306
309
|
static GetCompanySerializer(): any;
|
|
310
|
+
static SellerPhoneNumber(): any;
|
|
311
|
+
static LocationManagerSerializer(): any;
|
|
312
|
+
static InvoiceCredSerializer(): any;
|
|
313
|
+
static InvoiceDetailsSerializer(): any;
|
|
314
|
+
static LocationIntegrationType(): any;
|
|
315
|
+
static ProductReturnConfigSerializer(): any;
|
|
316
|
+
static Document(): any;
|
|
307
317
|
static GetLocationSerializer(): any;
|
|
308
318
|
static LocationListSerializer(): any;
|
|
309
319
|
static ApplicationBrandJson(): any;
|