@gofynd/fdk-client-javascript 1.0.0 → 1.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (104) hide show
  1. package/documentation/application/CATALOG.md +371 -371
  2. package/documentation/application/ORDER.md +272 -272
  3. package/documentation/application/PAYMENT.md +269 -269
  4. package/documentation/platform/CATALOG.md +1678 -1664
  5. package/documentation/platform/COMPANYPROFILE.md +201 -201
  6. package/documentation/platform/ORDER.md +1442 -1323
  7. package/documentation/platform/PAYMENT.md +88 -88
  8. package/index.js +7 -1
  9. package/package.json +1 -1
  10. package/sdk/application/Cart/CartApplicationClient.js +302 -0
  11. package/sdk/application/Cart/CartApplicationValidator.js +1 -0
  12. package/sdk/application/Catalog/CatalogApplicationClient.js +378 -0
  13. package/sdk/application/Catalog/CatalogApplicationModel.d.ts +17 -17
  14. package/sdk/application/Catalog/CatalogApplicationModel.js +500 -500
  15. package/sdk/application/Catalog/CatalogApplicationValidator.js +1 -0
  16. package/sdk/application/Common/CommonApplicationClient.js +22 -0
  17. package/sdk/application/Common/CommonApplicationValidator.js +1 -0
  18. package/sdk/application/Communication/CommunicationApplicationClient.js +41 -0
  19. package/sdk/application/Communication/CommunicationApplicationValidator.js +1 -0
  20. package/sdk/application/Configuration/ConfigurationApplicationClient.js +200 -0
  21. package/sdk/application/Configuration/ConfigurationApplicationValidator.js +1 -0
  22. package/sdk/application/Content/ContentApplicationClient.js +215 -0
  23. package/sdk/application/Content/ContentApplicationValidator.js +1 -0
  24. package/sdk/application/FileStorage/FileStorageApplicationClient.js +33 -0
  25. package/sdk/application/FileStorage/FileStorageApplicationValidator.js +1 -0
  26. package/sdk/application/Lead/LeadApplicationClient.js +81 -0
  27. package/sdk/application/Lead/LeadApplicationValidator.js +1 -0
  28. package/sdk/application/Logistic/LogisticApplicationClient.js +44 -0
  29. package/sdk/application/Logistic/LogisticApplicationValidator.js +1 -0
  30. package/sdk/application/Order/OrderApplicationClient.js +146 -0
  31. package/sdk/application/Order/OrderApplicationModel.d.ts +20 -20
  32. package/sdk/application/Order/OrderApplicationModel.js +329 -329
  33. package/sdk/application/Order/OrderApplicationValidator.js +1 -0
  34. package/sdk/application/Payment/PaymentApplicationClient.js +528 -0
  35. package/sdk/application/Payment/PaymentApplicationModel.d.ts +5 -5
  36. package/sdk/application/Payment/PaymentApplicationModel.js +391 -391
  37. package/sdk/application/Payment/PaymentApplicationValidator.js +1 -0
  38. package/sdk/application/PosCart/PosCartApplicationClient.js +329 -0
  39. package/sdk/application/PosCart/PosCartApplicationValidator.js +1 -0
  40. package/sdk/application/Rewards/RewardsApplicationClient.js +81 -0
  41. package/sdk/application/Rewards/RewardsApplicationValidator.js +1 -0
  42. package/sdk/application/Share/ShareApplicationClient.js +87 -0
  43. package/sdk/application/Share/ShareApplicationValidator.js +1 -0
  44. package/sdk/application/Theme/ThemeApplicationClient.js +44 -0
  45. package/sdk/application/Theme/ThemeApplicationValidator.js +1 -0
  46. package/sdk/application/User/UserApplicationClient.js +405 -0
  47. package/sdk/application/User/UserApplicationValidator.js +1 -0
  48. package/sdk/common/AxiosHelper.js +1 -1
  49. package/sdk/platform/Analytics/AnalyticsPlatformApplicationClient.js +114 -0
  50. package/sdk/platform/Analytics/AnalyticsPlatformClient.js +58 -0
  51. package/sdk/platform/AuditTrail/AuditTrailPlatformClient.js +46 -0
  52. package/sdk/platform/Billing/BillingPlatformClient.js +160 -0
  53. package/sdk/platform/Cart/CartPlatformApplicationClient.js +246 -0
  54. package/sdk/platform/Catalog/CatalogPlatformApplicationClient.d.ts +29 -29
  55. package/sdk/platform/Catalog/CatalogPlatformApplicationClient.js +839 -48
  56. package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.d.ts +3 -3
  57. package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.js +9 -9
  58. package/sdk/platform/Catalog/CatalogPlatformClient.d.ts +54 -54
  59. package/sdk/platform/Catalog/CatalogPlatformClient.js +1149 -96
  60. package/sdk/platform/Catalog/CatalogPlatformModel.d.ts +58 -57
  61. package/sdk/platform/Catalog/CatalogPlatformModel.js +1626 -1614
  62. package/sdk/platform/Catalog/CatalogPlatformValidator.d.ts +6 -6
  63. package/sdk/platform/Catalog/CatalogPlatformValidator.js +20 -20
  64. package/sdk/platform/Common/CommonPlatformClient.js +26 -0
  65. package/sdk/platform/Communication/CommunicationPlatformApplicationClient.js +587 -0
  66. package/sdk/platform/Communication/CommunicationPlatformClient.js +15 -0
  67. package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.js +179 -0
  68. package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.d.ts +11 -11
  69. package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.js +269 -269
  70. package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.js +382 -0
  71. package/sdk/platform/Configuration/ConfigurationPlatformClient.js +282 -0
  72. package/sdk/platform/Content/ContentPlatformApplicationClient.js +866 -0
  73. package/sdk/platform/Discount/DiscountPlatformClient.js +152 -0
  74. package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.js +54 -0
  75. package/sdk/platform/FileStorage/FileStoragePlatformClient.js +76 -0
  76. package/sdk/platform/Inventory/InventoryPlatformClient.js +161 -0
  77. package/sdk/platform/Lead/LeadPlatformApplicationClient.js +162 -0
  78. package/sdk/platform/Lead/LeadPlatformClient.js +140 -0
  79. package/sdk/platform/Order/OrderPlatformApplicationClient.js +55 -0
  80. package/sdk/platform/Order/OrderPlatformClient.d.ts +15 -6
  81. package/sdk/platform/Order/OrderPlatformClient.js +674 -15
  82. package/sdk/platform/Order/OrderPlatformModel.d.ts +67 -60
  83. package/sdk/platform/Order/OrderPlatformModel.js +1559 -1623
  84. package/sdk/platform/Order/OrderPlatformValidator.d.ts +2 -1
  85. package/sdk/platform/Order/OrderPlatformValidator.js +10 -4
  86. package/sdk/platform/Partner/PartnerPlatformApplicationClient.js +26 -0
  87. package/sdk/platform/Payment/PaymentPlatformApplicationClient.js +165 -0
  88. package/sdk/platform/Payment/PaymentPlatformClient.js +139 -0
  89. package/sdk/platform/Payment/PaymentPlatformModel.js +137 -137
  90. package/sdk/platform/PlatformApplicationClient.d.ts +2217 -2243
  91. package/sdk/platform/PlatformApplicationClient.js +2514 -2524
  92. package/sdk/platform/PlatformClient.d.ts +2217 -2243
  93. package/sdk/platform/PlatformClient.js +2514 -2524
  94. package/sdk/platform/Rewards/RewardsPlatformApplicationClient.js +169 -0
  95. package/sdk/platform/Share/SharePlatformApplicationClient.js +53 -0
  96. package/sdk/platform/Theme/ThemePlatformApplicationClient.js +293 -0
  97. package/sdk/platform/User/UserPlatformApplicationClient.js +145 -0
  98. package/sdk/platform/Webhook/WebhookPlatformClient.js +90 -0
  99. package/sdk/public/Configuration/ConfigurationPublicClient.js +25 -0
  100. package/sdk/public/Configuration/ConfigurationPublicValidator.js +3 -1
  101. package/sdk/public/Inventory/InventoryPublicClient.js +75 -0
  102. package/sdk/public/Inventory/InventoryPublicValidator.js +3 -1
  103. package/sdk/public/Webhook/WebhookPublicClient.js +29 -0
  104. package/sdk/public/Webhook/WebhookPublicValidator.js +3 -1
