@gofynd/fdk-client-javascript 1.0.1 → 1.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (134) hide show
  1. package/documentation/application/CART.md +251 -251
  2. package/documentation/application/CATALOG.md +414 -414
  3. package/documentation/application/CONTENT.md +15 -1
  4. package/documentation/application/ORDER.md +290 -290
  5. package/documentation/application/PAYMENT.md +255 -255
  6. package/documentation/application/POSCART.md +297 -297
  7. package/documentation/platform/CART.md +499 -499
  8. package/documentation/platform/CATALOG.md +3088 -2702
  9. package/documentation/platform/COMPANYPROFILE.md +201 -201
  10. package/documentation/platform/CONTENT.md +123 -1
  11. package/documentation/platform/ORDER.md +1233 -1158
  12. package/documentation/platform/PARTNER.md +7 -7
  13. package/documentation/platform/PAYMENT.md +83 -83
  14. package/package.json +1 -1
  15. package/sdk/application/ApplicationConfig.js +1 -1
  16. package/sdk/application/Cart/CartApplicationClient.js +619 -108
  17. package/sdk/application/Cart/CartApplicationModel.d.ts +7 -7
  18. package/sdk/application/Cart/CartApplicationModel.js +335 -335
  19. package/sdk/application/Catalog/CatalogApplicationClient.d.ts +1 -1
  20. package/sdk/application/Catalog/CatalogApplicationClient.js +730 -134
  21. package/sdk/application/Catalog/CatalogApplicationModel.d.ts +21 -21
  22. package/sdk/application/Catalog/CatalogApplicationModel.js +547 -547
  23. package/sdk/application/Common/CommonApplicationClient.js +48 -8
  24. package/sdk/application/Communication/CommunicationApplicationClient.js +75 -14
  25. package/sdk/application/Configuration/ConfigurationApplicationClient.d.ts +1 -1
  26. package/sdk/application/Configuration/ConfigurationApplicationClient.js +392 -66
  27. package/sdk/application/Content/ContentApplicationClient.js +444 -76
  28. package/sdk/application/Content/ContentApplicationModel.d.ts +1 -0
  29. package/sdk/application/Content/ContentApplicationModel.js +11 -1
  30. package/sdk/application/FileStorage/FileStorageApplicationClient.js +74 -12
  31. package/sdk/application/Lead/LeadApplicationClient.js +164 -30
  32. package/sdk/application/Logistic/LogisticApplicationClient.js +98 -16
  33. package/sdk/application/Order/OrderApplicationClient.d.ts +1 -1
  34. package/sdk/application/Order/OrderApplicationClient.js +287 -54
  35. package/sdk/application/Order/OrderApplicationModel.d.ts +19 -19
  36. package/sdk/application/Order/OrderApplicationModel.js +357 -357
  37. package/sdk/application/Payment/PaymentApplicationClient.js +961 -186
  38. package/sdk/application/Payment/PaymentApplicationModel.d.ts +3 -3
  39. package/sdk/application/Payment/PaymentApplicationModel.js +352 -352
  40. package/sdk/application/PosCart/PosCartApplicationClient.js +645 -114
  41. package/sdk/application/PosCart/PosCartApplicationModel.d.ts +15 -15
  42. package/sdk/application/PosCart/PosCartApplicationModel.js +389 -389
  43. package/sdk/application/Rewards/RewardsApplicationClient.js +168 -28
  44. package/sdk/application/Share/ShareApplicationClient.js +157 -32
  45. package/sdk/application/Theme/ThemeApplicationClient.js +94 -16
  46. package/sdk/application/User/UserApplicationClient.js +806 -148
  47. package/sdk/platform/Analytics/AnalyticsPlatformApplicationClient.d.ts +16 -8
  48. package/sdk/platform/Analytics/AnalyticsPlatformApplicationClient.js +191 -34
  49. package/sdk/platform/Analytics/AnalyticsPlatformClient.d.ts +8 -4
  50. package/sdk/platform/Analytics/AnalyticsPlatformClient.js +103 -16
  51. package/sdk/platform/AuditTrail/AuditTrailPlatformClient.d.ts +8 -4
  52. package/sdk/platform/AuditTrail/AuditTrailPlatformClient.js +103 -16
  53. package/sdk/platform/Billing/BillingPlatformClient.d.ts +24 -12
  54. package/sdk/platform/Billing/BillingPlatformClient.js +299 -54
  55. package/sdk/platform/Cart/CartPlatformApplicationClient.d.ts +34 -17
  56. package/sdk/platform/Cart/CartPlatformApplicationClient.js +409 -72
  57. package/sdk/platform/Cart/CartPlatformModel.d.ts +35 -35
  58. package/sdk/platform/Cart/CartPlatformModel.js +617 -617
  59. package/sdk/platform/Catalog/CatalogPlatformApplicationClient.d.ts +167 -114
  60. package/sdk/platform/Catalog/CatalogPlatformApplicationClient.js +1562 -453
  61. package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.d.ts +8 -8
  62. package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.js +39 -39
  63. package/sdk/platform/Catalog/CatalogPlatformClient.d.ts +314 -196
  64. package/sdk/platform/Catalog/CatalogPlatformClient.js +2459 -718
  65. package/sdk/platform/Catalog/CatalogPlatformModel.d.ts +103 -94
  66. package/sdk/platform/Catalog/CatalogPlatformModel.js +2063 -1797
  67. package/sdk/platform/Catalog/CatalogPlatformValidator.d.ts +17 -15
  68. package/sdk/platform/Catalog/CatalogPlatformValidator.js +95 -76
  69. package/sdk/platform/Common/CommonPlatformClient.d.ts +4 -2
  70. package/sdk/platform/Common/CommonPlatformClient.js +51 -8
  71. package/sdk/platform/Communication/CommunicationPlatformApplicationClient.d.ts +80 -40
  72. package/sdk/platform/Communication/CommunicationPlatformApplicationClient.js +1000 -168
  73. package/sdk/platform/Communication/CommunicationPlatformClient.d.ts +2 -1
  74. package/sdk/platform/Communication/CommunicationPlatformClient.js +28 -4
  75. package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.d.ts +27 -14
  76. package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.js +335 -54
  77. package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.d.ts +10 -10
  78. package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.js +278 -278
  79. package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.d.ts +56 -28
  80. package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.js +702 -118
  81. package/sdk/platform/Configuration/ConfigurationPlatformClient.d.ts +36 -18
  82. package/sdk/platform/Configuration/ConfigurationPlatformClient.js +457 -82
  83. package/sdk/platform/Content/ContentPlatformApplicationClient.d.ts +148 -67
  84. package/sdk/platform/Content/ContentPlatformApplicationClient.js +1724 -284
  85. package/sdk/platform/Content/ContentPlatformApplicationValidator.d.ts +1 -0
  86. package/sdk/platform/Content/ContentPlatformApplicationValidator.js +7 -0
  87. package/sdk/platform/Content/ContentPlatformModel.d.ts +4 -0
  88. package/sdk/platform/Content/ContentPlatformModel.js +43 -1
  89. package/sdk/platform/Discount/DiscountPlatformClient.d.ts +21 -10
  90. package/sdk/platform/Discount/DiscountPlatformClient.js +270 -44
  91. package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.d.ts +8 -4
  92. package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.js +102 -16
  93. package/sdk/platform/FileStorage/FileStoragePlatformClient.d.ts +12 -6
  94. package/sdk/platform/FileStorage/FileStoragePlatformClient.js +150 -24
  95. package/sdk/platform/Inventory/InventoryPlatformClient.d.ts +27 -14
  96. package/sdk/platform/Inventory/InventoryPlatformClient.js +316 -52
  97. package/sdk/platform/Lead/LeadPlatformApplicationClient.d.ts +26 -13
  98. package/sdk/platform/Lead/LeadPlatformApplicationClient.js +311 -52
  99. package/sdk/platform/Lead/LeadPlatformClient.d.ts +22 -11
  100. package/sdk/platform/Lead/LeadPlatformClient.js +266 -44
  101. package/sdk/platform/OAuthClient.js +8 -8
  102. package/sdk/platform/Order/OrderPlatformApplicationClient.d.ts +6 -3
  103. package/sdk/platform/Order/OrderPlatformApplicationClient.js +78 -14
  104. package/sdk/platform/Order/OrderPlatformClient.d.ts +95 -43
  105. package/sdk/platform/Order/OrderPlatformClient.js +1062 -180
  106. package/sdk/platform/Order/OrderPlatformModel.d.ts +64 -60
  107. package/sdk/platform/Order/OrderPlatformModel.js +1481 -1425
  108. package/sdk/platform/Order/OrderPlatformValidator.js +5 -0
  109. package/sdk/platform/Partner/PartnerPlatformApplicationClient.d.ts +4 -2
  110. package/sdk/platform/Partner/PartnerPlatformApplicationClient.js +52 -8
  111. package/sdk/platform/Partner/PartnerPlatformModel.d.ts +1 -1
  112. package/sdk/platform/Partner/PartnerPlatformModel.js +8 -8
  113. package/sdk/platform/Payment/PaymentPlatformApplicationClient.d.ts +22 -11
  114. package/sdk/platform/Payment/PaymentPlatformApplicationClient.js +287 -56
  115. package/sdk/platform/Payment/PaymentPlatformClient.d.ts +21 -11
  116. package/sdk/platform/Payment/PaymentPlatformClient.js +263 -48
  117. package/sdk/platform/Payment/PaymentPlatformModel.js +122 -122
  118. package/sdk/platform/PlatformApplicationClient.d.ts +2959 -2787
  119. package/sdk/platform/PlatformApplicationClient.js +3420 -3212
  120. package/sdk/platform/PlatformClient.d.ts +2959 -2787
  121. package/sdk/platform/PlatformClient.js +3420 -3212
  122. package/sdk/platform/Rewards/RewardsPlatformApplicationClient.d.ts +26 -13
  123. package/sdk/platform/Rewards/RewardsPlatformApplicationClient.js +308 -54
  124. package/sdk/platform/Share/SharePlatformApplicationClient.d.ts +8 -4
  125. package/sdk/platform/Share/SharePlatformApplicationClient.js +94 -16
  126. package/sdk/platform/Theme/ThemePlatformApplicationClient.d.ts +47 -23
  127. package/sdk/platform/Theme/ThemePlatformApplicationClient.js +571 -96
  128. package/sdk/platform/User/UserPlatformApplicationClient.d.ts +24 -12
  129. package/sdk/platform/User/UserPlatformApplicationClient.js +296 -48
  130. package/sdk/platform/Webhook/WebhookPlatformClient.d.ts +12 -6
  131. package/sdk/platform/Webhook/WebhookPlatformClient.js +157 -30
  132. package/sdk/public/Configuration/ConfigurationPublicClient.js +51 -8
  133. package/sdk/public/Inventory/InventoryPublicClient.js +149 -26
  134. package/sdk/public/Webhook/WebhookPublicClient.js +51 -10
