@gofynd/fdk-client-javascript 1.4.2-beta.4 → 1.4.2-beta.6
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/README.md +1 -1
- package/package.json +3 -2
- package/sdk/application/ApplicationClient.js +20 -0
- package/sdk/application/Cart/CartApplicationClient.d.ts +62 -62
- package/sdk/application/Cart/CartApplicationClient.js +82 -71
- package/sdk/application/Cart/CartApplicationValidator.d.ts +189 -34
- package/sdk/application/Cart/CartApplicationValidator.js +59 -34
- package/sdk/application/Catalog/CatalogApplicationClient.d.ts +78 -78
- package/sdk/application/Catalog/CatalogApplicationClient.js +78 -78
- package/sdk/application/Common/CommonApplicationClient.d.ts +4 -4
- package/sdk/application/Common/CommonApplicationClient.js +4 -4
- package/sdk/application/Communication/CommunicationApplicationClient.d.ts +6 -6
- package/sdk/application/Communication/CommunicationApplicationClient.js +6 -6
- package/sdk/application/Configuration/ConfigurationApplicationClient.d.ts +32 -67
- package/sdk/application/Configuration/ConfigurationApplicationClient.js +32 -106
- package/sdk/application/Content/ContentApplicationClient.d.ts +34 -64
- package/sdk/application/Content/ContentApplicationClient.js +34 -115
- package/sdk/application/FileStorage/FileStorageApplicationClient.d.ts +6 -42
- package/sdk/application/FileStorage/FileStorageApplicationClient.js +6 -42
- package/sdk/application/Lead/LeadApplicationClient.d.ts +14 -14
- package/sdk/application/Lead/LeadApplicationClient.js +14 -14
- package/sdk/application/Lead/LeadApplicationModel.js +1 -1
- package/sdk/application/Logistic/LogisticApplicationClient.d.ts +12 -12
- package/sdk/application/Logistic/LogisticApplicationClient.js +12 -12
- package/sdk/application/Order/OrderApplicationClient.d.ts +24 -24
- package/sdk/application/Order/OrderApplicationClient.js +24 -24
- package/sdk/application/Order/OrderApplicationModel.d.ts +23 -1
- package/sdk/application/Order/OrderApplicationModel.js +28 -0
- package/sdk/application/Payment/PaymentApplicationClient.d.ts +89 -89
- package/sdk/application/Payment/PaymentApplicationClient.js +94 -94
- package/sdk/application/Payment/PaymentApplicationModel.d.ts +498 -3
- package/sdk/application/Payment/PaymentApplicationModel.js +316 -2
- package/sdk/application/Payment/PaymentApplicationValidator.d.ts +5 -5
- package/sdk/application/Payment/PaymentApplicationValidator.js +3 -3
- package/sdk/application/PosCart/PosCartApplicationClient.d.ts +54 -54
- package/sdk/application/PosCart/PosCartApplicationClient.js +54 -54
- package/sdk/application/Rewards/RewardsApplicationClient.d.ts +14 -25
- package/sdk/application/Rewards/RewardsApplicationClient.js +14 -41
- package/sdk/application/Share/ShareApplicationClient.d.ts +14 -14
- package/sdk/application/Share/ShareApplicationClient.js +14 -14
- package/sdk/application/Share/ShareApplicationModel.d.ts +0 -4
- package/sdk/application/Share/ShareApplicationModel.js +0 -4
- package/sdk/application/Theme/ThemeApplicationClient.d.ts +8 -8
- package/sdk/application/Theme/ThemeApplicationClient.js +8 -8
- package/sdk/application/User/UserApplicationClient.d.ts +64 -64
- package/sdk/application/User/UserApplicationClient.js +64 -64
- package/sdk/common/Clickstream.d.ts +1 -0
- package/sdk/common/Clickstream.js +246 -0
- package/sdk/common/Utility.js +1 -4
- package/sdk/partner/Lead/LeadPartnerModel.js +1 -1
- package/sdk/partner/Theme/ThemePartnerClient.d.ts +38 -38
- package/sdk/partner/Theme/ThemePartnerClient.js +38 -38
- package/sdk/platform/AuditTrail/AuditTrailPlatformClient.d.ts +8 -8
- package/sdk/platform/AuditTrail/AuditTrailPlatformClient.js +8 -8
- package/sdk/platform/Billing/BillingPlatformClient.d.ts +34 -36
- package/sdk/platform/Billing/BillingPlatformClient.js +34 -36
- package/sdk/platform/Cart/CartPlatformApplicationClient.d.ts +98 -175
- package/sdk/platform/Cart/CartPlatformApplicationClient.js +98 -254
- package/sdk/platform/Cart/CartPlatformApplicationValidator.d.ts +92 -18
- package/sdk/platform/Cart/CartPlatformApplicationValidator.js +28 -18
- package/sdk/platform/Cart/CartPlatformModel.d.ts +12 -0
- package/sdk/platform/Cart/CartPlatformModel.js +12 -0
- package/sdk/platform/Catalog/CatalogPlatformApplicationClient.d.ts +195 -108
- package/sdk/platform/Catalog/CatalogPlatformApplicationClient.js +278 -113
- package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.d.ts +2 -2
- package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.js +2 -2
- package/sdk/platform/Catalog/CatalogPlatformClient.d.ts +335 -136
- package/sdk/platform/Catalog/CatalogPlatformClient.js +551 -136
- package/sdk/platform/Catalog/CatalogPlatformModel.d.ts +5 -5
- package/sdk/platform/Catalog/CatalogPlatformModel.js +3 -3
- package/sdk/platform/Common/CommonPlatformClient.d.ts +3 -3
- package/sdk/platform/Common/CommonPlatformClient.js +3 -3
- package/sdk/platform/Communication/CommunicationPlatformApplicationClient.d.ts +115 -290
- package/sdk/platform/Communication/CommunicationPlatformApplicationClient.js +115 -510
- package/sdk/platform/Communication/CommunicationPlatformClient.d.ts +2 -13
- package/sdk/platform/Communication/CommunicationPlatformClient.js +2 -29
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.d.ts +32 -32
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.js +32 -32
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.d.ts +52 -127
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.js +52 -204
- package/sdk/platform/Configuration/ConfigurationPlatformClient.d.ts +35 -111
- package/sdk/platform/Configuration/ConfigurationPlatformClient.js +35 -212
- package/sdk/platform/Configuration/ConfigurationPlatformModel.d.ts +142 -1
- package/sdk/platform/Configuration/ConfigurationPlatformModel.js +96 -0
- package/sdk/platform/Content/ContentPlatformApplicationClient.d.ts +130 -218
- package/sdk/platform/Content/ContentPlatformApplicationClient.js +136 -314
- package/sdk/platform/Content/ContentPlatformApplicationValidator.d.ts +4 -4
- package/sdk/platform/Content/ContentPlatformApplicationValidator.js +4 -4
- package/sdk/platform/Content/ContentPlatformClient.d.ts +1 -1
- package/sdk/platform/Content/ContentPlatformClient.js +7 -7
- package/sdk/platform/Content/ContentPlatformValidator.d.ts +4 -4
- package/sdk/platform/Content/ContentPlatformValidator.js +4 -4
- package/sdk/platform/Discount/DiscountPlatformClient.d.ts +22 -48
- package/sdk/platform/Discount/DiscountPlatformClient.js +22 -73
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.d.ts +20 -56
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.js +20 -59
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.d.ts +0 -2
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.js +0 -2
- package/sdk/platform/FileStorage/FileStoragePlatformClient.d.ts +14 -50
- package/sdk/platform/FileStorage/FileStoragePlatformClient.js +16 -55
- package/sdk/platform/FileStorage/FileStoragePlatformModel.d.ts +13 -14
- package/sdk/platform/FileStorage/FileStoragePlatformModel.js +12 -16
- package/sdk/platform/Finance/FinancePlatformClient.d.ts +44 -44
- package/sdk/platform/Finance/FinancePlatformClient.js +44 -44
- package/sdk/platform/Lead/LeadPlatformApplicationClient.d.ts +12 -12
- package/sdk/platform/Lead/LeadPlatformApplicationClient.js +12 -12
- package/sdk/platform/Lead/LeadPlatformClient.d.ts +22 -48
- package/sdk/platform/Lead/LeadPlatformClient.js +22 -72
- package/sdk/platform/Lead/LeadPlatformModel.js +1 -1
- package/sdk/platform/Order/OrderPlatformApplicationClient.d.ts +4 -4
- package/sdk/platform/Order/OrderPlatformApplicationClient.js +4 -4
- package/sdk/platform/Order/OrderPlatformClient.d.ts +79 -208
- package/sdk/platform/Order/OrderPlatformClient.js +79 -294
- package/sdk/platform/Order/OrderPlatformModel.d.ts +32 -3
- package/sdk/platform/Order/OrderPlatformModel.js +34 -2
- package/sdk/platform/Partner/PartnerPlatformApplicationClient.d.ts +4 -4
- package/sdk/platform/Partner/PartnerPlatformApplicationClient.js +4 -4
- package/sdk/platform/Partner/PartnerPlatformApplicationValidator.d.ts +4 -4
- package/sdk/platform/Partner/PartnerPlatformApplicationValidator.js +2 -2
- package/sdk/platform/Payment/PaymentPlatformApplicationClient.d.ts +81 -81
- package/sdk/platform/Payment/PaymentPlatformApplicationClient.js +81 -81
- package/sdk/platform/Payment/PaymentPlatformClient.d.ts +20 -20
- package/sdk/platform/Payment/PaymentPlatformClient.js +20 -20
- package/sdk/platform/Rewards/RewardsPlatformApplicationClient.d.ts +23 -40
- package/sdk/platform/Rewards/RewardsPlatformApplicationClient.js +23 -61
- package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationClient.d.ts +8 -8
- package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationClient.js +8 -8
- package/sdk/platform/Serviceability/ServiceabilityPlatformClient.d.ts +5 -5
- package/sdk/platform/Serviceability/ServiceabilityPlatformClient.js +8 -8
- package/sdk/platform/Serviceability/ServiceabilityPlatformModel.d.ts +4 -0
- package/sdk/platform/Serviceability/ServiceabilityPlatformModel.js +5 -1
- package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.d.ts +2 -2
- package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.js +2 -2
- package/sdk/platform/Share/SharePlatformApplicationClient.d.ts +10 -10
- package/sdk/platform/Share/SharePlatformApplicationClient.js +10 -10
- package/sdk/platform/Share/SharePlatformModel.d.ts +0 -4
- package/sdk/platform/Share/SharePlatformModel.js +0 -4
- package/sdk/platform/Theme/ThemePlatformApplicationClient.d.ts +56 -56
- package/sdk/platform/Theme/ThemePlatformApplicationClient.js +56 -56
- package/sdk/platform/Theme/ThemePlatformClient.d.ts +6 -6
- package/sdk/platform/Theme/ThemePlatformClient.js +6 -6
- package/sdk/platform/User/UserPlatformApplicationClient.d.ts +33 -33
- package/sdk/platform/User/UserPlatformApplicationClient.js +33 -33
- package/sdk/platform/User/UserPlatformModel.d.ts +4 -4
- package/sdk/platform/User/UserPlatformModel.js +4 -4
- package/sdk/platform/Webhook/WebhookPlatformClient.d.ts +32 -45
- package/sdk/platform/Webhook/WebhookPlatformClient.js +32 -45
- package/sdk/platform/Webhook/WebhookPlatformModel.d.ts +58 -1
- package/sdk/platform/Webhook/WebhookPlatformModel.js +66 -0
- package/sdk/public/Configuration/ConfigurationPublicClient.d.ts +2 -2
- package/sdk/public/Configuration/ConfigurationPublicClient.js +2 -2
- package/sdk/public/Partner/PartnerPublicClient.d.ts +2 -2
- package/sdk/public/Partner/PartnerPublicClient.js +2 -2
- package/sdk/public/Webhook/WebhookPublicClient.d.ts +4 -4
- package/sdk/public/Webhook/WebhookPublicClient.js +4 -4
|
@@ -43,26 +43,8 @@ class FileStorage {
|
|
|
43
43
|
* @param {import("../ApplicationAPIClient").Options} - Options
|
|
44
44
|
* @returns {Promise<FileStorageApplicationModel.CompleteResponse>} - Success response
|
|
45
45
|
* @name completeUpload
|
|
46
|
-
* @summary:
|
|
47
|
-
* @description:
|
|
48
|
-
*
|
|
49
|
-
* The three major steps are:
|
|
50
|
-
* Start
|
|
51
|
-
* Upload
|
|
52
|
-
* Complete
|
|
53
|
-
*
|
|
54
|
-
* ### Start
|
|
55
|
-
* Initiates the assets upload using `startUpload`.
|
|
56
|
-
* It returns a storage link in response.
|
|
57
|
-
*
|
|
58
|
-
* ### Upload
|
|
59
|
-
* Use the storage link to upload a file (Buffer or Blob) to the File Storage.
|
|
60
|
-
* Make a `PUT` request on storage link received from `startUpload` API with the file (Buffer or Blob) in the request body.
|
|
61
|
-
*
|
|
62
|
-
* ### Complete
|
|
63
|
-
* After successfully upload, call the `completeUpload` API to finish the upload process.
|
|
64
|
-
* This operation will return the URL of the uploaded file.
|
|
65
|
-
* - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/filestorage/completeUpload/).
|
|
46
|
+
* @summary: Finalizes upload process.
|
|
47
|
+
* @description: Complete the process of uploading the file, and will return the URL of the uploaded file - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/filestorage/completeUpload/).
|
|
66
48
|
*/
|
|
67
49
|
async completeUpload(
|
|
68
50
|
{ namespace, body, requestHeaders } = { requestHeaders: {} },
|
|
@@ -139,8 +121,8 @@ class FileStorage {
|
|
|
139
121
|
* @param {import("../ApplicationAPIClient").Options} - Options
|
|
140
122
|
* @returns {Promise<FileStorageApplicationModel.SignUrlResponse>} - Success response
|
|
141
123
|
* @name signUrls
|
|
142
|
-
* @summary:
|
|
143
|
-
* @description:
|
|
124
|
+
* @summary: Signs file URLs.
|
|
125
|
+
* @description: Generates secure, signed URLs that is valid for certain expiry time for accessing stored files. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/filestorage/signUrls/).
|
|
144
126
|
*/
|
|
145
127
|
async signUrls(
|
|
146
128
|
{ body, requestHeaders } = { requestHeaders: {} },
|
|
@@ -217,26 +199,8 @@ class FileStorage {
|
|
|
217
199
|
* @param {import("../ApplicationAPIClient").Options} - Options
|
|
218
200
|
* @returns {Promise<FileStorageApplicationModel.StartResponse>} - Success response
|
|
219
201
|
* @name startUpload
|
|
220
|
-
* @summary: Initiates
|
|
221
|
-
* @description:
|
|
222
|
-
*
|
|
223
|
-
* The three major steps are:
|
|
224
|
-
* Start
|
|
225
|
-
* Upload
|
|
226
|
-
* Complete
|
|
227
|
-
*
|
|
228
|
-
* ### Start
|
|
229
|
-
* Initiates the assets upload using `startUpload`.
|
|
230
|
-
* It returns a storage link in response.
|
|
231
|
-
*
|
|
232
|
-
* ### Upload
|
|
233
|
-
* Use the storage link to upload a file (Buffer or Blob) to the File Storage.
|
|
234
|
-
* Make a `PUT` request on storage link received from `startUpload` API with the file (Buffer or Blob) in the request body.
|
|
235
|
-
*
|
|
236
|
-
* ### Complete
|
|
237
|
-
* After successfully upload, call the `completeUpload` API to finish the upload process.
|
|
238
|
-
* This operation will return the URL of the uploaded file.
|
|
239
|
-
* - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/filestorage/startUpload/).
|
|
202
|
+
* @summary: Initiates file upload
|
|
203
|
+
* @description: Starts the process of uploading a file to storage location, and returns a storage link in response. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/filestorage/startUpload/).
|
|
240
204
|
*/
|
|
241
205
|
async startUpload(
|
|
242
206
|
{ namespace, body, requestHeaders } = { requestHeaders: {} },
|
|
@@ -19,8 +19,8 @@ declare class Lead {
|
|
|
19
19
|
* @param {import("../ApplicationAPIClient").Options} - Options
|
|
20
20
|
* @returns {Promise<LeadApplicationModel.TicketHistory>} - Success response
|
|
21
21
|
* @name createHistory
|
|
22
|
-
* @summary:
|
|
23
|
-
* @description:
|
|
22
|
+
* @summary: Logs ticket history.
|
|
23
|
+
* @description: Adds a history entry for a specific support ticket. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/lead/createHistory/).
|
|
24
24
|
*/
|
|
25
25
|
createHistory({ id, body, requestHeaders }?: LeadApplicationValidator.CreateHistoryParam, { responseHeaders }?: object): Promise<LeadApplicationModel.TicketHistory>;
|
|
26
26
|
/**
|
|
@@ -29,8 +29,8 @@ declare class Lead {
|
|
|
29
29
|
* @param {import("../ApplicationAPIClient").Options} - Options
|
|
30
30
|
* @returns {Promise<LeadApplicationModel.Ticket>} - Success response
|
|
31
31
|
* @name createTicket
|
|
32
|
-
* @summary:
|
|
33
|
-
* @description:
|
|
32
|
+
* @summary: Creates a new ticket.
|
|
33
|
+
* @description: Generates a new customer support ticket for a user query. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/lead/createTicket/).
|
|
34
34
|
*/
|
|
35
35
|
createTicket({ body, requestHeaders }?: LeadApplicationValidator.CreateTicketParam, { responseHeaders }?: object): Promise<LeadApplicationModel.Ticket>;
|
|
36
36
|
/**
|
|
@@ -39,8 +39,8 @@ declare class Lead {
|
|
|
39
39
|
* @param {import("../ApplicationAPIClient").Options} - Options
|
|
40
40
|
* @returns {Promise<LeadApplicationModel.CustomForm>} - Success response
|
|
41
41
|
* @name getCustomForm
|
|
42
|
-
* @summary:
|
|
43
|
-
* @description:
|
|
42
|
+
* @summary: Fetches custom form.
|
|
43
|
+
* @description: Retrieves a customizable form template for data collection. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/lead/getCustomForm/).
|
|
44
44
|
*/
|
|
45
45
|
getCustomForm({ slug, requestHeaders }?: LeadApplicationValidator.GetCustomFormParam, { responseHeaders }?: object): Promise<LeadApplicationModel.CustomForm>;
|
|
46
46
|
/**
|
|
@@ -53,8 +53,8 @@ declare class Lead {
|
|
|
53
53
|
* - Success response
|
|
54
54
|
*
|
|
55
55
|
* @name getParticipantsInsideVideoRoom
|
|
56
|
-
* @summary:
|
|
57
|
-
* @description:
|
|
56
|
+
* @summary: Lists video room participants.
|
|
57
|
+
* @description: Gets the current participants inside a specific video room. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/lead/getParticipantsInsideVideoRoom/).
|
|
58
58
|
*/
|
|
59
59
|
getParticipantsInsideVideoRoom({ uniqueName, requestHeaders }?: LeadApplicationValidator.GetParticipantsInsideVideoRoomParam, { responseHeaders }?: object): Promise<LeadApplicationModel.GetParticipantsInsideVideoRoomResponse>;
|
|
60
60
|
/**
|
|
@@ -63,8 +63,8 @@ declare class Lead {
|
|
|
63
63
|
* @param {import("../ApplicationAPIClient").Options} - Options
|
|
64
64
|
* @returns {Promise<LeadApplicationModel.Ticket>} - Success response
|
|
65
65
|
* @name getTicket
|
|
66
|
-
* @summary:
|
|
67
|
-
* @description:
|
|
66
|
+
* @summary: Retrieves a support ticket.
|
|
67
|
+
* @description: Retrieve details of a specific customer support ticket. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/lead/getTicket/).
|
|
68
68
|
*/
|
|
69
69
|
getTicket({ id, requestHeaders }?: LeadApplicationValidator.GetTicketParam, { responseHeaders }?: object): Promise<LeadApplicationModel.Ticket>;
|
|
70
70
|
/**
|
|
@@ -74,8 +74,8 @@ declare class Lead {
|
|
|
74
74
|
* @returns {Promise<LeadApplicationModel.GetTokenForVideoRoomResponse>} -
|
|
75
75
|
* Success response
|
|
76
76
|
* @name getTokenForVideoRoom
|
|
77
|
-
* @summary:
|
|
78
|
-
* @description:
|
|
77
|
+
* @summary: Retrieves video room token.
|
|
78
|
+
* @description: Retrieves a secure token for accessing a video chat room. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/lead/getTokenForVideoRoom/).
|
|
79
79
|
*/
|
|
80
80
|
getTokenForVideoRoom({ uniqueName, requestHeaders }?: LeadApplicationValidator.GetTokenForVideoRoomParam, { responseHeaders }?: object): Promise<LeadApplicationModel.GetTokenForVideoRoomResponse>;
|
|
81
81
|
/**
|
|
@@ -85,8 +85,8 @@ declare class Lead {
|
|
|
85
85
|
* @returns {Promise<LeadApplicationModel.SubmitCustomFormResponse>} -
|
|
86
86
|
* Success response
|
|
87
87
|
* @name submitCustomForm
|
|
88
|
-
* @summary:
|
|
89
|
-
* @description:
|
|
88
|
+
* @summary: Submits form data.
|
|
89
|
+
* @description: Sends user-entered data from a custom form for processing. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/lead/submitCustomForm/).
|
|
90
90
|
*/
|
|
91
91
|
submitCustomForm({ slug, body, requestHeaders }?: LeadApplicationValidator.SubmitCustomFormParam, { responseHeaders }?: object): Promise<LeadApplicationModel.SubmitCustomFormResponse>;
|
|
92
92
|
}
|
|
@@ -46,8 +46,8 @@ class Lead {
|
|
|
46
46
|
* @param {import("../ApplicationAPIClient").Options} - Options
|
|
47
47
|
* @returns {Promise<LeadApplicationModel.TicketHistory>} - Success response
|
|
48
48
|
* @name createHistory
|
|
49
|
-
* @summary:
|
|
50
|
-
* @description:
|
|
49
|
+
* @summary: Logs ticket history.
|
|
50
|
+
* @description: Adds a history entry for a specific support ticket. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/lead/createHistory/).
|
|
51
51
|
*/
|
|
52
52
|
async createHistory(
|
|
53
53
|
{ id, body, requestHeaders } = { requestHeaders: {} },
|
|
@@ -124,8 +124,8 @@ class Lead {
|
|
|
124
124
|
* @param {import("../ApplicationAPIClient").Options} - Options
|
|
125
125
|
* @returns {Promise<LeadApplicationModel.Ticket>} - Success response
|
|
126
126
|
* @name createTicket
|
|
127
|
-
* @summary:
|
|
128
|
-
* @description:
|
|
127
|
+
* @summary: Creates a new ticket.
|
|
128
|
+
* @description: Generates a new customer support ticket for a user query. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/lead/createTicket/).
|
|
129
129
|
*/
|
|
130
130
|
async createTicket(
|
|
131
131
|
{ body, requestHeaders } = { requestHeaders: {} },
|
|
@@ -202,8 +202,8 @@ class Lead {
|
|
|
202
202
|
* @param {import("../ApplicationAPIClient").Options} - Options
|
|
203
203
|
* @returns {Promise<LeadApplicationModel.CustomForm>} - Success response
|
|
204
204
|
* @name getCustomForm
|
|
205
|
-
* @summary:
|
|
206
|
-
* @description:
|
|
205
|
+
* @summary: Fetches custom form.
|
|
206
|
+
* @description: Retrieves a customizable form template for data collection. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/lead/getCustomForm/).
|
|
207
207
|
*/
|
|
208
208
|
async getCustomForm(
|
|
209
209
|
{ slug, requestHeaders } = { requestHeaders: {} },
|
|
@@ -284,8 +284,8 @@ class Lead {
|
|
|
284
284
|
* - Success response
|
|
285
285
|
*
|
|
286
286
|
* @name getParticipantsInsideVideoRoom
|
|
287
|
-
* @summary:
|
|
288
|
-
* @description:
|
|
287
|
+
* @summary: Lists video room participants.
|
|
288
|
+
* @description: Gets the current participants inside a specific video room. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/lead/getParticipantsInsideVideoRoom/).
|
|
289
289
|
*/
|
|
290
290
|
async getParticipantsInsideVideoRoom(
|
|
291
291
|
{ uniqueName, requestHeaders } = { requestHeaders: {} },
|
|
@@ -364,8 +364,8 @@ class Lead {
|
|
|
364
364
|
* @param {import("../ApplicationAPIClient").Options} - Options
|
|
365
365
|
* @returns {Promise<LeadApplicationModel.Ticket>} - Success response
|
|
366
366
|
* @name getTicket
|
|
367
|
-
* @summary:
|
|
368
|
-
* @description:
|
|
367
|
+
* @summary: Retrieves a support ticket.
|
|
368
|
+
* @description: Retrieve details of a specific customer support ticket. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/lead/getTicket/).
|
|
369
369
|
*/
|
|
370
370
|
async getTicket(
|
|
371
371
|
{ id, requestHeaders } = { requestHeaders: {} },
|
|
@@ -441,8 +441,8 @@ class Lead {
|
|
|
441
441
|
* @returns {Promise<LeadApplicationModel.GetTokenForVideoRoomResponse>} -
|
|
442
442
|
* Success response
|
|
443
443
|
* @name getTokenForVideoRoom
|
|
444
|
-
* @summary:
|
|
445
|
-
* @description:
|
|
444
|
+
* @summary: Retrieves video room token.
|
|
445
|
+
* @description: Retrieves a secure token for accessing a video chat room. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/lead/getTokenForVideoRoom/).
|
|
446
446
|
*/
|
|
447
447
|
async getTokenForVideoRoom(
|
|
448
448
|
{ uniqueName, requestHeaders } = { requestHeaders: {} },
|
|
@@ -520,8 +520,8 @@ class Lead {
|
|
|
520
520
|
* @returns {Promise<LeadApplicationModel.SubmitCustomFormResponse>} -
|
|
521
521
|
* Success response
|
|
522
522
|
* @name submitCustomForm
|
|
523
|
-
* @summary:
|
|
524
|
-
* @description:
|
|
523
|
+
* @summary: Submits form data.
|
|
524
|
+
* @description: Sends user-entered data from a custom form for processing. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/lead/submitCustomForm/).
|
|
525
525
|
*/
|
|
526
526
|
async submitCustomForm(
|
|
527
527
|
{ slug, body, requestHeaders } = { requestHeaders: {} },
|
|
@@ -23,8 +23,8 @@ declare class Logistic {
|
|
|
23
23
|
* @param {import("../ApplicationAPIClient").Options} - Options
|
|
24
24
|
* @returns {Promise<LogisticApplicationModel.CountryListResponse>} - Success response
|
|
25
25
|
* @name getAllCountries
|
|
26
|
-
* @summary:
|
|
27
|
-
* @description:
|
|
26
|
+
* @summary: Lists all countries.
|
|
27
|
+
* @description: Retrieve a list of all countries supported by the system. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/logistic/getAllCountries/).
|
|
28
28
|
*/
|
|
29
29
|
getAllCountries({ requestHeaders }?: any, { responseHeaders }?: object): Promise<LogisticApplicationModel.CountryListResponse>;
|
|
30
30
|
/**
|
|
@@ -73,8 +73,8 @@ declare class Logistic {
|
|
|
73
73
|
* @param {import("../ApplicationAPIClient").Options} - Options
|
|
74
74
|
* @returns {Promise<LogisticApplicationModel.GetStoreResponse>} - Success response
|
|
75
75
|
* @name getLocations
|
|
76
|
-
* @summary:
|
|
77
|
-
* @description:
|
|
76
|
+
* @summary: Fetches available locations.
|
|
77
|
+
* @description: Retrieves a list of all locations of countries, states, cities. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/logistic/getLocations/).
|
|
78
78
|
*/
|
|
79
79
|
getLocations({ xApplicationId, xApplicationData, country, state, city, pincode, sector, pageNo, pageSize, requestHeaders, }?: LogisticApplicationValidator.GetLocationsParam, { responseHeaders }?: object): Promise<LogisticApplicationModel.GetStoreResponse>;
|
|
80
80
|
/**
|
|
@@ -84,8 +84,8 @@ declare class Logistic {
|
|
|
84
84
|
* @returns {Promise<LogisticApplicationModel.ReAssignStoreResponse>} -
|
|
85
85
|
* Success response
|
|
86
86
|
* @name getOptimalLocations
|
|
87
|
-
* @summary:
|
|
88
|
-
* @description:
|
|
87
|
+
* @summary: Finds optimal locations.
|
|
88
|
+
* @description: Retrieve the most efficient locations for logistics purposes. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/logistic/getOptimalLocations/).
|
|
89
89
|
*/
|
|
90
90
|
getOptimalLocations({ body, requestHeaders }?: LogisticApplicationValidator.GetOptimalLocationsParam, { responseHeaders }?: object): Promise<LogisticApplicationModel.ReAssignStoreResponse>;
|
|
91
91
|
/**
|
|
@@ -94,8 +94,8 @@ declare class Logistic {
|
|
|
94
94
|
* @param {import("../ApplicationAPIClient").Options} - Options
|
|
95
95
|
* @returns {Promise<LogisticApplicationModel.PincodeApiResponse>} - Success response
|
|
96
96
|
* @name getPincodeCity
|
|
97
|
-
* @summary:
|
|
98
|
-
* @description:
|
|
97
|
+
* @summary: Fetches city by pincode.
|
|
98
|
+
* @description: Retrieve the name of the city associated with a given pincode. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/logistic/getPincodeCity/).
|
|
99
99
|
*/
|
|
100
100
|
getPincodeCity({ pincode, requestHeaders }?: LogisticApplicationValidator.GetPincodeCityParam, { responseHeaders }?: object): Promise<LogisticApplicationModel.PincodeApiResponse>;
|
|
101
101
|
/**
|
|
@@ -106,8 +106,8 @@ declare class Logistic {
|
|
|
106
106
|
* - Success response
|
|
107
107
|
*
|
|
108
108
|
* @name getPincodeZones
|
|
109
|
-
* @summary:
|
|
110
|
-
* @description:
|
|
109
|
+
* @summary: Fetches zones by pincode.
|
|
110
|
+
* @description: Retreive the logistical zones corresponding to a given pincode. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/logistic/getPincodeZones/).
|
|
111
111
|
*/
|
|
112
112
|
getPincodeZones({ body, requestHeaders }?: LogisticApplicationValidator.GetPincodeZonesParam, { responseHeaders }?: object): Promise<LogisticApplicationModel.GetZoneFromPincodeViewResponse>;
|
|
113
113
|
/**
|
|
@@ -116,8 +116,8 @@ declare class Logistic {
|
|
|
116
116
|
* @param {import("../ApplicationAPIClient").Options} - Options
|
|
117
117
|
* @returns {Promise<LogisticApplicationModel.TATViewResponse>} - Success response
|
|
118
118
|
* @name getTatProduct
|
|
119
|
-
* @summary:
|
|
120
|
-
* @description:
|
|
119
|
+
* @summary: Retrieves product turnaround time.
|
|
120
|
+
* @description: Retrieve the estimated delivery time for a specific product. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/logistic/getTatProduct/).
|
|
121
121
|
*/
|
|
122
122
|
getTatProduct({ body, requestHeaders }?: LogisticApplicationValidator.GetTatProductParam, { responseHeaders }?: object): Promise<LogisticApplicationModel.TATViewResponse>;
|
|
123
123
|
/**
|
|
@@ -53,8 +53,8 @@ class Logistic {
|
|
|
53
53
|
* @param {import("../ApplicationAPIClient").Options} - Options
|
|
54
54
|
* @returns {Promise<LogisticApplicationModel.CountryListResponse>} - Success response
|
|
55
55
|
* @name getAllCountries
|
|
56
|
-
* @summary:
|
|
57
|
-
* @description:
|
|
56
|
+
* @summary: Lists all countries.
|
|
57
|
+
* @description: Retrieve a list of all countries supported by the system. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/logistic/getAllCountries/).
|
|
58
58
|
*/
|
|
59
59
|
async getAllCountries(
|
|
60
60
|
{ requestHeaders } = { requestHeaders: {} },
|
|
@@ -469,8 +469,8 @@ class Logistic {
|
|
|
469
469
|
* @param {import("../ApplicationAPIClient").Options} - Options
|
|
470
470
|
* @returns {Promise<LogisticApplicationModel.GetStoreResponse>} - Success response
|
|
471
471
|
* @name getLocations
|
|
472
|
-
* @summary:
|
|
473
|
-
* @description:
|
|
472
|
+
* @summary: Fetches available locations.
|
|
473
|
+
* @description: Retrieves a list of all locations of countries, states, cities. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/logistic/getLocations/).
|
|
474
474
|
*/
|
|
475
475
|
async getLocations(
|
|
476
476
|
{
|
|
@@ -588,8 +588,8 @@ class Logistic {
|
|
|
588
588
|
* @returns {Promise<LogisticApplicationModel.ReAssignStoreResponse>} -
|
|
589
589
|
* Success response
|
|
590
590
|
* @name getOptimalLocations
|
|
591
|
-
* @summary:
|
|
592
|
-
* @description:
|
|
591
|
+
* @summary: Finds optimal locations.
|
|
592
|
+
* @description: Retrieve the most efficient locations for logistics purposes. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/logistic/getOptimalLocations/).
|
|
593
593
|
*/
|
|
594
594
|
async getOptimalLocations(
|
|
595
595
|
{ body, requestHeaders } = { requestHeaders: {} },
|
|
@@ -668,8 +668,8 @@ class Logistic {
|
|
|
668
668
|
* @param {import("../ApplicationAPIClient").Options} - Options
|
|
669
669
|
* @returns {Promise<LogisticApplicationModel.PincodeApiResponse>} - Success response
|
|
670
670
|
* @name getPincodeCity
|
|
671
|
-
* @summary:
|
|
672
|
-
* @description:
|
|
671
|
+
* @summary: Fetches city by pincode.
|
|
672
|
+
* @description: Retrieve the name of the city associated with a given pincode. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/logistic/getPincodeCity/).
|
|
673
673
|
*/
|
|
674
674
|
async getPincodeCity(
|
|
675
675
|
{ pincode, requestHeaders } = { requestHeaders: {} },
|
|
@@ -748,8 +748,8 @@ class Logistic {
|
|
|
748
748
|
* - Success response
|
|
749
749
|
*
|
|
750
750
|
* @name getPincodeZones
|
|
751
|
-
* @summary:
|
|
752
|
-
* @description:
|
|
751
|
+
* @summary: Fetches zones by pincode.
|
|
752
|
+
* @description: Retreive the logistical zones corresponding to a given pincode. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/logistic/getPincodeZones/).
|
|
753
753
|
*/
|
|
754
754
|
async getPincodeZones(
|
|
755
755
|
{ body, requestHeaders } = { requestHeaders: {} },
|
|
@@ -826,8 +826,8 @@ class Logistic {
|
|
|
826
826
|
* @param {import("../ApplicationAPIClient").Options} - Options
|
|
827
827
|
* @returns {Promise<LogisticApplicationModel.TATViewResponse>} - Success response
|
|
828
828
|
* @name getTatProduct
|
|
829
|
-
* @summary:
|
|
830
|
-
* @description:
|
|
829
|
+
* @summary: Retrieves product turnaround time.
|
|
830
|
+
* @description: Retrieve the estimated delivery time for a specific product. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/logistic/getTatProduct/).
|
|
831
831
|
*/
|
|
832
832
|
async getTatProduct(
|
|
833
833
|
{ body, requestHeaders } = { requestHeaders: {} },
|
|
@@ -27,8 +27,8 @@ declare class Order {
|
|
|
27
27
|
* @returns {Promise<OrderApplicationModel.CustomerDetailsResponse>} -
|
|
28
28
|
* Success response
|
|
29
29
|
* @name getCustomerDetailsByShipmentId
|
|
30
|
-
* @summary:
|
|
31
|
-
* @description:
|
|
30
|
+
* @summary: Retrieves shipment customer.
|
|
31
|
+
* @description: Retrieve customer details such as mobile number using Shipment ID. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/order/getCustomerDetailsByShipmentId/).
|
|
32
32
|
*/
|
|
33
33
|
getCustomerDetailsByShipmentId({ orderId, shipmentId, requestHeaders }?: OrderApplicationValidator.GetCustomerDetailsByShipmentIdParam, { responseHeaders }?: object): Promise<OrderApplicationModel.CustomerDetailsResponse>;
|
|
34
34
|
/**
|
|
@@ -38,8 +38,8 @@ declare class Order {
|
|
|
38
38
|
* @returns {Promise<OrderApplicationModel.ResponseGetInvoiceShipment>} -
|
|
39
39
|
* Success response
|
|
40
40
|
* @name getInvoiceByShipmentId
|
|
41
|
-
* @summary:
|
|
42
|
-
* @description:
|
|
41
|
+
* @summary: Retrieves invoice for shipment.
|
|
42
|
+
* @description: Retrieve the invoice corresponding to a specific shipment ID. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/order/getInvoiceByShipmentId/).
|
|
43
43
|
*/
|
|
44
44
|
getInvoiceByShipmentId({ shipmentId, requestHeaders }?: OrderApplicationValidator.GetInvoiceByShipmentIdParam, { responseHeaders }?: object): Promise<OrderApplicationModel.ResponseGetInvoiceShipment>;
|
|
45
45
|
/**
|
|
@@ -48,8 +48,8 @@ declare class Order {
|
|
|
48
48
|
* @param {import("../ApplicationAPIClient").Options} - Options
|
|
49
49
|
* @returns {Promise<OrderApplicationModel.OrderById>} - Success response
|
|
50
50
|
* @name getOrderById
|
|
51
|
-
* @summary:
|
|
52
|
-
* @description:
|
|
51
|
+
* @summary: Fetches order by ID.
|
|
52
|
+
* @description: Retrieve order details such as tracking details, shipment, store information using Fynd Order ID. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/order/getOrderById/).
|
|
53
53
|
*/
|
|
54
54
|
getOrderById({ orderId, allowInactive, requestHeaders }?: OrderApplicationValidator.GetOrderByIdParam, { responseHeaders }?: object): Promise<OrderApplicationModel.OrderById>;
|
|
55
55
|
/**
|
|
@@ -58,8 +58,8 @@ declare class Order {
|
|
|
58
58
|
* @param {import("../ApplicationAPIClient").Options} - Options
|
|
59
59
|
* @returns {Promise<OrderApplicationModel.OrderList>} - Success response
|
|
60
60
|
* @name getOrders
|
|
61
|
-
* @summary:
|
|
62
|
-
* @description:
|
|
61
|
+
* @summary: Lists customer orders.
|
|
62
|
+
* @description: Retrieves all orders associated with a customer account. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/order/getOrders/).
|
|
63
63
|
*/
|
|
64
64
|
getOrders({ status, pageNo, pageSize, fromDate, toDate, startDate, endDate, customMeta, requestHeaders, }?: OrderApplicationValidator.GetOrdersParam, { responseHeaders }?: object): Promise<OrderApplicationModel.OrderList>;
|
|
65
65
|
/**
|
|
@@ -68,8 +68,8 @@ declare class Order {
|
|
|
68
68
|
* @param {import("../ApplicationAPIClient").Options} - Options
|
|
69
69
|
* @returns {Promise<OrderApplicationModel.OrderById>} - Success response
|
|
70
70
|
* @name getPosOrderById
|
|
71
|
-
* @summary:
|
|
72
|
-
* @description:
|
|
71
|
+
* @summary: Retrieves POS order details.
|
|
72
|
+
* @description: Retrieve a POS order and all its details such as tracking details, shipment, store information using Fynd Order ID. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/order/getPosOrderById/).
|
|
73
73
|
*/
|
|
74
74
|
getPosOrderById({ orderId, requestHeaders }?: OrderApplicationValidator.GetPosOrderByIdParam, { responseHeaders }?: object): Promise<OrderApplicationModel.OrderById>;
|
|
75
75
|
/**
|
|
@@ -78,8 +78,8 @@ declare class Order {
|
|
|
78
78
|
* @param {import("../ApplicationAPIClient").Options} - Options
|
|
79
79
|
* @returns {Promise<OrderApplicationModel.ShipmentBagReasons>} - Success response
|
|
80
80
|
* @name getShipmentBagReasons
|
|
81
|
-
* @summary:
|
|
82
|
-
* @description:
|
|
81
|
+
* @summary: Lists bag reasons.
|
|
82
|
+
* @description: Retrieves reasons that led to the cancellation for the status of shipment bags. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/order/getShipmentBagReasons/).
|
|
83
83
|
*/
|
|
84
84
|
getShipmentBagReasons({ shipmentId, bagId, requestHeaders }?: OrderApplicationValidator.GetShipmentBagReasonsParam, { responseHeaders }?: object): Promise<OrderApplicationModel.ShipmentBagReasons>;
|
|
85
85
|
/**
|
|
@@ -88,8 +88,8 @@ declare class Order {
|
|
|
88
88
|
* @param {import("../ApplicationAPIClient").Options} - Options
|
|
89
89
|
* @returns {Promise<OrderApplicationModel.ShipmentById>} - Success response
|
|
90
90
|
* @name getShipmentById
|
|
91
|
-
* @summary:
|
|
92
|
-
* @description:
|
|
91
|
+
* @summary: Fetches shipment by ID.
|
|
92
|
+
* @description: Retrieve shipment details such as price breakup, tracking details, store information, etc. using Shipment ID. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/order/getShipmentById/).
|
|
93
93
|
*/
|
|
94
94
|
getShipmentById({ shipmentId, allowInactive, requestHeaders }?: OrderApplicationValidator.GetShipmentByIdParam, { responseHeaders }?: object): Promise<OrderApplicationModel.ShipmentById>;
|
|
95
95
|
/**
|
|
@@ -98,8 +98,8 @@ declare class Order {
|
|
|
98
98
|
* @param {import("../ApplicationAPIClient").Options} - Options
|
|
99
99
|
* @returns {Promise<OrderApplicationModel.ShipmentReasons>} - Success response
|
|
100
100
|
* @name getShipmentReasons
|
|
101
|
-
* @summary:
|
|
102
|
-
* @description:
|
|
101
|
+
* @summary: Lists shipment reasons.
|
|
102
|
+
* @description: Retrieve reasons explaining various shipment statuses. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/order/getShipmentReasons/).
|
|
103
103
|
*/
|
|
104
104
|
getShipmentReasons({ shipmentId, requestHeaders }?: OrderApplicationValidator.GetShipmentReasonsParam, { responseHeaders }?: object): Promise<OrderApplicationModel.ShipmentReasons>;
|
|
105
105
|
/**
|
|
@@ -109,8 +109,8 @@ declare class Order {
|
|
|
109
109
|
* @returns {Promise<OrderApplicationModel.SendOtpToCustomerResponse>} -
|
|
110
110
|
* Success response
|
|
111
111
|
* @name sendOtpToShipmentCustomer
|
|
112
|
-
* @summary:
|
|
113
|
-
* @description:
|
|
112
|
+
* @summary: Sends OTP to customer.
|
|
113
|
+
* @description: Sends a one-time password (OTP) to the customer for shipment verification. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/order/sendOtpToShipmentCustomer/).
|
|
114
114
|
*/
|
|
115
115
|
sendOtpToShipmentCustomer({ orderId, shipmentId, requestHeaders }?: OrderApplicationValidator.SendOtpToShipmentCustomerParam, { responseHeaders }?: object): Promise<OrderApplicationModel.SendOtpToCustomerResponse>;
|
|
116
116
|
/**
|
|
@@ -119,8 +119,8 @@ declare class Order {
|
|
|
119
119
|
* @param {import("../ApplicationAPIClient").Options} - Options
|
|
120
120
|
* @returns {Promise<OrderApplicationModel.ShipmentTrack>} - Success response
|
|
121
121
|
* @name trackShipment
|
|
122
|
-
* @summary:
|
|
123
|
-
* @description: Track Shipment by shipment id, for application based on application Id - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/order/trackShipment/).
|
|
122
|
+
* @summary: Tracks shipment status.
|
|
123
|
+
* @description: Track Shipment by shipment id, for application based on application Id. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/order/trackShipment/).
|
|
124
124
|
*/
|
|
125
125
|
trackShipment({ shipmentId, requestHeaders }?: OrderApplicationValidator.TrackShipmentParam, { responseHeaders }?: object): Promise<OrderApplicationModel.ShipmentTrack>;
|
|
126
126
|
/**
|
|
@@ -131,8 +131,8 @@ declare class Order {
|
|
|
131
131
|
* - Success response
|
|
132
132
|
*
|
|
133
133
|
* @name updateShipmentStatus
|
|
134
|
-
* @summary:
|
|
135
|
-
* @description:
|
|
134
|
+
* @summary: Updates shipment status.
|
|
135
|
+
* @description: Modifies the current status of a specific shipment using its shipment ID. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/order/updateShipmentStatus/).
|
|
136
136
|
*/
|
|
137
137
|
updateShipmentStatus({ shipmentId, body, requestHeaders }?: OrderApplicationValidator.UpdateShipmentStatusParam, { responseHeaders }?: object): Promise<OrderApplicationModel.ShipmentApplicationStatusResponse>;
|
|
138
138
|
/**
|
|
@@ -141,8 +141,8 @@ declare class Order {
|
|
|
141
141
|
* @param {import("../ApplicationAPIClient").Options} - Options
|
|
142
142
|
* @returns {Promise<OrderApplicationModel.VerifyOtpResponse>} - Success response
|
|
143
143
|
* @name verifyOtpShipmentCustomer
|
|
144
|
-
* @summary:
|
|
145
|
-
* @description:
|
|
144
|
+
* @summary: Verifies OTP.
|
|
145
|
+
* @description: Confirms the OTP sent to the shipment customer for verification. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/order/verifyOtpShipmentCustomer/).
|
|
146
146
|
*/
|
|
147
147
|
verifyOtpShipmentCustomer({ orderId, shipmentId, body, requestHeaders }?: OrderApplicationValidator.VerifyOtpShipmentCustomerParam, { responseHeaders }?: object): Promise<OrderApplicationModel.VerifyOtpResponse>;
|
|
148
148
|
}
|