@@ -1,45 +1,45 @@
1
1
  export = CatalogModel;
2
2
  declare class CatalogModel {
3
- static SearchKeywordResult(): any;
4
- static CreateSearchKeyword(): any;
5
3
  static GetSearchWordsData(): any;
6
- static ErrorResponse(): any;
7
4
  static Page(): 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;
11
13
  static AutocompletePageAction(): any;
12
14
  static AutocompleteAction(): any;
13
15
  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
20
  static GetProductBundleCreateResponse(): any;
21
21
  static GetProductBundleListingResponse(): any;
22
22
  static ProductBundleRequest(): any;
23
- static ProductBundleUpdateRequest(): any;
24
- static LimitedProductData(): any;
25
23
  static Size(): any;
26
24
  static Price(): any;
25
+ static LimitedProductData(): any;
27
26
  static GetProducts(): any;
28
27
  static GetProductBundleResponse(): any;
28
+ static ProductBundleUpdateRequest(): any;
29
29
  static ListSizeGuide(): any;
30
30
  static Meta(): any;
31
31
  static Guide(): any;
32
32
  static ValidateSizeGuide(): any;
33
33
  static SuccessResponse(): any;
34
34
  static SizeGuideResponse(): any;
35
- static ApplicationItemMOQ(): any;
35
+ static MOQData(): any;
36
+ static SEOData(): any;
37
+ static OwnerAppItemResponse(): any;
36
38
  static MetaFields(): any;
39
+ static ApplicationItemMOQ(): any;
37
40
  static ApplicationItemSEO(): 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
44
  static PageResponseType(): any;
45
45
  static GetConfigResponse(): any;
@@ -77,44 +77,44 @@ declare class CatalogModel {
77
77
  static EntityConfiguration(): any;
78
78
  static GetAppCatalogEntityConfiguration(): any;
79
79
  static ProductSortOn(): any;
80
- static ProductFiltersValue(): any;
81
80
  static ProductFiltersKey(): any;
81
+ static ProductFiltersValue(): any;
82
82
  static ProductFilters(): any;
83
83
  static GetCollectionQueryOptionResponse(): any;
84
- static CollectionListingFilterTag(): any;
85
- static CollectionListingFilterType(): any;
86
- static CollectionListingFilter(): any;
87
- static CollectionQuery(): any;
88
84
  static ActionPage(): any;
89
85
  static Action(): any;
90
86
  static BannerImage(): any;
91
87
  static ImageUrls(): any;
88
+ static CollectionQuery(): any;
92
89
  static Media1(): any;
93
90
  static GetCollectionDetailNest(): any;
91
+ static CollectionListingFilterType(): any;
92
+ static CollectionListingFilterTag(): any;
93
+ static CollectionListingFilter(): any;
94
94
  static GetCollectionListingResponse(): any;
95
- static SeoDetail(): any;
96
- static UserInfo(): any;
97
95
  static NextSchedule(): any;
98
96
  static CollectionSchedule(): any;
97
+ static UserInfo(): any;
98
+ static CollectionBadge(): any;
99
+ static SeoDetail(): any;
99
100
  static CollectionImage(): any;
100
101
  static CollectionBanner(): any;
101
- static CollectionBadge(): any;
102
102
  static CreateCollection(): any;
103
103
  static CollectionCreateResponse(): any;
104
104
  static CollectionDetailResponse(): any;
105
105
  static UpdateCollection(): any;
106
- static ProductDetailAttribute(): any;
107
- static ProductDetailGroupedAttribute(): any;
106
+ static ProductBrand(): any;
108
107
  static Price1(): any;
109
108
  static ProductListingPrice(): any;
110
- static ProductBrand(): any;
109
+ static ProductDetailAttribute(): any;
110
+ static ProductDetailGroupedAttribute(): any;
111
111
  static ProductListingDetail(): any;
112
112
  static GetCollectionItemsResponse(): any;
113
113
  static ItemQueryForUserCollection(): any;
114
114
  static CollectionItemRequest(): any;
115
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,13 +127,14 @@ declare class CatalogModel {
127
127
  static OptinCompanyMetrics(): any;
128
128
  static StoreDetail(): any;
129
129
  static OptinStoreDetails(): any;
130
- static AttributeSchemaRange(): any;
131
- static AttributeMaster(): any;
132
130
  static AttributeMasterFilter(): any;
133
131
  static AttributeMasterMandatoryDetails(): any;
134
132
  static AttributeMasterMeta(): any;
135
133
  static AttributeMasterDetails(): any;
134
+ static AttributeSchemaRange(): any;
135
+ static AttributeMaster(): any;
136
136
  static GenderDetail(): any;
137
+ static ProductTemplateCategory(): any;
137
138
  static ProdcutTemplateCategoriesResponse(): any;
138
139
  static PTErrorResponse(): any;
139
140
  static UserSerializer(): any;
@@ -147,10 +148,10 @@ declare class CatalogModel {
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;
@@ -160,31 +161,31 @@ declare class CatalogModel {
160
161
  static ProductDownloadsItems(): any;
161
162
  static ProductDownloadsResponse(): any;
162
163
  static ProductConfigurationDownloads(): any;
164
+ static Hierarchy(): any;
163
165
  static CategoryMappingValues(): any;
164
166
  static CategoryMapping(): any;
165
167
  static Media2(): any;
166
- static Hierarchy(): any;
167
168
  static Category(): any;
168
169
  static CategoryResponse(): any;
169
170
  static CategoryRequestBody(): any;
170
171
  static CategoryCreateResponse(): any;
171
- static CategoryUpdateResponse(): any;
172
172
  static SingleCategoryResponse(): any;
173
- static NetQuantityResponse(): any;
174
- static ProductPublished(): any;
175
- static ReturnConfigResponse(): any;
173
+ static CategoryUpdateResponse(): any;
176
174
  static Logo(): any;
177
175
  static Brand(): any;
176
+ static NetQuantityResponse(): any;
178
177
  static Image(): any;
178
+ static ProductPublished(): any;
179
+ static ReturnConfigResponse(): any;
179
180
  static Product(): any;
180
181
  static ProductListingResponse(): any;
181
- static CustomOrder(): any;
182
182
  static NetQuantity(): any;
183
- static ProductPublish(): any;
184
183
  static TeaserTag(): any;
184
+ static CustomOrder(): any;
185
+ static ProductPublish(): any;
186
+ static TaxIdentifier(): any;
185
187
  static ReturnConfig(): any;
186
188
  static Trader(): any;
187
- static TaxIdentifier(): any;
188
189
  static ProductCreateUpdateSchemaV2(): any;
189
190
  static ProductVariants(): any;
190
191
  static ProductVariantsResponse(): any;
@@ -219,31 +220,31 @@ declare class CatalogModel {
219
220
  static InventorySet(): any;
220
221
  static InvSize(): any;
221
222
  static InventoryRequest(): any;
222
- static ManufacturerResponse(): any;
223
223
  static WeightResponse(): any;
224
- static DimensionResponse(): any;
225
- static ReturnConfig1(): any;
226
- static StoreMeta(): any;
224
+ static BrandMeta(): any;
225
+ static CompanyMeta(): any;
227
226
  static QuantityBase(): any;
228
227
  static Quantities(): any;
228
+ static DimensionResponse(): any;
229
229
  static PriceMeta(): any;
230
+ static StoreMeta(): any;
231
+ static ManufacturerResponse(): any;
232
+ static ReturnConfig1(): any;
230
233
  static Trader1(): any;
231
- static BrandMeta(): any;
232
- static CompanyMeta(): any;
233
234
  static InventorySellerResponse(): any;
234
235
  static InventorySellerIdentifierResponsePaginated(): any;
235
- static DateMeta(): any;
236
- static ManufacturerResponse1(): any;
237
236
  static WeightResponse1(): any;
238
- static DimensionResponse1(): any;
237
+ static BrandMeta1(): any;
238
+ static CompanyMeta1(): any;
239
239
  static Quantity(): any;
240
240
  static QuantitiesArticle(): any;
241
+ static DimensionResponse1(): any;
242
+ static DateMeta(): any;
243
+ static PriceArticle(): any;
241
244
  static ArticleStoreResponse(): any;
245
+ static ManufacturerResponse1(): any;
242
246
  static ReturnConfig2(): any;
243
- static PriceArticle(): any;
244
247
  static Trader2(): any;
245
- static BrandMeta1(): any;
246
- static CompanyMeta1(): any;
247
248
  static GetInventories(): any;
248
249
  static GetInventoriesResponse(): any;
249
250
  static BulkInventoryGetItems(): any;
@@ -260,8 +261,8 @@ declare class CatalogModel {
260
261
  static InventoryFailedReason(): any;
261
262
  static InventoryResponseItem(): any;
262
263
  static InventoryUpdateResponse(): any;
263
- static PageResponse(): any;
264
264
  static HsnCodesObject(): any;
265
+ static PageResponse(): any;
265
266
  static HsnCodesListingResponse(): any;
266
267
  static HsnUpsert(): any;
267
268
  static HsnCode(): any;
@@ -274,36 +275,36 @@ declare class CatalogModel {
274
275
  static BrandListingResponse(): any;
275
276
  static Department(): any;
276
277
  static DepartmentResponse(): any;
278
+ static DepartmentIdentifier(): any;
277
279
  static ThirdLevelChild(): any;
278
280
  static SecondLevelChild(): any;
279
281
  static Child(): any;
280
282
  static CategoryItems(): any;
281
283
  static DepartmentCategoryTree(): any;
282
- static DepartmentIdentifier(): any;
283
284
  static CategoryListingResponse(): any;
284
285
  static ApplicationProductListingResponse(): any;
285
286
  static ProductDetail(): any;
286
287
  static InventoryPage(): any;
287
288
  static InventoryStockResponse(): any;
288
- static ArticleAssignment(): any;
289
289
  static ArticleQuery(): any;
290
+ static ArticleAssignment(): any;
290
291
  static AssignStoreArticle(): any;
291
292
  static AssignStore(): any;
292
293
  static ArticleAssignment1(): any;
293
294
  static StoreAssignResponse(): any;
294
- static LocationIntegrationType(): any;
295
295
  static SellerPhoneNumber(): any;
296
- static InvoiceCredSerializer(): any;
297
- static InvoiceDetailsSerializer(): any;
298
- static UserSerializer1(): any;
299
- static Document(): any;
300
- static LocationTimingSerializer(): any;
301
- static LocationDayWiseSerializer(): any;
302
296
  static LocationManagerSerializer(): any;
303
- static ProductReturnConfigSerializer(): any;
297
+ static UserSerializer1(): any;
304
298
  static GetAddressSerializer(): any;
305
299
  static UserSerializer2(): any;
306
300
  static GetCompanySerializer(): any;
301
+ static ProductReturnConfigSerializer(): any;
302
+ static LocationIntegrationType(): any;
303
+ static Document(): any;
304
+ static InvoiceCredSerializer(): any;
305
+ static InvoiceDetailsSerializer(): any;
306
+ static LocationTimingSerializer(): any;
307
+ static LocationDayWiseSerializer(): any;
307
308
  static GetLocationSerializer(): any;
308
309
  static LocationListSerializer(): any;
309
310
  static ApplicationBrandJson(): any;