@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.
- package/documentation/application/CATALOG.md +371 -371
- package/documentation/application/ORDER.md +272 -272
- package/documentation/application/PAYMENT.md +269 -269
- package/documentation/platform/CATALOG.md +1678 -1664
- package/documentation/platform/COMPANYPROFILE.md +201 -201
- package/documentation/platform/ORDER.md +1442 -1323
- package/documentation/platform/PAYMENT.md +88 -88
- package/index.js +7 -1
- package/package.json +1 -1
- package/sdk/application/Cart/CartApplicationClient.js +302 -0
- package/sdk/application/Cart/CartApplicationValidator.js +1 -0
- package/sdk/application/Catalog/CatalogApplicationClient.js +378 -0
- package/sdk/application/Catalog/CatalogApplicationModel.d.ts +17 -17
- package/sdk/application/Catalog/CatalogApplicationModel.js +500 -500
- package/sdk/application/Catalog/CatalogApplicationValidator.js +1 -0
- package/sdk/application/Common/CommonApplicationClient.js +22 -0
- package/sdk/application/Common/CommonApplicationValidator.js +1 -0
- package/sdk/application/Communication/CommunicationApplicationClient.js +41 -0
- package/sdk/application/Communication/CommunicationApplicationValidator.js +1 -0
- package/sdk/application/Configuration/ConfigurationApplicationClient.js +200 -0
- package/sdk/application/Configuration/ConfigurationApplicationValidator.js +1 -0
- package/sdk/application/Content/ContentApplicationClient.js +215 -0
- package/sdk/application/Content/ContentApplicationValidator.js +1 -0
- package/sdk/application/FileStorage/FileStorageApplicationClient.js +33 -0
- package/sdk/application/FileStorage/FileStorageApplicationValidator.js +1 -0
- package/sdk/application/Lead/LeadApplicationClient.js +81 -0
- package/sdk/application/Lead/LeadApplicationValidator.js +1 -0
- package/sdk/application/Logistic/LogisticApplicationClient.js +44 -0
- package/sdk/application/Logistic/LogisticApplicationValidator.js +1 -0
- package/sdk/application/Order/OrderApplicationClient.js +146 -0
- package/sdk/application/Order/OrderApplicationModel.d.ts +20 -20
- package/sdk/application/Order/OrderApplicationModel.js +329 -329
- package/sdk/application/Order/OrderApplicationValidator.js +1 -0
- package/sdk/application/Payment/PaymentApplicationClient.js +528 -0
- package/sdk/application/Payment/PaymentApplicationModel.d.ts +5 -5
- package/sdk/application/Payment/PaymentApplicationModel.js +391 -391
- package/sdk/application/Payment/PaymentApplicationValidator.js +1 -0
- package/sdk/application/PosCart/PosCartApplicationClient.js +329 -0
- package/sdk/application/PosCart/PosCartApplicationValidator.js +1 -0
- package/sdk/application/Rewards/RewardsApplicationClient.js +81 -0
- package/sdk/application/Rewards/RewardsApplicationValidator.js +1 -0
- package/sdk/application/Share/ShareApplicationClient.js +87 -0
- package/sdk/application/Share/ShareApplicationValidator.js +1 -0
- package/sdk/application/Theme/ThemeApplicationClient.js +44 -0
- package/sdk/application/Theme/ThemeApplicationValidator.js +1 -0
- package/sdk/application/User/UserApplicationClient.js +405 -0
- package/sdk/application/User/UserApplicationValidator.js +1 -0
- package/sdk/common/AxiosHelper.js +1 -1
- package/sdk/platform/Analytics/AnalyticsPlatformApplicationClient.js +114 -0
- package/sdk/platform/Analytics/AnalyticsPlatformClient.js +58 -0
- package/sdk/platform/AuditTrail/AuditTrailPlatformClient.js +46 -0
- package/sdk/platform/Billing/BillingPlatformClient.js +160 -0
- package/sdk/platform/Cart/CartPlatformApplicationClient.js +246 -0
- package/sdk/platform/Catalog/CatalogPlatformApplicationClient.d.ts +29 -29
- package/sdk/platform/Catalog/CatalogPlatformApplicationClient.js +839 -48
- package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.d.ts +3 -3
- package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.js +9 -9
- package/sdk/platform/Catalog/CatalogPlatformClient.d.ts +54 -54
- package/sdk/platform/Catalog/CatalogPlatformClient.js +1149 -96
- package/sdk/platform/Catalog/CatalogPlatformModel.d.ts +58 -57
- package/sdk/platform/Catalog/CatalogPlatformModel.js +1626 -1614
- package/sdk/platform/Catalog/CatalogPlatformValidator.d.ts +6 -6
- package/sdk/platform/Catalog/CatalogPlatformValidator.js +20 -20
- package/sdk/platform/Common/CommonPlatformClient.js +26 -0
- package/sdk/platform/Communication/CommunicationPlatformApplicationClient.js +587 -0
- package/sdk/platform/Communication/CommunicationPlatformClient.js +15 -0
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.js +179 -0
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.d.ts +11 -11
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.js +269 -269
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.js +382 -0
- package/sdk/platform/Configuration/ConfigurationPlatformClient.js +282 -0
- package/sdk/platform/Content/ContentPlatformApplicationClient.js +866 -0
- package/sdk/platform/Discount/DiscountPlatformClient.js +152 -0
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.js +54 -0
- package/sdk/platform/FileStorage/FileStoragePlatformClient.js +76 -0
- package/sdk/platform/Inventory/InventoryPlatformClient.js +161 -0
- package/sdk/platform/Lead/LeadPlatformApplicationClient.js +162 -0
- package/sdk/platform/Lead/LeadPlatformClient.js +140 -0
- package/sdk/platform/Order/OrderPlatformApplicationClient.js +55 -0
- package/sdk/platform/Order/OrderPlatformClient.d.ts +15 -6
- package/sdk/platform/Order/OrderPlatformClient.js +674 -15
- package/sdk/platform/Order/OrderPlatformModel.d.ts +67 -60
- package/sdk/platform/Order/OrderPlatformModel.js +1559 -1623
- package/sdk/platform/Order/OrderPlatformValidator.d.ts +2 -1
- package/sdk/platform/Order/OrderPlatformValidator.js +10 -4
- package/sdk/platform/Partner/PartnerPlatformApplicationClient.js +26 -0
- package/sdk/platform/Payment/PaymentPlatformApplicationClient.js +165 -0
- package/sdk/platform/Payment/PaymentPlatformClient.js +139 -0
- package/sdk/platform/Payment/PaymentPlatformModel.js +137 -137
- package/sdk/platform/PlatformApplicationClient.d.ts +2217 -2243
- package/sdk/platform/PlatformApplicationClient.js +2514 -2524
- package/sdk/platform/PlatformClient.d.ts +2217 -2243
- package/sdk/platform/PlatformClient.js +2514 -2524
- package/sdk/platform/Rewards/RewardsPlatformApplicationClient.js +169 -0
- package/sdk/platform/Share/SharePlatformApplicationClient.js +53 -0
- package/sdk/platform/Theme/ThemePlatformApplicationClient.js +293 -0
- package/sdk/platform/User/UserPlatformApplicationClient.js +145 -0
- package/sdk/platform/Webhook/WebhookPlatformClient.js +90 -0
- package/sdk/public/Configuration/ConfigurationPublicClient.js +25 -0
- package/sdk/public/Configuration/ConfigurationPublicValidator.js +3 -1
- package/sdk/public/Inventory/InventoryPublicClient.js +75 -0
- package/sdk/public/Inventory/InventoryPublicValidator.js +3 -1
- package/sdk/public/Webhook/WebhookPublicClient.js +29 -0
- package/sdk/public/Webhook/WebhookPublicValidator.js +3 -1
|
@@ -2,42 +2,56 @@ export = OrderModel;
|
|
|
2
2
|
declare class OrderModel {
|
|
3
3
|
static FilterInfoOption(): any;
|
|
4
4
|
static FiltersInfo(): any;
|
|
5
|
-
static
|
|
6
|
-
static ShipmentStatus(): any;
|
|
5
|
+
static UserDataInfo(): any;
|
|
7
6
|
static PaymentModeInfo(): any;
|
|
8
|
-
static
|
|
7
|
+
static ShipmentItemFulFillingStore(): any;
|
|
9
8
|
static Prices(): any;
|
|
9
|
+
static ShipmentStatus(): any;
|
|
10
10
|
static GSTDetailsData(): any;
|
|
11
|
+
static PlatformItem(): any;
|
|
11
12
|
static BagUnit(): any;
|
|
12
|
-
static UserDataInfo(): any;
|
|
13
13
|
static ShipmentItem(): any;
|
|
14
14
|
static ShipmentInternalPlatformViewResponse(): any;
|
|
15
15
|
static Error(): any;
|
|
16
|
-
static FulfillingStore(): any;
|
|
17
|
-
static BagConfigs(): any;
|
|
18
|
-
static DiscountRules(): any;
|
|
19
|
-
static ItemCriterias(): any;
|
|
20
|
-
static BuyRules(): any;
|
|
21
|
-
static AppliedPromos(): any;
|
|
22
|
-
static BagGST(): any;
|
|
23
|
-
static OrderBagArticle(): any;
|
|
24
16
|
static BagStateMapper(): any;
|
|
17
|
+
static BagStatusHistory(): any;
|
|
18
|
+
static TrackingList(): any;
|
|
19
|
+
static DPDetailsData(): any;
|
|
20
|
+
static Dimensions(): any;
|
|
21
|
+
static Meta(): any;
|
|
22
|
+
static ShipmentPayments(): any;
|
|
23
|
+
static InvoiceInfo(): any;
|
|
24
|
+
static ShipmentStatusData(): any;
|
|
25
25
|
static CurrentStatus(): any;
|
|
26
26
|
static Identifier(): any;
|
|
27
27
|
static FinancialBreakup(): any;
|
|
28
|
+
static BagGST(): any;
|
|
29
|
+
static OrderBagArticle(): any;
|
|
28
30
|
static PlatformDeliveryAddress(): any;
|
|
31
|
+
static BagConfigs(): any;
|
|
32
|
+
static ItemCriterias(): any;
|
|
33
|
+
static BuyRules(): any;
|
|
34
|
+
static DiscountRules(): any;
|
|
35
|
+
static AppliedPromos(): any;
|
|
29
36
|
static OrderBrandName(): any;
|
|
30
37
|
static OrderBags(): any;
|
|
31
|
-
static
|
|
38
|
+
static OrderingStoreDetails(): any;
|
|
32
39
|
static UserDetailsData(): any;
|
|
33
|
-
static
|
|
40
|
+
static FulfillingStore(): any;
|
|
41
|
+
static ShipmentTimeStamp(): any;
|
|
42
|
+
static LockData(): any;
|
|
43
|
+
static DebugInfo(): any;
|
|
44
|
+
static EInvoice(): any;
|
|
45
|
+
static EinvoiceInfo(): any;
|
|
46
|
+
static BuyerDetails(): any;
|
|
47
|
+
static Formatted(): any;
|
|
48
|
+
static ShipmentMeta(): any;
|
|
49
|
+
static PDFLinks(): any;
|
|
50
|
+
static AffiliateMeta(): any;
|
|
51
|
+
static AffiliateDetails(): any;
|
|
34
52
|
static OrderDetailsData(): any;
|
|
35
|
-
static TrackingList(): any;
|
|
36
|
-
static DPDetailsData(): any;
|
|
37
|
-
static ShipmentStatusData(): any;
|
|
38
|
-
static ShipmentInfoResponse(): any;
|
|
39
|
-
static OrderingStoreDetails(): any;
|
|
40
53
|
static PlatformShipment(): any;
|
|
54
|
+
static ShipmentInfoResponse(): any;
|
|
41
55
|
static OrderMeta(): any;
|
|
42
56
|
static OrderDict(): any;
|
|
43
57
|
static ShipmentDetailsResponse(): any;
|
|
@@ -45,8 +59,8 @@ declare class OrderModel {
|
|
|
45
59
|
static SuperLane(): any;
|
|
46
60
|
static LaneConfigResponse(): any;
|
|
47
61
|
static Page(): any;
|
|
48
|
-
static PlatformChannel(): any;
|
|
49
62
|
static PlatformBreakupValues(): any;
|
|
63
|
+
static PlatformChannel(): any;
|
|
50
64
|
static PlatformOrderItems(): any;
|
|
51
65
|
static OrderListingResponse(): any;
|
|
52
66
|
static Options(): any;
|
|
@@ -63,8 +77,8 @@ declare class OrderModel {
|
|
|
63
77
|
static JioCodeUpsertResponse(): any;
|
|
64
78
|
static BulkInvoicingResponse(): any;
|
|
65
79
|
static BulkInvoiceLabelResponse(): any;
|
|
66
|
-
static URL(): any;
|
|
67
80
|
static FileUploadResponse(): any;
|
|
81
|
+
static URL(): any;
|
|
68
82
|
static FileResponse(): any;
|
|
69
83
|
static BulkListingPage(): any;
|
|
70
84
|
static bulkListingData(): any;
|
|
@@ -76,40 +90,28 @@ declare class OrderModel {
|
|
|
76
90
|
static BulkActionResponse(): any;
|
|
77
91
|
static BulkActionDetailsDataField(): any;
|
|
78
92
|
static BulkActionDetailsResponse(): any;
|
|
79
|
-
static AffiliateMeta(): any;
|
|
80
|
-
static AffiliateBagDetails(): any;
|
|
81
93
|
static BagGSTDetails(): any;
|
|
94
|
+
static B2BPODetails(): any;
|
|
95
|
+
static BagMeta(): any;
|
|
82
96
|
static ReturnConfig(): any;
|
|
83
|
-
static Dimensions(): any;
|
|
84
97
|
static Weight(): any;
|
|
85
98
|
static Article(): any;
|
|
99
|
+
static BagReturnableCancelableStatus(): any;
|
|
86
100
|
static ArticleDetails(): any;
|
|
87
|
-
static EInvoice(): any;
|
|
88
|
-
static EinvoiceInfo(): any;
|
|
89
|
-
static LockData(): any;
|
|
90
|
-
static ShipmentTimeStamp(): any;
|
|
91
|
-
static BuyerDetails(): any;
|
|
92
|
-
static DebugInfo(): any;
|
|
93
|
-
static Formatted(): any;
|
|
94
|
-
static ShipmentMeta(): any;
|
|
95
|
-
static PDFLinks(): any;
|
|
96
|
-
static AffiliateDetails(): any;
|
|
97
|
-
static StoreAddress(): any;
|
|
98
|
-
static EInvoicePortalDetails(): any;
|
|
99
101
|
static Document(): any;
|
|
100
102
|
static StoreDocuments(): any;
|
|
101
|
-
static
|
|
103
|
+
static EInvoicePortalDetails(): any;
|
|
102
104
|
static StoreEwaybill(): any;
|
|
105
|
+
static StoreEinvoice(): any;
|
|
103
106
|
static StoreGstCredentials(): any;
|
|
104
107
|
static StoreMeta(): any;
|
|
108
|
+
static StoreAddress(): any;
|
|
105
109
|
static Store(): any;
|
|
106
|
-
static
|
|
107
|
-
static Item(): any;
|
|
108
|
-
static B2BPODetails(): any;
|
|
109
|
-
static BagMeta(): any;
|
|
110
|
+
static AffiliateBagDetails(): any;
|
|
110
111
|
static Dates(): any;
|
|
111
112
|
static Brand(): any;
|
|
112
|
-
static
|
|
113
|
+
static Attributes(): any;
|
|
114
|
+
static Item(): any;
|
|
113
115
|
static BagDetailsPlatformResponse(): any;
|
|
114
116
|
static ErrorResponse(): any;
|
|
115
117
|
static Page1(): any;
|
|
@@ -122,53 +124,53 @@ declare class OrderModel {
|
|
|
122
124
|
static StoreReassignResponse(): any;
|
|
123
125
|
static Entities(): any;
|
|
124
126
|
static UpdateShipmentLockPayload(): any;
|
|
125
|
-
static Bags(): any;
|
|
126
127
|
static OriginalFilter(): any;
|
|
128
|
+
static Bags(): any;
|
|
127
129
|
static CheckResponse(): any;
|
|
128
130
|
static UpdateShipmentLockResponse(): any;
|
|
129
131
|
static AnnouncementResponse(): any;
|
|
130
132
|
static AnnouncementsResponse(): any;
|
|
131
133
|
static BaseResponse(): any;
|
|
132
134
|
static Click2CallResponse(): any;
|
|
133
|
-
static EntitiesDataUpdates(): any;
|
|
134
135
|
static ProductsDataUpdatesFilters(): any;
|
|
135
136
|
static ProductsDataUpdates(): any;
|
|
137
|
+
static EntitiesDataUpdates(): any;
|
|
136
138
|
static DataUpdates(): any;
|
|
137
|
-
static
|
|
138
|
-
static EntitiesReasons(): any;
|
|
139
|
-
static ProductsReasonsFilters(): any;
|
|
139
|
+
static Products(): any;
|
|
140
140
|
static ProductsReasonsData(): any;
|
|
141
|
+
static ProductsReasonsFilters(): any;
|
|
141
142
|
static ProductsReasons(): any;
|
|
143
|
+
static EntityReasonData(): any;
|
|
144
|
+
static EntitiesReasons(): any;
|
|
142
145
|
static ReasonsData(): any;
|
|
143
|
-
static Products(): any;
|
|
144
146
|
static ShipmentsRequest(): any;
|
|
145
147
|
static StatuesRequest(): any;
|
|
146
148
|
static UpdateShipmentStatusRequest(): any;
|
|
147
149
|
static ShipmentsResponse(): any;
|
|
148
150
|
static StatuesResponse(): any;
|
|
149
151
|
static UpdateShipmentStatusResponseBody(): any;
|
|
152
|
+
static AffiliateAppConfigMeta(): any;
|
|
153
|
+
static AffiliateAppConfig(): any;
|
|
150
154
|
static AffiliateInventoryArticleAssignmentConfig(): any;
|
|
151
|
-
static AffiliateInventoryLogisticsConfig(): any;
|
|
152
155
|
static AffiliateInventoryPaymentConfig(): any;
|
|
153
156
|
static AffiliateInventoryStoreConfig(): any;
|
|
154
157
|
static AffiliateInventoryOrderConfig(): any;
|
|
158
|
+
static AffiliateInventoryLogisticsConfig(): any;
|
|
155
159
|
static AffiliateInventoryConfig(): any;
|
|
156
|
-
static AffiliateAppConfigMeta(): any;
|
|
157
|
-
static AffiliateAppConfig(): any;
|
|
158
160
|
static AffiliateConfig(): any;
|
|
159
161
|
static Affiliate(): any;
|
|
160
162
|
static AffiliateStoreIdMapping(): any;
|
|
161
163
|
static OrderConfig(): any;
|
|
162
164
|
static OrderUser(): any;
|
|
163
165
|
static UserData(): any;
|
|
164
|
-
static OrderPriority(): any;
|
|
165
|
-
static MarketPlacePdf(): any;
|
|
166
|
-
static AffiliateBag(): any;
|
|
167
166
|
static ArticleDetails1(): any;
|
|
168
|
-
static ShipmentDetails(): any;
|
|
169
167
|
static LocationDetails(): any;
|
|
168
|
+
static ShipmentDetails(): any;
|
|
170
169
|
static ShipmentConfig(): any;
|
|
171
170
|
static ShipmentData(): any;
|
|
171
|
+
static MarketPlacePdf(): any;
|
|
172
|
+
static AffiliateBag(): any;
|
|
173
|
+
static OrderPriority(): any;
|
|
172
174
|
static OrderInfo(): any;
|
|
173
175
|
static CreateOrderPayload(): any;
|
|
174
176
|
static CreateOrderResponse(): any;
|
|
@@ -179,25 +181,30 @@ declare class OrderModel {
|
|
|
179
181
|
static HistoryDict(): any;
|
|
180
182
|
static ShipmentHistoryResponse(): any;
|
|
181
183
|
static ErrorDetail(): any;
|
|
184
|
+
static PostHistoryData(): any;
|
|
185
|
+
static PostHistoryFilters(): any;
|
|
186
|
+
static PostActivityHistory(): any;
|
|
187
|
+
static PostHistoryDict(): any;
|
|
188
|
+
static PostShipmentHistory(): any;
|
|
182
189
|
static SmsDataPayload(): any;
|
|
183
190
|
static SendSmsPayload(): any;
|
|
184
191
|
static OrderDetails(): any;
|
|
185
|
-
static
|
|
192
|
+
static Meta1(): any;
|
|
186
193
|
static ShipmentDetail(): any;
|
|
187
194
|
static OrderStatusData(): any;
|
|
188
195
|
static OrderStatusResult(): any;
|
|
189
196
|
static ManualAssignDPToShipment(): any;
|
|
190
197
|
static ManualAssignDPToShipmentResponse(): any;
|
|
191
198
|
static TaxInfo(): any;
|
|
199
|
+
static BillingInfo(): any;
|
|
192
200
|
static ShippingInfo(): any;
|
|
201
|
+
static PaymentMethod(): any;
|
|
202
|
+
static PaymentInfo(): any;
|
|
193
203
|
static Tax(): any;
|
|
194
204
|
static Charge(): any;
|
|
195
205
|
static ProcessingDates(): any;
|
|
196
206
|
static LineItem(): any;
|
|
197
207
|
static Shipment(): any;
|
|
198
|
-
static PaymentMethod(): any;
|
|
199
|
-
static PaymentInfo(): any;
|
|
200
|
-
static BillingInfo(): any;
|
|
201
208
|
static CreateOrderAPI(): any;
|
|
202
209
|
static CreateOrderErrorReponse(): any;
|
|
203
210
|
static PaymentMethods(): any;
|
|
@@ -205,8 +212,8 @@ declare class OrderModel {
|
|
|
205
212
|
static DpConfiguration(): any;
|
|
206
213
|
static CreateChannelConfig(): any;
|
|
207
214
|
static CreateChannelConfigData(): any;
|
|
208
|
-
static CreateChannelConfigResponse(): any;
|
|
209
215
|
static CreateChannelConifgErrorResponse(): any;
|
|
216
|
+
static CreateChannelConfigResponse(): any;
|
|
210
217
|
static UploadConsent(): any;
|
|
211
218
|
static PlatformOrderUpdate(): any;
|
|
212
219
|
static ResponseDetail(): any;
|