@@ -1,7 +1,7 @@
1
1
  export = CatalogModel;
2
2
  declare class CatalogModel {
3
- static GetSearchWordsData(): any;
4
3
  static Page(): any;
4
+ static GetSearchWordsData(): any;
5
5
  static GetSearchWordsDetailResponse(): any;
6
6
  static ErrorResponse(): any;
7
7
  static SearchKeywordResult(): any;
@@ -10,59 +10,59 @@ declare class CatalogModel {
10
10
  static GetSearchWordsResponse(): any;
11
11
  static GetAutocompleteWordsData(): any;
12
12
  static GetAutocompleteWordsResponse(): any;
13
+ static Media(): any;
13
14
  static AutocompletePageAction(): any;
14
15
  static AutocompleteAction(): any;
15
- static Media(): any;
16
16
  static AutocompleteResult(): any;
17
17
  static CreateAutocompleteKeyword(): 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 ProductBundleRequest(): any;
23
- static Size(): any;
24
23
  static Price(): any;
25
24
  static LimitedProductData(): any;
25
+ static Size(): any;
26
26
  static GetProducts(): any;
27
27
  static GetProductBundleResponse(): any;
28
28
  static ProductBundleUpdateRequest(): any;
29
- static ListSizeGuide(): 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 MOQData(): any;
36
35
  static SEOData(): any;
36
+ static MOQData(): any;
37
37
  static OwnerAppItemResponse(): any;
38
38
  static MetaFields(): any;
39
- static ApplicationItemMOQ(): any;
40
39
  static ApplicationItemSEO(): any;
40
+ static ApplicationItemMOQ(): any;
41
41
  static ApplicationItemMeta(): any;
42
42
  static SuccessResponse1(): 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,49 +70,49 @@ 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;
79
79
  static ProductSortOn(): any;
80
- static ProductFiltersKey(): any;
81
80
  static ProductFiltersValue(): any;
81
+ static ProductFiltersKey(): any;
82
82
  static ProductFilters(): any;
83
83
  static GetCollectionQueryOptionResponse(): any;
84
- static ActionPage(): any;
85
- static Action(): any;
84
+ static CollectionBadge(): any;
85
+ static UserInfo(): any;
86
+ static NextSchedule(): any;
87
+ static CollectionSchedule(): any;
88
+ static CollectionImage(): any;
89
+ static CollectionBanner(): any;
90
+ static CollectionQuery(): any;
91
+ static SeoDetail(): any;
92
+ static CreateCollection(): any;
86
93
  static BannerImage(): any;
87
94
  static ImageUrls(): any;
88
- static CollectionQuery(): any;
95
+ static CollectionCreateResponse(): any;
89
96
  static Media1(): any;
97
+ static ActionPage(): any;
98
+ static Action(): any;
90
99
  static GetCollectionDetailNest(): any;
91
100
  static CollectionListingFilterType(): any;
92
101
  static CollectionListingFilterTag(): any;
93
102
  static CollectionListingFilter(): any;
94
103
  static GetCollectionListingResponse(): any;
95
- static NextSchedule(): any;
96
- static CollectionSchedule(): any;
97
- static UserInfo(): any;
98
- static CollectionBadge(): any;
99
- static SeoDetail(): any;
100
- static CollectionImage(): any;
101
- static CollectionBanner(): any;
102
- static CreateCollection(): any;
103
- static CollectionCreateResponse(): any;
104
104
  static CollectionDetailResponse(): any;
105
105
  static UpdateCollection(): any;
106
+ static CollectionItem(): any;
107
+ static CollectionItemUpdate(): any;
108
+ static UpdatedResponse(): any;
109
+ static ProductDetailAttribute(): any;
110
+ static ProductDetailGroupedAttribute(): any;
106
111
  static ProductBrand(): any;
107
112
  static Price1(): any;
108
113
  static ProductListingPrice(): any;
109
- static ProductDetailAttribute(): any;
110
- static ProductDetailGroupedAttribute(): any;
111
114
  static ProductListingDetail(): any;
112
115
  static GetCollectionItemsResponse(): any;
113
- static ItemQueryForUserCollection(): any;
114
- static CollectionItemRequest(): any;
115
- static UpdatedResponse(): any;
116
116
  static CatalogInsightBrand(): any;
117
117
  static CatalogInsightItem(): any;
118
118
  static CatalogInsightResponse(): any;
@@ -127,23 +127,23 @@ declare class CatalogModel {
127
127
  static OptinCompanyMetrics(): any;
128
128
  static StoreDetail(): any;
129
129
  static OptinStoreDetails(): any;
130
- static AttributeMasterFilter(): any;
131
- static AttributeMasterMandatoryDetails(): any;
132
- static AttributeMasterMeta(): any;
133
130
  static AttributeMasterDetails(): any;
134
131
  static AttributeSchemaRange(): any;
135
132
  static AttributeMaster(): any;
133
+ static AttributeMasterMandatoryDetails(): any;
134
+ static AttributeMasterMeta(): any;
135
+ static AttributeMasterFilter(): any;
136
136
  static GenderDetail(): any;
137
- static ProductTemplateCategory(): any;
137
+ static CategoriesResponse(): any;
138
138
  static ProdcutTemplateCategoriesResponse(): any;
139
139
  static PTErrorResponse(): any;
140
+ static DepartmentCreateUpdate(): any;
141
+ static DepartmentCreateResponse(): any;
142
+ static DepartmentCreateErrorResponse(): any;
140
143
  static UserSerializer(): any;
141
144
  static GetDepartment(): any;
142
145
  static DepartmentsResponse(): any;
143
146
  static DepartmentErrorResponse(): any;
144
- static DepartmentCreateUpdate(): any;
145
- static DepartmentCreateResponse(): any;
146
- static DepartmentCreateErrorResponse(): any;
147
147
  static UserDetail(): any;
148
148
  static DepartmentModel(): any;
149
149
  static ProductTemplate(): any;
@@ -156,37 +156,39 @@ declare class CatalogModel {
156
156
  static InventoryValidationResponse(): any;
157
157
  static HSNData(): any;
158
158
  static HSNCodesResponse(): any;
159
- static ProductDownloadItemsData(): any;
160
- static VerifiedBy(): any;
161
- static ProductDownloadsItems(): any;
159
+ static UserInfo1(): any;
160
+ static ProductTemplateExportResponse(): any;
162
161
  static ProductDownloadsResponse(): any;
162
+ static ProductTemplateExportFilterRequest(): any;
163
+ static ProductTemplateDownloadsExport(): any;
163
164
  static ProductConfigurationDownloads(): any;
165
+ static Media2(): any;
164
166
  static Hierarchy(): any;
165
167
  static CategoryMappingValues(): any;
166
168
  static CategoryMapping(): any;
167
- static Media2(): any;
168
- static Category(): any;
169
- static CategoryResponse(): any;
170
169
  static CategoryRequestBody(): any;
171
170
  static CategoryCreateResponse(): any;
171
+ static Category(): any;
172
+ static CategoryResponse(): any;
172
173
  static SingleCategoryResponse(): any;
173
174
  static CategoryUpdateResponse(): any;
174
- static Logo(): any;
175
- static Brand(): any;
176
- static NetQuantityResponse(): any;
177
- static Image(): any;
178
- static ProductPublished(): any;
179
- static ReturnConfigResponse(): any;
180
- static Product(): any;
181
- static ProductListingResponse(): any;
175
+ static ReturnConfig(): any;
182
176
  static NetQuantity(): any;
183
177
  static TeaserTag(): any;
184
- static CustomOrder(): any;
185
178
  static ProductPublish(): any;
186
- static TaxIdentifier(): any;
187
- static ReturnConfig(): any;
188
179
  static Trader(): any;
180
+ static TaxIdentifier(): any;
181
+ static CustomOrder(): any;
189
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;
190
192
  static ProductVariants(): any;
191
193
  static ProductVariantsResponse(): any;
192
194
  static AttributeMasterSerializer(): any;
@@ -196,64 +198,72 @@ declare class CatalogModel {
196
198
  static AllSizes(): any;
197
199
  static GetAllSizes(): any;
198
200
  static ValidateProduct(): any;
201
+ static ProductPublished(): any;
202
+ static Product(): any;
203
+ static ProductListingResponse(): any;
204
+ static BulkJob(): any;
205
+ static BulkResponse(): any;
199
206
  static UserDetail1(): any;
200
207
  static ProductBulkRequest(): any;
201
208
  static ProductBulkRequestList(): any;
202
- static UserInfo1(): any;
203
- static BulkJob(): any;
204
- static BulkResponse(): any;
205
209
  static BulkProductRequest(): any;
206
- static NestedTags(): any;
207
210
  static ProductTagsViewResponse(): any;
211
+ static ProductBulkAssets(): any;
208
212
  static UserCommon(): any;
209
213
  static Items(): any;
210
214
  static BulkAssetResponse(): any;
211
- static ProductBulkAssets(): any;
212
215
  static ProductSizeDeleteDataResponse(): any;
213
216
  static ProductSizeDeleteResponse(): any;
214
- static InventoryResponse(): any;
215
- static InventoryResponsePaginated(): any;
216
- static ItemQuery(): any;
217
- static GTIN(): any;
218
217
  static SetSize(): any;
219
218
  static SizeDistribution(): any;
220
219
  static InventorySet(): any;
220
+ static GTIN(): any;
221
221
  static InvSize(): any;
222
+ static ItemQuery(): any;
222
223
  static InventoryRequest(): any;
223
- static WeightResponse(): any;
224
- static BrandMeta(): any;
224
+ static InventoryResponse(): any;
225
+ static InventoryResponsePaginated(): any;
226
+ static ReturnConfig1(): any;
227
+ static ManufacturerResponse(): any;
225
228
  static CompanyMeta(): any;
226
- static QuantityBase(): any;
227
- static Quantities(): any;
228
- static DimensionResponse(): any;
229
- static PriceMeta(): any;
230
229
  static StoreMeta(): any;
231
- static ManufacturerResponse(): any;
232
- static ReturnConfig1(): any;
230
+ static BrandMeta(): any;
231
+ static PriceMeta(): any;
232
+ static WeightResponse(): any;
233
233
  static Trader1(): any;
234
+ static DimensionResponse(): any;
235
+ static QuantityBase(): any;
236
+ static Quantities(): any;
234
237
  static InventorySellerResponse(): any;
235
238
  static InventorySellerIdentifierResponsePaginated(): any;
236
- static WeightResponse1(): any;
237
- static BrandMeta1(): any;
238
- static CompanyMeta1(): any;
239
- static Quantity(): any;
240
- static QuantitiesArticle(): any;
241
- static DimensionResponse1(): any;
242
239
  static DateMeta(): any;
243
- static PriceArticle(): any;
244
- static ArticleStoreResponse(): any;
245
- static ManufacturerResponse1(): any;
246
240
  static ReturnConfig2(): any;
241
+ static ManufacturerResponse1(): any;
242
+ static CompanyMeta1(): any;
243
+ static ArticleStoreResponse(): any;
244
+ static BrandMeta1(): any;
245
+ static PriceArticle(): any;
246
+ static WeightResponse1(): any;
247
247
  static Trader2(): any;
248
+ static DimensionResponse1(): any;
249
+ static Quantity(): any;
250
+ static QuantitiesArticle(): any;
248
251
  static GetInventories(): any;
249
252
  static GetInventoriesResponse(): any;
250
253
  static BulkInventoryGetItems(): any;
251
254
  static BulkInventoryGet(): any;
252
255
  static InventoryJobPayload(): any;
253
256
  static InventoryBulkRequest(): any;
254
- static InventoryExportJob(): any;
255
257
  static InventoryExportRequest(): any;
256
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;
257
267
  static FilerList(): any;
258
268
  static InventoryConfig(): any;
259
269
  static InventoryPayload(): any;
@@ -262,12 +272,11 @@ declare class CatalogModel {
262
272
  static InventoryResponseItem(): any;
263
273
  static InventoryUpdateResponse(): any;
264
274
  static HsnCodesObject(): any;
265
- static PageResponse(): any;
266
- static HsnCodesListingResponse(): any;
267
- static HsnUpsert(): any;
268
275
  static HsnCode(): any;
276
+ static HsnUpsert(): any;
269
277
  static BulkHsnUpsert(): any;
270
278
  static BulkHsnResponse(): any;
279
+ static PageResponse(): any;
271
280
  static TaxSlab(): any;
272
281
  static HSNDataInsertV2(): any;
273
282
  static HsnCodesListingResponseSchemaV2(): any;
@@ -292,19 +301,19 @@ declare class CatalogModel {
292
301
  static AssignStore(): any;
293
302
  static ArticleAssignment1(): any;
294
303
  static StoreAssignResponse(): any;
295
- static SellerPhoneNumber(): any;
296
- static LocationManagerSerializer(): any;
297
304
  static UserSerializer1(): any;
305
+ static LocationTimingSerializer(): any;
306
+ static LocationDayWiseSerializer(): any;
298
307
  static GetAddressSerializer(): any;
299
308
  static UserSerializer2(): any;
300
309
  static GetCompanySerializer(): any;
301
- static ProductReturnConfigSerializer(): any;
302
- static LocationIntegrationType(): any;
303
- static Document(): any;
310
+ static SellerPhoneNumber(): any;
311
+ static LocationManagerSerializer(): any;
304
312
  static InvoiceCredSerializer(): any;
305
313
  static InvoiceDetailsSerializer(): any;
306
- static LocationTimingSerializer(): any;
307
- static LocationDayWiseSerializer(): any;
314
+ static LocationIntegrationType(): any;
315
+ static ProductReturnConfigSerializer(): any;
316
+ static Document(): any;
308
317
  static GetLocationSerializer(): any;
309
318
  static LocationListSerializer(): any;
310
319
  static ApplicationBrandJson(): any;