@gofynd/fdk-client-javascript 1.1.2 → 1.1.4

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 (120) hide show
  1. package/README.md +2 -2
  2. package/index.d.ts +7 -7
  3. package/index.js +12 -12
  4. package/package.json +1 -1
  5. package/sdk/application/ApplicationClient.d.ts +20 -20
  6. package/sdk/application/ApplicationClient.js +26 -26
  7. package/sdk/application/Cart/CartApplicationClient.d.ts +36 -6
  8. package/sdk/application/Cart/CartApplicationClient.js +105 -10
  9. package/sdk/application/Cart/CartApplicationModel.d.ts +9 -0
  10. package/sdk/application/Cart/CartApplicationModel.js +105 -1
  11. package/sdk/application/Cart/CartApplicationValidator.d.ts +1 -0
  12. package/sdk/application/Cart/CartApplicationValidator.js +15 -1
  13. package/sdk/application/Catalog/CatalogApplicationModel.d.ts +1 -0
  14. package/sdk/application/Catalog/CatalogApplicationModel.js +13 -0
  15. package/sdk/application/Common/CommonApplicationModel.js +4 -0
  16. package/sdk/application/Configuration/ConfigurationApplicationClient.d.ts +14 -10
  17. package/sdk/application/Configuration/ConfigurationApplicationClient.js +16 -10
  18. package/sdk/application/Configuration/ConfigurationApplicationModel.js +6 -5
  19. package/sdk/application/Configuration/ConfigurationApplicationValidator.js +1 -0
  20. package/sdk/application/Content/ContentApplicationModel.js +3 -1
  21. package/sdk/application/Lead/LeadApplicationModel.js +4 -1
  22. package/sdk/application/Logistic/LogisticApplicationModel.js +3 -2
  23. package/sdk/application/Order/OrderApplicationClient.d.ts +2 -2
  24. package/sdk/application/Order/OrderApplicationClient.js +2 -2
  25. package/sdk/application/Order/OrderApplicationModel.js +18 -8
  26. package/sdk/application/Payment/PaymentApplicationClient.d.ts +35 -0
  27. package/sdk/application/Payment/PaymentApplicationClient.js +200 -0
  28. package/sdk/application/Payment/PaymentApplicationModel.d.ts +4 -0
  29. package/sdk/application/Payment/PaymentApplicationModel.js +58 -7
  30. package/sdk/application/Payment/PaymentApplicationValidator.d.ts +3 -0
  31. package/sdk/application/Payment/PaymentApplicationValidator.js +19 -0
  32. package/sdk/application/PosCart/PosCartApplicationClient.d.ts +16 -3
  33. package/sdk/application/PosCart/PosCartApplicationClient.js +39 -6
  34. package/sdk/application/PosCart/PosCartApplicationModel.d.ts +6 -0
  35. package/sdk/application/PosCart/PosCartApplicationModel.js +63 -1
  36. package/sdk/application/PosCart/PosCartApplicationValidator.js +6 -0
  37. package/sdk/application/index.d.ts +10 -10
  38. package/sdk/application/index.js +13 -13
  39. package/sdk/common/Constant.d.ts +5 -0
  40. package/sdk/common/Constant.js +5 -0
  41. package/sdk/partner/OAuthClient.js +1 -1
  42. package/sdk/platform/Billing/BillingPlatformModel.js +6 -1
  43. package/sdk/platform/Cart/CartPlatformApplicationClient.d.ts +491 -2
  44. package/sdk/platform/Cart/CartPlatformApplicationClient.js +2661 -337
  45. package/sdk/platform/Cart/CartPlatformApplicationValidator.d.ts +32 -0
  46. package/sdk/platform/Cart/CartPlatformApplicationValidator.js +269 -0
  47. package/sdk/platform/Cart/CartPlatformModel.d.ts +58 -0
  48. package/sdk/platform/Cart/CartPlatformModel.js +652 -3
  49. package/sdk/platform/Catalog/CatalogPlatformApplicationClient.d.ts +8 -2
  50. package/sdk/platform/Catalog/CatalogPlatformApplicationClient.js +10 -0
  51. package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.js +1 -0
  52. package/sdk/platform/Catalog/CatalogPlatformClient.js +2 -2
  53. package/sdk/platform/Catalog/CatalogPlatformModel.d.ts +1 -0
  54. package/sdk/platform/Catalog/CatalogPlatformModel.js +43 -31
  55. package/sdk/platform/Common/CommonPlatformModel.js +4 -0
  56. package/sdk/platform/Communication/CommunicationPlatformModel.d.ts +1 -0
  57. package/sdk/platform/Communication/CommunicationPlatformModel.js +9 -0
  58. package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.d.ts +2 -2
  59. package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.js +2 -2
  60. package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.js +5 -4
  61. package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.d.ts +99 -78
  62. package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.js +99 -78
  63. package/sdk/platform/Configuration/ConfigurationPlatformClient.d.ts +87 -71
  64. package/sdk/platform/Configuration/ConfigurationPlatformClient.js +87 -71
  65. package/sdk/platform/Configuration/ConfigurationPlatformModel.d.ts +2 -0
  66. package/sdk/platform/Configuration/ConfigurationPlatformModel.js +34 -7
  67. package/sdk/platform/Content/ContentPlatformModel.js +3 -1
  68. package/sdk/platform/Finance/FinancePlatformClient.d.ts +135 -0
  69. package/sdk/platform/Finance/FinancePlatformClient.js +853 -0
  70. package/sdk/platform/Finance/FinancePlatformModel.d.ts +51 -0
  71. package/sdk/platform/Finance/FinancePlatformModel.js +342 -0
  72. package/sdk/platform/Finance/FinancePlatformValidator.d.ts +16 -0
  73. package/sdk/platform/Finance/FinancePlatformValidator.js +84 -0
  74. package/sdk/platform/Order/OrderPlatformApplicationClient.d.ts +11 -1
  75. package/sdk/platform/Order/OrderPlatformApplicationClient.js +66 -2
  76. package/sdk/platform/Order/OrderPlatformApplicationValidator.d.ts +1 -0
  77. package/sdk/platform/Order/OrderPlatformApplicationValidator.js +6 -0
  78. package/sdk/platform/Order/OrderPlatformClient.d.ts +161 -79
  79. package/sdk/platform/Order/OrderPlatformClient.js +546 -114
  80. package/sdk/platform/Order/OrderPlatformModel.d.ts +42 -6
  81. package/sdk/platform/Order/OrderPlatformModel.js +569 -159
  82. package/sdk/platform/Order/OrderPlatformValidator.d.ts +6 -0
  83. package/sdk/platform/Order/OrderPlatformValidator.js +52 -9
  84. package/sdk/platform/Partner/PartnerPlatformApplicationClient.d.ts +22 -0
  85. package/sdk/platform/Partner/PartnerPlatformApplicationClient.js +127 -0
  86. package/sdk/platform/Partner/PartnerPlatformApplicationValidator.d.ts +2 -0
  87. package/sdk/platform/Partner/PartnerPlatformApplicationValidator.js +13 -0
  88. package/sdk/platform/Partner/PartnerPlatformClient.d.ts +145 -0
  89. package/sdk/platform/Partner/PartnerPlatformClient.js +799 -0
  90. package/sdk/platform/Partner/PartnerPlatformModel.d.ts +39 -0
  91. package/sdk/platform/Partner/PartnerPlatformModel.js +367 -0
  92. package/sdk/platform/Partner/PartnerPlatformValidator.d.ts +14 -0
  93. package/sdk/platform/Partner/PartnerPlatformValidator.js +87 -0
  94. package/sdk/platform/Payment/PaymentPlatformApplicationClient.d.ts +221 -0
  95. package/sdk/platform/Payment/PaymentPlatformApplicationClient.js +1476 -190
  96. package/sdk/platform/Payment/PaymentPlatformApplicationValidator.d.ts +20 -0
  97. package/sdk/platform/Payment/PaymentPlatformApplicationValidator.js +126 -0
  98. package/sdk/platform/Payment/PaymentPlatformModel.d.ts +48 -0
  99. package/sdk/platform/Payment/PaymentPlatformModel.js +452 -7
  100. package/sdk/platform/PlatformApplicationClient.d.ts +1249 -937
  101. package/sdk/platform/PlatformApplicationClient.js +1366 -1033
  102. package/sdk/platform/PlatformClient.d.ts +10979 -8771
  103. package/sdk/platform/PlatformClient.js +11874 -9197
  104. package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationClient.d.ts +134 -0
  105. package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationClient.js +852 -0
  106. package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationValidator.d.ts +16 -0
  107. package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationValidator.js +81 -0
  108. package/sdk/platform/Serviceability/ServiceabilityPlatformClient.d.ts +223 -0
  109. package/sdk/platform/Serviceability/ServiceabilityPlatformClient.js +1296 -0
  110. package/sdk/platform/Serviceability/ServiceabilityPlatformModel.d.ts +97 -0
  111. package/sdk/platform/Serviceability/ServiceabilityPlatformModel.js +778 -0
  112. package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.d.ts +21 -0
  113. package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.js +130 -0
  114. package/sdk/platform/index.d.ts +16 -14
  115. package/sdk/platform/index.js +22 -18
  116. package/sdk/public/Configuration/ConfigurationPublicModel.js +5 -0
  117. package/sdk/public/PublicClient.d.ts +2 -2
  118. package/sdk/public/PublicClient.js +4 -4
  119. package/sdk/public/index.d.ts +1 -1
  120. package/sdk/public/index.js +2 -2
@@ -1,30 +1,32 @@
1
- const Lead = require("./Lead/LeadPlatformApplicationClient");
1
+ const Cart = require("./Cart/CartPlatformApplicationClient");
2
2
 
3
- const Theme = require("./Theme/ThemePlatformApplicationClient");
3
+ const Catalog = require("./Catalog/CatalogPlatformApplicationClient");
4
4
 
5
- const User = require("./User/UserPlatformApplicationClient");
5
+ const Communication = require("./Communication/CommunicationPlatformApplicationClient");
6
+
7
+ const Configuration = require("./Configuration/ConfigurationPlatformApplicationClient");
6
8
 
7
9
  const Content = require("./Content/ContentPlatformApplicationClient");
8
10
 
9
- const Communication = require("./Communication/CommunicationPlatformApplicationClient");
11
+ const FileStorage = require("./FileStorage/FileStoragePlatformApplicationClient");
10
12
 
11
- const Payment = require("./Payment/PaymentPlatformApplicationClient");
13
+ const Lead = require("./Lead/LeadPlatformApplicationClient");
12
14
 
13
15
  const Order = require("./Order/OrderPlatformApplicationClient");
14
16
 
15
- const Catalog = require("./Catalog/CatalogPlatformApplicationClient");
17
+ const Partner = require("./Partner/PartnerPlatformApplicationClient");
16
18
 
17
- const FileStorage = require("./FileStorage/FileStoragePlatformApplicationClient");
19
+ const Payment = require("./Payment/PaymentPlatformApplicationClient");
18
20
 
19
- const Share = require("./Share/SharePlatformApplicationClient");
21
+ const Rewards = require("./Rewards/RewardsPlatformApplicationClient");
20
22
 
21
- const Configuration = require("./Configuration/ConfigurationPlatformApplicationClient");
23
+ const Serviceability = require("./Serviceability/ServiceabilityPlatformApplicationClient");
22
24
 
23
- const Cart = require("./Cart/CartPlatformApplicationClient");
25
+ const Share = require("./Share/SharePlatformApplicationClient");
24
26
 
25
- const Rewards = require("./Rewards/RewardsPlatformApplicationClient");
27
+ const Theme = require("./Theme/ThemePlatformApplicationClient");
26
28
 
27
- const Partner = require("./Partner/PartnerPlatformApplicationClient");
29
+ const User = require("./User/UserPlatformApplicationClient");
28
30
 
29
31
  const { FDKClientValidationError } = require("../common/FDKError");
30
32
 
@@ -34,33 +36,35 @@ class PlatformApplicationClient {
34
36
  this.companyId = config.companyId;
35
37
  this.applicationId = applicationId;
36
38
 
37
- this.lead = new Lead(config, applicationId);
39
+ this.cart = new Cart(config, applicationId);
38
40
 
39
- this.theme = new Theme(config, applicationId);
41
+ this.catalog = new Catalog(config, applicationId);
40
42
 
41
- this.user = new User(config, applicationId);
43
+ this.communication = new Communication(config, applicationId);
44
+
45
+ this.configuration = new Configuration(config, applicationId);
42
46
 
43
47
  this.content = new Content(config, applicationId);
44
48
 
45
- this.communication = new Communication(config, applicationId);
49
+ this.fileStorage = new FileStorage(config, applicationId);
46
50
 
47
- this.payment = new Payment(config, applicationId);
51
+ this.lead = new Lead(config, applicationId);
48
52
 
49
53
  this.order = new Order(config, applicationId);
50
54
 
51
- this.catalog = new Catalog(config, applicationId);
55
+ this.partner = new Partner(config, applicationId);
52
56
 
53
- this.fileStorage = new FileStorage(config, applicationId);
57
+ this.payment = new Payment(config, applicationId);
54
58
 
55
- this.share = new Share(config, applicationId);
59
+ this.rewards = new Rewards(config, applicationId);
56
60
 
57
- this.configuration = new Configuration(config, applicationId);
61
+ this.serviceability = new Serviceability(config, applicationId);
58
62
 
59
- this.cart = new Cart(config, applicationId);
63
+ this.share = new Share(config, applicationId);
60
64
 
61
- this.rewards = new Rewards(config, applicationId);
65
+ this.theme = new Theme(config, applicationId);
62
66
 
63
- this.partner = new Partner(config, applicationId);
67
+ this.user = new User(config, applicationId);
64
68
  }
65
69
 
66
70
  setExtraHeaders(header) {
@@ -72,744 +76,262 @@ class PlatformApplicationClient {
72
76
  }
73
77
  }
74
78
 
75
- /** @typedef Application */
76
- /** @typedef ApplicationAuth */
77
- /** @typedef ApplicationCors */
78
- /** @typedef ApplicationMeta */
79
- /** @typedef ApplicationRedirections */
80
- /** @typedef ApplicationResponse */
81
- /** @typedef ApplicationWebsite */
82
79
  /** @typedef BadRequest */
83
- /** @typedef Currency */
84
- /** @typedef Domain */
85
- /** @typedef LocationCountry */
86
- /** @typedef LocationDefaultCurrency */
87
- /** @typedef LocationDefaultLanguage */
88
- /** @typedef Locations */
89
- /** @typedef NotFound */
90
- /** @typedef Page */
91
- /** @typedef SecureUrl */
80
+ /** @typedef CreateLogResponse */
81
+ /** @typedef DeviceInfo */
82
+ /** @typedef EntityObj */
83
+ /** @typedef EntityObject */
84
+ /** @typedef EntityTypeObj */
85
+ /** @typedef EntityTypesResponse */
86
+ /** @typedef InternalServerError */
87
+ /** @typedef Location */
88
+ /** @typedef LogDocs */
89
+ /** @typedef LogMetaObj */
90
+ /** @typedef LogSchemaResponse */
91
+ /** @typedef Modifier */
92
+ /** @typedef RequestBodyAuditLog */
93
+ /** @typedef ResourceNotFound */
92
94
 
93
- /** @typedef AddTicketPayload */
94
- /** @typedef AgentChangePayload */
95
- /** @typedef CategoryData */
96
- /** @typedef CloseVideoRoomResponse */
97
- /** @typedef CommunicationDetails */
98
- /** @typedef CreateCustomFormPayload */
99
- /** @typedef CreatedOn */
100
- /** @typedef CreateVideoRoomPayload */
101
- /** @typedef CreateVideoRoomResponse */
102
- /** @typedef CustomForm */
103
- /** @typedef CustomFormList */
104
- /** @typedef CustomFormSubmissionPayload */
105
- /** @typedef Debug */
106
- /** @typedef EditCustomFormPayload */
107
- /** @typedef EditTicketPayload */
108
- /** @typedef Email */
109
- /** @typedef FeedbackForm */
110
- /** @typedef FeedbackResponseItem */
111
- /** @typedef Filter */
112
- /** @typedef GetParticipantsInsideVideoRoomResponse */
113
- /** @typedef GetTokenForVideoRoomResponse */
114
- /** @typedef IntegrationConfig */
115
- /** @typedef NotifyUser */
95
+ /** @typedef BadRequest */
96
+ /** @typedef CancelSubscriptionReq */
97
+ /** @typedef CancelSubscriptionRes */
98
+ /** @typedef ChargeLineItem */
99
+ /** @typedef CheckValidityResponse */
100
+ /** @typedef CreateOneTimeCharge */
101
+ /** @typedef CreateOneTimeChargeResponse */
102
+ /** @typedef CreateSubscriptionCharge */
103
+ /** @typedef CreateSubscriptionResponse */
104
+ /** @typedef CurrentPeriod */
105
+ /** @typedef DetailedPlan */
106
+ /** @typedef DetailedPlanComponents */
107
+ /** @typedef EntityChargePrice */
108
+ /** @typedef EntityChargeRecurring */
109
+ /** @typedef EntitySubscription */
110
+ /** @typedef InternalServerError */
111
+ /** @typedef Invoice */
112
+ /** @typedef InvoiceDetails */
113
+ /** @typedef InvoiceDetailsClient */
114
+ /** @typedef InvoiceDetailsPaymentMethods */
115
+ /** @typedef InvoiceDetailsPaymentMethodsData */
116
+ /** @typedef InvoiceDetailsPaymentMethodsDataChecks */
117
+ /** @typedef InvoiceDetailsPaymentMethodsDataNetworks */
118
+ /** @typedef InvoiceDetailsPaymentMethodsDataThreeDSecureUsage */
119
+ /** @typedef InvoiceDetailsPeriod */
120
+ /** @typedef InvoiceDetailsStatusTrail */
121
+ /** @typedef InvoiceItems */
122
+ /** @typedef InvoiceItemsPeriod */
123
+ /** @typedef InvoiceItemsPlan */
124
+ /** @typedef InvoiceItemsPlanRecurring */
125
+ /** @typedef InvoicePaymentMethod */
126
+ /** @typedef Invoices */
127
+ /** @typedef InvoicesData */
128
+ /** @typedef InvoicesDataClient */
129
+ /** @typedef InvoicesDataPaymentMethod */
130
+ /** @typedef InvoicesDataPeriod */
131
+ /** @typedef OneTimeChargeEntity */
132
+ /** @typedef OneTimeChargeItem */
116
133
  /** @typedef Page */
117
- /** @typedef Participant */
118
- /** @typedef PhoneNumber */
119
- /** @typedef PollForAssignment */
120
- /** @typedef Priority */
121
- /** @typedef Status */
122
- /** @typedef SubmitButton */
123
- /** @typedef SubmitCustomFormResponse */
124
- /** @typedef SupportGeneralConfig */
125
- /** @typedef Ticket */
126
- /** @typedef TicketAsset */
127
- /** @typedef TicketCategory */
128
- /** @typedef TicketContent */
129
- /** @typedef TicketContext */
130
- /** @typedef TicketFeedback */
131
- /** @typedef TicketFeedbackForm */
132
- /** @typedef TicketFeedbackList */
133
- /** @typedef TicketFeedbackPayload */
134
- /** @typedef TicketHistory */
135
- /** @typedef TicketHistoryList */
136
- /** @typedef TicketHistoryPayload */
137
- /** @typedef TicketList */
138
- /** @typedef TicketSubCategory */
139
- /** @typedef UserSchema */
140
-
141
- /** @typedef AddThemeRequestSchema */
142
- /** @typedef AllAvailablePageSchema */
143
- /** @typedef AssetsSchema */
144
- /** @typedef AvailablePagePredicate */
145
- /** @typedef AvailablePageRoutePredicate */
146
- /** @typedef AvailablePageSchema */
147
- /** @typedef AvailablePageSchemaSections */
148
- /** @typedef AvailablePageScreenPredicate */
149
- /** @typedef AvailablePageSectionMetaAttributes */
150
- /** @typedef AvailablePageSeo */
151
- /** @typedef AvailablePageUserPredicate */
152
- /** @typedef availableSectionSchema */
153
- /** @typedef BlitzkriegApiErrorSchema */
154
- /** @typedef BlitzkriegInternalServerErrorSchema */
155
- /** @typedef BlitzkriegNotFoundSchema */
156
- /** @typedef Blocks */
157
- /** @typedef BlocksProps */
158
- /** @typedef Bold */
159
- /** @typedef Colors */
160
- /** @typedef CommonJs */
161
- /** @typedef Config */
162
- /** @typedef ConfigPage */
163
- /** @typedef Css */
164
- /** @typedef Custom */
165
- /** @typedef Font */
166
- /** @typedef FontsSchema */
167
- /** @typedef FontsSchemaItems */
168
- /** @typedef FontsSchemaItemsFiles */
169
- /** @typedef GlobalSchema */
170
- /** @typedef GlobalSchemaProps */
171
- /** @typedef Images */
172
- /** @typedef Information */
173
- /** @typedef Light */
174
- /** @typedef ListSchemaItem */
175
- /** @typedef Medium */
176
- /** @typedef PaginationSchema */
177
- /** @typedef Preset */
178
- /** @typedef Regular */
179
- /** @typedef Sections */
180
- /** @typedef SemiBold */
181
- /** @typedef Src */
182
- /** @typedef ThemesListingResponseSchema */
183
- /** @typedef ThemesSchema */
184
- /** @typedef UmdJs */
185
- /** @typedef UpgradableThemeSchema */
186
- /** @typedef Variants */
134
+ /** @typedef Phone */
135
+ /** @typedef Plan */
136
+ /** @typedef PlanRecurring */
137
+ /** @typedef ResourceNotFound */
138
+ /** @typedef Subscription */
139
+ /** @typedef SubscriptionActivateReq */
140
+ /** @typedef SubscriptionActivateRes */
141
+ /** @typedef SubscriptionBillingAddress */
142
+ /** @typedef SubscriptionCharge */
143
+ /** @typedef SubscriptionCurrentPeriod */
144
+ /** @typedef SubscriptionCustomer */
145
+ /** @typedef SubscriptionCustomerCreate */
146
+ /** @typedef SubscriptionInvoiceSettings */
147
+ /** @typedef SubscriptionLimit */
148
+ /** @typedef SubscriptionLimitApplication */
149
+ /** @typedef SubscriptionLimitExtensions */
150
+ /** @typedef SubscriptionLimitIntegrations */
151
+ /** @typedef SubscriptionLimitMarketplace */
152
+ /** @typedef SubscriptionLimitOtherPlatform */
153
+ /** @typedef SubscriptionLimitProducts */
154
+ /** @typedef SubscriptionLimitTeam */
155
+ /** @typedef SubscriptionPauseCollection */
156
+ /** @typedef SubscriptionStatus */
157
+ /** @typedef SubscriptionTrial */
158
+ /** @typedef SubscriptionTrialPeriod */
159
+ /** @typedef UnauthenticatedApplication */
160
+ /** @typedef UnauthenticatedUser */
187
161
 
188
- /** @typedef Accountkit */
189
- /** @typedef ArchiveUserRequestSchema */
190
- /** @typedef ArchiveUserSuccess */
191
- /** @typedef AuthenticationApiErrorSchema */
192
- /** @typedef AuthenticationInternalServerErrorSchema */
193
- /** @typedef AuthSuccess */
194
- /** @typedef AuthSuccessUser */
195
- /** @typedef AuthSuccessUserDebug */
196
- /** @typedef AuthSuccessUserEmails */
197
- /** @typedef BlockUserRequestSchema */
198
- /** @typedef BlockUserSuccess */
199
- /** @typedef CodeRequestBodySchema */
200
- /** @typedef CreateUserGroupSchema */
201
- /** @typedef CreateUserRequestSchema */
202
- /** @typedef CreateUserResponseSchema */
203
- /** @typedef CreateUserSessionRequestSchema */
204
- /** @typedef CreateUserSessionResponseSchema */
205
- /** @typedef CustomerListResponseSchema */
206
- /** @typedef DeleteAccountConsent */
207
- /** @typedef DeleteAccountReasons */
208
- /** @typedef DeleteApplicationUserRequestSchema */
209
- /** @typedef DeleteUserSuccess */
210
- /** @typedef EditEmailRequestSchema */
211
- /** @typedef EditMobileRequestSchema */
212
- /** @typedef EditProfileMobileSchema */
213
- /** @typedef EditProfileRequestSchema */
214
- /** @typedef Email */
215
- /** @typedef EmailOtpSuccess */
216
- /** @typedef Facebook */
217
- /** @typedef FlashCard */
218
- /** @typedef ForgotPasswordRequestSchema */
219
- /** @typedef FormRegisterRequestSchema */
220
- /** @typedef FormRegisterRequestSchemaPhone */
221
- /** @typedef Google */
222
- /** @typedef HasPasswordSuccess */
223
- /** @typedef Login */
224
- /** @typedef LoginSuccess */
225
- /** @typedef LogoutSuccess */
226
- /** @typedef LookAndFeel */
227
- /** @typedef MetaSchema */
228
- /** @typedef NotFoundSchema */
229
- /** @typedef OAuthRequestAppleSchema */
230
- /** @typedef OAuthRequestAppleSchemaOauth */
231
- /** @typedef OAuthRequestAppleSchemaProfile */
232
- /** @typedef OAuthRequestSchema */
233
- /** @typedef OAuthRequestSchemaOauth2 */
234
- /** @typedef OAuthRequestSchemaProfile */
235
- /** @typedef OtpSuccess */
236
- /** @typedef PaginationSchema */
237
- /** @typedef PasswordLoginRequestSchema */
238
- /** @typedef PhoneNumber */
239
- /** @typedef PlatformEmail */
240
- /** @typedef PlatformMobile */
241
- /** @typedef PlatformSchema */
242
- /** @typedef ProfileEditSuccess */
243
- /** @typedef ProfileEditSuccessSchema */
244
- /** @typedef RegisterFormSuccess */
245
- /** @typedef RegisterRequiredFields */
246
- /** @typedef RegisterRequiredFieldsEmail */
247
- /** @typedef RegisterRequiredFieldsMobile */
248
- /** @typedef RequiredFields */
249
- /** @typedef ResetPasswordSuccess */
250
- /** @typedef SendEmailOtpRequestSchema */
251
- /** @typedef SendEmailVerifyLinkSuccess */
252
- /** @typedef SendMobileOtpRequestSchema */
253
- /** @typedef SendMobileVerifyLinkSuccess */
254
- /** @typedef SendOtpRequestSchema */
255
- /** @typedef SendOtpResponse */
256
- /** @typedef SendResetPasswordEmailRequestSchema */
257
- /** @typedef SendResetPasswordMobileRequestSchema */
258
- /** @typedef SendVerificationLinkMobileRequestSchema */
259
- /** @typedef SessionDeleteResponseSchema */
260
- /** @typedef SessionExpiry */
261
- /** @typedef SessionListResponseInfo */
262
- /** @typedef SessionListResponseSchema */
263
- /** @typedef SessionListSuccess */
264
- /** @typedef Social */
265
- /** @typedef SocialTokens */
266
- /** @typedef TokenRequestBodySchema */
267
- /** @typedef UnauthenticatedSchema */
268
- /** @typedef UnauthorizedSchema */
269
- /** @typedef UnDeleteUserRequestSchema */
270
- /** @typedef UnDeleteUserSuccess */
271
- /** @typedef UpdatePasswordRequestSchema */
272
- /** @typedef UpdateUserGroupSchema */
273
- /** @typedef UpdateUserRequestSchema */
274
- /** @typedef UserEmails */
275
- /** @typedef UserGroupListResponseSchema */
276
- /** @typedef UserGroupResponseSchema */
277
- /** @typedef UserObjectSchema */
278
- /** @typedef UserPhoneNumbers */
279
- /** @typedef UserSchema */
280
- /** @typedef UserSearchResponseSchema */
281
- /** @typedef VerifyEmailOtpRequestSchema */
282
- /** @typedef VerifyEmailOTPSuccess */
283
- /** @typedef VerifyEmailSuccess */
284
- /** @typedef VerifyMobileOTPSuccess */
285
- /** @typedef VerifyOtpRequestSchema */
286
- /** @typedef VerifyOtpSuccess */
287
-
288
- /** @typedef Action */
289
- /** @typedef ActionPage */
290
- /** @typedef AdminAnnouncementSchema */
291
- /** @typedef AnnouncementAuthorSchema */
292
- /** @typedef AnnouncementPageSchema */
293
- /** @typedef AnnouncementSchema */
294
- /** @typedef AnnouncementsResponseSchema */
295
- /** @typedef ApplicationLegal */
296
- /** @typedef ApplicationLegalFAQ */
297
- /** @typedef Asset */
298
- /** @typedef Author */
299
- /** @typedef BlogGetResponse */
300
- /** @typedef BlogRequest */
301
- /** @typedef BlogSchema */
302
- /** @typedef CategoryRequestSchema */
303
- /** @typedef CategorySchema */
304
- /** @typedef ChildrenSchema */
305
- /** @typedef CommonError */
306
- /** @typedef ConfigurationSchema */
307
- /** @typedef ContactSchema */
308
- /** @typedef ContentAPIError */
309
- /** @typedef ContentSchema */
310
- /** @typedef CreateAnnouncementSchema */
311
- /** @typedef CreatedBySchema */
312
- /** @typedef CreateFaqCategoryRequestSchema */
313
- /** @typedef CreateFaqCategorySchema */
314
- /** @typedef CreateFaqResponseSchema */
315
- /** @typedef CreateFaqSchema */
316
- /** @typedef CreateTagRequestSchema */
317
- /** @typedef CreateTagSchema */
318
- /** @typedef CronSchedule */
319
- /** @typedef CustomMetaTag */
320
- /** @typedef CustomPage */
321
- /** @typedef CustomPageSchema */
322
- /** @typedef DataLoaderResetResponseSchema */
323
- /** @typedef DataLoaderResponseSchema */
324
- /** @typedef DataLoaderSchema */
325
- /** @typedef DataLoaderSourceSchema */
326
- /** @typedef DataLoadersSchema */
327
- /** @typedef DateMeta */
328
- /** @typedef DefaultNavigationResponse */
329
- /** @typedef Detail */
330
- /** @typedef EditorMeta */
331
- /** @typedef EmailProperties */
332
- /** @typedef EmailSchema */
333
- /** @typedef FAQ */
334
- /** @typedef FAQCategorySchema */
335
- /** @typedef FaqResponseSchema */
336
- /** @typedef FaqSchema */
337
- /** @typedef FeatureImage */
338
- /** @typedef GeneratedSEOContent */
339
- /** @typedef GenerateSEOContent */
340
- /** @typedef GetAnnouncementListSchema */
341
- /** @typedef GetFaqCategoriesSchema */
342
- /** @typedef GetFaqCategoryBySlugSchema */
343
- /** @typedef GetFaqSchema */
344
- /** @typedef HandpickedTagSchema */
345
- /** @typedef LandingPage */
346
- /** @typedef LandingPageGetResponse */
347
- /** @typedef LandingPageSchema */
348
- /** @typedef Language */
349
- /** @typedef LocaleLanguage */
350
- /** @typedef Navigation */
351
- /** @typedef NavigationGetResponse */
352
- /** @typedef NavigationReference */
353
- /** @typedef NavigationRequest */
354
- /** @typedef NavigationSchema */
355
- /** @typedef NextSchedule */
356
- /** @typedef Orientation */
357
- /** @typedef Page */
358
- /** @typedef PageContent */
359
- /** @typedef PageGetResponse */
360
- /** @typedef PageMeta */
361
- /** @typedef PageMetaSchema */
362
- /** @typedef PagePublishRequest */
363
- /** @typedef PageRequest */
364
- /** @typedef PageSchema */
365
- /** @typedef PageSpec */
366
- /** @typedef PageSpecItem */
367
- /** @typedef PageSpecParam */
368
- /** @typedef PathMappingSchema */
369
- /** @typedef PathSourceSchema */
370
- /** @typedef PhoneProperties */
371
- /** @typedef PhoneSchema */
372
- /** @typedef RemoveHandpickedSchema */
373
- /** @typedef ResourceContent */
374
- /** @typedef ScheduleSchema */
375
- /** @typedef ScheduleStartSchema */
376
- /** @typedef SEO */
377
- /** @typedef SeoComponent */
378
- /** @typedef SEOImage */
379
- /** @typedef SeoSchema */
380
- /** @typedef Slideshow */
381
- /** @typedef SlideshowGetResponse */
382
- /** @typedef SlideshowMedia */
383
- /** @typedef SlideshowRequest */
384
- /** @typedef SlideshowSchema */
385
- /** @typedef Support */
386
- /** @typedef TagDeleteSuccessResponse */
387
- /** @typedef TagSchema */
388
- /** @typedef TagSourceSchema */
389
- /** @typedef TagsSchema */
390
- /** @typedef UpdateFaqCategoryRequestSchema */
391
- /** @typedef UpdateHandpickedSchema */
392
-
393
- /** @typedef BadRequest */
394
- /** @typedef CancelSubscriptionReq */
395
- /** @typedef CancelSubscriptionRes */
396
- /** @typedef ChargeLineItem */
397
- /** @typedef CheckValidityResponse */
398
- /** @typedef CreateOneTimeCharge */
399
- /** @typedef CreateOneTimeChargeResponse */
400
- /** @typedef CreateSubscriptionCharge */
401
- /** @typedef CreateSubscriptionResponse */
402
- /** @typedef CurrentPeriod */
403
- /** @typedef DetailedPlan */
404
- /** @typedef DetailedPlanComponents */
405
- /** @typedef EntityChargePrice */
406
- /** @typedef EntityChargeRecurring */
407
- /** @typedef EntitySubscription */
408
- /** @typedef InternalServerError */
409
- /** @typedef Invoice */
410
- /** @typedef InvoiceDetails */
411
- /** @typedef InvoiceDetailsClient */
412
- /** @typedef InvoiceDetailsPaymentMethods */
413
- /** @typedef InvoiceDetailsPaymentMethodsData */
414
- /** @typedef InvoiceDetailsPaymentMethodsDataChecks */
415
- /** @typedef InvoiceDetailsPaymentMethodsDataNetworks */
416
- /** @typedef InvoiceDetailsPaymentMethodsDataThreeDSecureUsage */
417
- /** @typedef InvoiceDetailsPeriod */
418
- /** @typedef InvoiceDetailsStatusTrail */
419
- /** @typedef InvoiceItems */
420
- /** @typedef InvoiceItemsPeriod */
421
- /** @typedef InvoiceItemsPlan */
422
- /** @typedef InvoiceItemsPlanRecurring */
423
- /** @typedef InvoicePaymentMethod */
424
- /** @typedef Invoices */
425
- /** @typedef InvoicesData */
426
- /** @typedef InvoicesDataClient */
427
- /** @typedef InvoicesDataPaymentMethod */
428
- /** @typedef InvoicesDataPeriod */
429
- /** @typedef OneTimeChargeEntity */
430
- /** @typedef OneTimeChargeItem */
431
- /** @typedef Page */
432
- /** @typedef Phone */
433
- /** @typedef Plan */
434
- /** @typedef PlanRecurring */
435
- /** @typedef ResourceNotFound */
436
- /** @typedef Subscription */
437
- /** @typedef SubscriptionActivateReq */
438
- /** @typedef SubscriptionActivateRes */
439
- /** @typedef SubscriptionBillingAddress */
440
- /** @typedef SubscriptionCharge */
441
- /** @typedef SubscriptionCurrentPeriod */
442
- /** @typedef SubscriptionCustomer */
443
- /** @typedef SubscriptionCustomerCreate */
444
- /** @typedef SubscriptionInvoiceSettings */
445
- /** @typedef SubscriptionLimit */
446
- /** @typedef SubscriptionLimitApplication */
447
- /** @typedef SubscriptionLimitExtensions */
448
- /** @typedef SubscriptionLimitIntegrations */
449
- /** @typedef SubscriptionLimitMarketplace */
450
- /** @typedef SubscriptionLimitOtherPlatform */
451
- /** @typedef SubscriptionLimitProducts */
452
- /** @typedef SubscriptionLimitTeam */
453
- /** @typedef SubscriptionPauseCollection */
454
- /** @typedef SubscriptionStatus */
455
- /** @typedef SubscriptionTrial */
456
- /** @typedef SubscriptionTrialPeriod */
457
- /** @typedef UnauthenticatedApplication */
458
- /** @typedef UnauthenticatedUser */
459
-
460
- /** @typedef Audience */
461
- /** @typedef AudienceReq */
462
- /** @typedef Audiences */
463
- /** @typedef BadRequestSchema */
464
- /** @typedef BigqueryHeadersReq */
465
- /** @typedef BigqueryHeadersRes */
466
- /** @typedef BigqueryHeadersResHeaders */
467
- /** @typedef Campaign */
468
- /** @typedef CampaignEmail */
469
- /** @typedef CampaignEmailTemplate */
470
- /** @typedef CampaignReq */
471
- /** @typedef Campaigns */
472
- /** @typedef CampignEmailProvider */
473
- /** @typedef EmailProvider */
474
- /** @typedef EmailProviderReq */
475
- /** @typedef EmailProviderReqFrom */
476
- /** @typedef EmailProviders */
477
- /** @typedef EmailTemplate */
478
- /** @typedef EmailTemplateDeleteFailureRes */
479
- /** @typedef EmailTemplateDeleteSuccessRes */
480
- /** @typedef EmailTemplateHeaders */
481
- /** @typedef EmailTemplateKeys */
482
- /** @typedef EmailTemplateReq */
483
- /** @typedef EmailTemplateRes */
484
- /** @typedef EmailTemplates */
485
- /** @typedef EngineRequest */
486
- /** @typedef EngineResponse */
487
- /** @typedef EventSubscription */
488
- /** @typedef EventSubscriptions */
489
- /** @typedef EventSubscriptionTemplate */
490
- /** @typedef EventSubscriptionTemplateEmail */
491
- /** @typedef EventSubscriptionTemplateSms */
492
- /** @typedef GetNRecordsCsvReq */
493
- /** @typedef GetNRecordsCsvRes */
494
- /** @typedef GetNRecordsCsvResItems */
495
- /** @typedef GetStats */
496
- /** @typedef Job */
497
- /** @typedef JobLog */
498
- /** @typedef JobLogs */
499
- /** @typedef Jobs */
500
- /** @typedef Log */
501
- /** @typedef LogEmail */
502
- /** @typedef LogMeta */
503
- /** @typedef LogPushnotification */
504
- /** @typedef Logs */
505
- /** @typedef MetaStructure */
506
- /** @typedef NotFound */
507
- /** @typedef Notification */
508
- /** @typedef Page */
509
- /** @typedef PayloadEmailProviderStructure */
510
- /** @typedef PayloadEmailStructure */
511
- /** @typedef PayloadEmailTemplateStructure */
512
- /** @typedef PayloadSmsProviderStructure */
513
- /** @typedef PayloadSmsStructure */
514
- /** @typedef PayloadSmsTemplateStructure */
515
- /** @typedef PayloadStructure */
516
- /** @typedef PushtokenReq */
517
- /** @typedef PushtokenRes */
518
- /** @typedef RecipientHeaders */
519
- /** @typedef SendOtpCommsReq */
520
- /** @typedef SendOtpCommsReqData */
521
- /** @typedef SendOtpCommsReqEmail */
522
- /** @typedef SendOtpCommsReqSms */
523
- /** @typedef SendOtpCommsRes */
524
- /** @typedef SendOtpCommsResEmail */
525
- /** @typedef SendOtpCommsResSms */
526
- /** @typedef SendOtpEmailCommsTemplate */
527
- /** @typedef SendOtpSmsCommsProvider */
528
- /** @typedef SendOtpSmsCommsTemplate */
529
- /** @typedef SmsProvider */
530
- /** @typedef SmsProviderReq */
531
- /** @typedef SmsProviders */
532
- /** @typedef SmsTemplate */
533
- /** @typedef SmsTemplateDeleteFailureRes */
534
- /** @typedef SmsTemplateDeleteSuccessRes */
535
- /** @typedef SmsTemplateMessage */
536
- /** @typedef SmsTemplateReq */
537
- /** @typedef SmsTemplateRes */
538
- /** @typedef SmsTemplates */
539
- /** @typedef Stats */
540
- /** @typedef StatsImported */
541
- /** @typedef StatsProcessed */
542
- /** @typedef StatsProcessedEmail */
543
- /** @typedef StatsProcessedSms */
544
- /** @typedef SystemEmailTemplate */
545
- /** @typedef SystemEmailTemplates */
546
- /** @typedef SystemNotification */
547
- /** @typedef SystemNotifications */
548
- /** @typedef SystemNotificationSettings */
549
- /** @typedef SystemNotificationsPage */
550
- /** @typedef SystemNotificationUser */
551
- /** @typedef SystemSmsTemplate */
552
- /** @typedef SystemSmsTemplates */
553
- /** @typedef TemplateAndType */
554
- /** @typedef TriggerJobRequest */
555
- /** @typedef TriggerJobResponse */
556
- /** @typedef VerifyOtpCommsErrorRes */
557
- /** @typedef VerifyOtpCommsReq */
558
- /** @typedef VerifyOtpCommsSuccessRes */
559
-
560
- /** @typedef AddBeneficiaryDetailsOTPRequest */
561
- /** @typedef BankDetailsForOTP */
562
- /** @typedef CODdata */
563
- /** @typedef DeletePayoutResponse */
564
- /** @typedef DeleteSubscriptionPaymentMethodResponse */
565
- /** @typedef ErrorCodeAndDescription */
566
- /** @typedef ErrorCodeDescription */
567
- /** @typedef GetOauthUrlResponse */
568
- /** @typedef GetUserCODLimitResponse */
569
- /** @typedef HttpErrorCodeAndResponse */
570
- /** @typedef IfscCodeResponse */
571
- /** @typedef IntentApp */
572
- /** @typedef IntentAppErrorList */
573
- /** @typedef MultiTenderPaymentMeta */
574
- /** @typedef MultiTenderPaymentMethod */
575
- /** @typedef NotFoundResourceError */
576
- /** @typedef OrderBeneficiaryDetails */
577
- /** @typedef OrderBeneficiaryResponse */
578
- /** @typedef PaymentConfirmationRequest */
579
- /** @typedef PaymentConfirmationResponse */
580
- /** @typedef PaymentGatewayConfig */
581
- /** @typedef PaymentGatewayConfigRequest */
582
- /** @typedef PaymentGatewayConfigResponse */
583
- /** @typedef PaymentGatewayToBeReviewed */
584
- /** @typedef PaymentModeList */
585
- /** @typedef PaymentModeLogo */
586
- /** @typedef PaymentOptions */
587
- /** @typedef PaymentOptionsResponse */
588
- /** @typedef PayoutBankDetails */
589
- /** @typedef PayoutRequest */
590
- /** @typedef PayoutResponse */
591
- /** @typedef PayoutsResponse */
592
- /** @typedef RefundAccountResponse */
593
- /** @typedef RevokeOAuthToken */
594
- /** @typedef RootPaymentMode */
595
- /** @typedef SaveSubscriptionSetupIntentRequest */
596
- /** @typedef SaveSubscriptionSetupIntentResponse */
597
- /** @typedef SetCODForUserRequest */
598
- /** @typedef SetCODOptionResponse */
599
- /** @typedef SubscriptionConfigResponse */
600
- /** @typedef SubscriptionPaymentMethodResponse */
601
- /** @typedef UpdatePayoutRequest */
602
- /** @typedef UpdatePayoutResponse */
603
-
604
- /** @typedef ActionInfo */
605
- /** @typedef Affiliate */
606
- /** @typedef AffiliateAppConfig */
607
- /** @typedef AffiliateAppConfigMeta */
608
- /** @typedef AffiliateBag */
609
- /** @typedef AffiliateBagDetails */
610
- /** @typedef AffiliateConfig */
611
- /** @typedef AffiliateDetails */
612
- /** @typedef AffiliateInventoryArticleAssignmentConfig */
613
- /** @typedef AffiliateInventoryConfig */
614
- /** @typedef AffiliateInventoryLogisticsConfig */
615
- /** @typedef AffiliateInventoryOrderConfig */
616
- /** @typedef AffiliateInventoryPaymentConfig */
617
- /** @typedef AffiliateInventoryStoreConfig */
618
- /** @typedef AffiliateMeta */
619
- /** @typedef AffiliateStoreIdMapping */
620
- /** @typedef AnnouncementResponse */
621
- /** @typedef AnnouncementsResponse */
622
- /** @typedef AppliedPromos */
623
- /** @typedef Article */
624
- /** @typedef ArticleDetails */
625
- /** @typedef ArticleDetails1 */
626
- /** @typedef Attributes */
627
- /** @typedef B2BPODetails */
628
- /** @typedef BagConfigs */
629
- /** @typedef BagDetailsPlatformResponse */
630
- /** @typedef BagGST */
631
- /** @typedef BagGSTDetails */
632
- /** @typedef BagMeta */
633
- /** @typedef BagReturnableCancelableStatus */
634
- /** @typedef Bags */
635
- /** @typedef BagStateMapper */
636
- /** @typedef BagStateTransitionMap */
637
- /** @typedef BagStatusHistory */
638
- /** @typedef BagUnit */
639
- /** @typedef BaseResponse */
640
- /** @typedef BillingInfo */
641
- /** @typedef BillingStaffDetails */
642
- /** @typedef Brand */
643
- /** @typedef BulkActionTemplate */
644
- /** @typedef BulkActionTemplateResponse */
645
- /** @typedef BuyerDetails */
646
- /** @typedef BuyRules */
647
- /** @typedef Charge */
648
- /** @typedef CheckResponse */
649
- /** @typedef Click2CallResponse */
650
- /** @typedef CompanyDetails */
651
- /** @typedef ContactDetails */
652
- /** @typedef CreateChannelConfig */
653
- /** @typedef CreateChannelConfigData */
654
- /** @typedef CreateChannelConfigResponse */
655
- /** @typedef CreateChannelConifgErrorResponse */
656
- /** @typedef CreateChannelPaymentInfo */
657
- /** @typedef CreateOrderAPI */
658
- /** @typedef CreateOrderErrorReponse */
659
- /** @typedef CreateOrderPayload */
660
- /** @typedef CreateOrderResponse */
661
- /** @typedef CurrentStatus */
662
- /** @typedef DataUpdates */
663
- /** @typedef Dates */
664
- /** @typedef DebugInfo */
665
- /** @typedef Dimensions */
666
- /** @typedef DiscountRules */
667
- /** @typedef DispatchManifest */
668
- /** @typedef Document */
669
- /** @typedef DpConfiguration */
670
- /** @typedef DPDetailsData */
671
- /** @typedef EinvoiceInfo */
672
- /** @typedef EInvoicePortalDetails */
673
- /** @typedef Entities */
674
- /** @typedef EntitiesDataUpdates */
675
- /** @typedef EntitiesReasons */
676
- /** @typedef EntityReasonData */
677
- /** @typedef Error */
678
- /** @typedef ErrorDetail */
679
- /** @typedef ErrorResponse */
680
- /** @typedef ErrorResponse1 */
681
- /** @typedef FileResponse */
682
- /** @typedef FileUploadResponse */
683
- /** @typedef FilterInfoOption */
684
- /** @typedef FiltersInfo */
685
- /** @typedef FiltersResponse */
686
- /** @typedef FinancialBreakup */
687
- /** @typedef Formatted */
688
- /** @typedef FulfillingStore */
689
- /** @typedef FyndOrderIdList */
690
- /** @typedef GetActionsResponse */
691
- /** @typedef GetBagsPlatformResponse */
692
- /** @typedef GSTDetailsData */
693
- /** @typedef HistoryDict */
694
- /** @typedef Identifier */
695
- /** @typedef InvalidateShipmentCacheNestedResponse */
696
- /** @typedef InvalidateShipmentCachePayload */
697
- /** @typedef InvalidateShipmentCacheResponse */
698
- /** @typedef InvoiceInfo */
699
- /** @typedef Item */
700
- /** @typedef ItemCriterias */
701
- /** @typedef LaneConfigResponse */
702
- /** @typedef LineItem */
703
- /** @typedef LocationDetails */
704
- /** @typedef LockData */
705
- /** @typedef MarketPlacePdf */
706
- /** @typedef Meta */
707
- /** @typedef Meta1 */
708
- /** @typedef OrderBagArticle */
709
- /** @typedef OrderBags */
710
- /** @typedef OrderBrandName */
711
- /** @typedef OrderConfig */
712
- /** @typedef OrderDetails */
713
- /** @typedef OrderDetailsData */
714
- /** @typedef OrderDict */
715
- /** @typedef OrderInfo */
716
- /** @typedef OrderingStoreDetails */
717
- /** @typedef OrderListingResponse */
718
- /** @typedef OrderMeta */
719
- /** @typedef OrderPriority */
720
- /** @typedef OrderStatus */
721
- /** @typedef OrderStatusData */
722
- /** @typedef OrderStatusResult */
723
- /** @typedef OrderUser */
724
- /** @typedef OriginalFilter */
725
- /** @typedef Page */
726
- /** @typedef Page1 */
727
- /** @typedef PaymentInfo */
728
- /** @typedef PaymentMethod */
729
- /** @typedef PaymentMethods */
730
- /** @typedef PaymentModeInfo */
731
- /** @typedef PDFLinks */
732
- /** @typedef PhoneDetails */
733
- /** @typedef PlatformBreakupValues */
734
- /** @typedef PlatformChannel */
735
- /** @typedef PlatformDeliveryAddress */
736
- /** @typedef PlatformItem */
737
- /** @typedef PlatformOrderItems */
738
- /** @typedef PlatformOrderUpdate */
739
- /** @typedef PlatformShipment */
740
- /** @typedef PlatformShipmentReasonsResponse */
741
- /** @typedef PlatformShipmentTrack */
742
- /** @typedef PlatformTrack */
743
- /** @typedef PlatformUserDetails */
744
- /** @typedef PostActivityHistory */
745
- /** @typedef PostHistoryData */
746
- /** @typedef PostHistoryDict */
747
- /** @typedef PostHistoryFilters */
748
- /** @typedef PostShipmentHistory */
749
- /** @typedef Prices */
750
- /** @typedef ProcessingDates */
751
- /** @typedef Products */
752
- /** @typedef ProductsDataUpdates */
753
- /** @typedef ProductsDataUpdatesFilters */
754
- /** @typedef ProductsReasons */
755
- /** @typedef ProductsReasonsData */
756
- /** @typedef ProductsReasonsFilters */
757
- /** @typedef QuestionSet */
758
- /** @typedef Reason */
759
- /** @typedef ReasonsData */
760
- /** @typedef ReplacementDetails */
761
- /** @typedef ResponseDetail */
762
- /** @typedef ReturnConfig */
763
- /** @typedef SendSmsPayload */
764
- /** @typedef Shipment */
765
- /** @typedef ShipmentConfig */
766
- /** @typedef ShipmentData */
767
- /** @typedef ShipmentDetail */
768
- /** @typedef ShipmentDetails */
769
- /** @typedef ShipmentDetailsResponse */
770
- /** @typedef ShipmentHistoryResponse */
771
- /** @typedef ShipmentInfoResponse */
772
- /** @typedef ShipmentInternalPlatformViewResponse */
773
- /** @typedef ShipmentItem */
774
- /** @typedef ShipmentItemFulFillingStore */
775
- /** @typedef ShipmentMeta */
776
- /** @typedef ShipmentPayments */
777
- /** @typedef ShipmentsRequest */
778
- /** @typedef ShipmentsResponse */
779
- /** @typedef ShipmentStatus */
780
- /** @typedef ShipmentStatusData */
781
- /** @typedef ShipmentTimeStamp */
782
- /** @typedef ShippingInfo */
783
- /** @typedef SmsDataPayload */
784
- /** @typedef StatuesRequest */
785
- /** @typedef StatuesResponse */
786
- /** @typedef Store */
787
- /** @typedef StoreAddress */
788
- /** @typedef StoreDocuments */
789
- /** @typedef StoreEinvoice */
790
- /** @typedef StoreEwaybill */
791
- /** @typedef StoreGstCredentials */
792
- /** @typedef StoreMeta */
793
- /** @typedef StoreReassign */
794
- /** @typedef StoreReassignResponse */
795
- /** @typedef SubLane */
796
- /** @typedef SuccessResponse */
797
- /** @typedef SuperLane */
798
- /** @typedef Tax */
799
- /** @typedef TaxDetails */
800
- /** @typedef TaxInfo */
801
- /** @typedef TrackingList */
802
- /** @typedef TransactionData */
803
- /** @typedef UpdateShipmentLockPayload */
804
- /** @typedef UpdateShipmentLockResponse */
805
- /** @typedef UpdateShipmentStatusRequest */
806
- /** @typedef UpdateShipmentStatusResponseBody */
807
- /** @typedef UploadConsent */
808
- /** @typedef URL */
809
- /** @typedef UserData */
810
- /** @typedef UserDataInfo */
811
- /** @typedef UserDetailsData */
812
- /** @typedef Weight */
162
+ /** @typedef AbandonedCart */
163
+ /** @typedef AbandonedCartResponse */
164
+ /** @typedef ActionQuery */
165
+ /** @typedef ActivePromosResponse */
166
+ /** @typedef AddCartDetailResponse */
167
+ /** @typedef AddCartRequest */
168
+ /** @typedef AddProductCart */
169
+ /** @typedef AppliedFreeArticles */
170
+ /** @typedef AppliedPromotion */
171
+ /** @typedef ApplyCouponRequest */
172
+ /** @typedef Article */
173
+ /** @typedef ArticlePriceInfo */
174
+ /** @typedef BaseInfo */
175
+ /** @typedef BasePrice */
176
+ /** @typedef BulkBundleRestriction */
177
+ /** @typedef BuyRules */
178
+ /** @typedef CartBreakup */
179
+ /** @typedef CartCheckoutResponse */
180
+ /** @typedef CartCurrency */
181
+ /** @typedef CartDeliveryModesResponse */
182
+ /** @typedef CartDetailResponse */
183
+ /** @typedef CartItem */
184
+ /** @typedef CartItemCountResponse */
185
+ /** @typedef CartItemMeta */
186
+ /** @typedef CartList */
187
+ /** @typedef CartMetaConfigAdd */
188
+ /** @typedef CartMetaConfigUpdate */
189
+ /** @typedef CartMetaMissingResponse */
190
+ /** @typedef CartMetaResponse */
191
+ /** @typedef CartProduct */
192
+ /** @typedef CartProductIdentifer */
193
+ /** @typedef CartProductInfo */
194
+ /** @typedef CategoryInfo */
195
+ /** @typedef Charges */
196
+ /** @typedef CheckCart */
197
+ /** @typedef Collection */
198
+ /** @typedef CompareObject */
199
+ /** @typedef Coupon */
200
+ /** @typedef CouponAction */
201
+ /** @typedef CouponAdd */
202
+ /** @typedef CouponAuthor */
203
+ /** @typedef CouponBreakup */
204
+ /** @typedef CouponDateMeta */
205
+ /** @typedef CouponDetails */
206
+ /** @typedef CouponPartialUpdate */
207
+ /** @typedef CouponSchedule */
208
+ /** @typedef CouponsResponse */
209
+ /** @typedef CouponUpdate */
210
+ /** @typedef CouponValidity */
211
+ /** @typedef DeleteAddressResponse */
212
+ /** @typedef DeleteCartDetailResponse */
213
+ /** @typedef DeleteCartRequest */
214
+ /** @typedef DeliveryCharges */
215
+ /** @typedef DiscountOffer */
216
+ /** @typedef DiscountRule */
217
+ /** @typedef DiscountRulesApp */
218
+ /** @typedef DisplayBreakup */
219
+ /** @typedef DisplayMeta */
220
+ /** @typedef DisplayMeta1 */
221
+ /** @typedef DisplayMetaDict */
222
+ /** @typedef Files */
223
+ /** @typedef FreeGiftItem */
224
+ /** @typedef GeoLocation */
225
+ /** @typedef GetCouponResponse */
226
+ /** @typedef GetShareCartLinkRequest */
227
+ /** @typedef GetShareCartLinkResponse */
228
+ /** @typedef Identifier */
229
+ /** @typedef ItemCriteria */
230
+ /** @typedef LoyaltyPoints */
231
+ /** @typedef MultiCartResponse */
232
+ /** @typedef MultiTenderPaymentMeta */
233
+ /** @typedef MultiTenderPaymentMethod */
234
+ /** @typedef OpenapiCartDetailsRequest */
235
+ /** @typedef OpenapiCartDetailsResponse */
236
+ /** @typedef OpenApiCartServiceabilityRequest */
237
+ /** @typedef OpenApiCartServiceabilityResponse */
238
+ /** @typedef OpenApiCheckoutResponse */
239
+ /** @typedef OpenApiErrorResponse */
240
+ /** @typedef OpenApiFiles */
241
+ /** @typedef OpenApiOrderItem */
242
+ /** @typedef OpenApiPlatformCheckoutReq */
243
+ /** @typedef OperationErrorResponse */
244
+ /** @typedef OverrideCartItem */
245
+ /** @typedef OverrideCartItemPromo */
246
+ /** @typedef OverrideCheckoutReq */
247
+ /** @typedef OverrideCheckoutResponse */
248
+ /** @typedef Ownership */
249
+ /** @typedef Ownership1 */
250
+ /** @typedef Ownership2 */
251
+ /** @typedef Page */
252
+ /** @typedef PageCoupon */
253
+ /** @typedef PaymentAllowValue */
254
+ /** @typedef PaymentAllowValue1 */
255
+ /** @typedef PaymentCouponValidate */
256
+ /** @typedef PaymentMeta */
257
+ /** @typedef PaymentMethod */
258
+ /** @typedef PaymentModes */
259
+ /** @typedef PaymentSelectionLock */
260
+ /** @typedef PickupStoreDetail */
261
+ /** @typedef PlatformAddCartRequest */
262
+ /** @typedef PlatformAddress */
263
+ /** @typedef PlatformCartCheckoutDetailRequest */
264
+ /** @typedef PlatformCartCheckoutDetailV2Request */
265
+ /** @typedef PlatformCartMetaRequest */
266
+ /** @typedef PlatformCartShipmentsResponse */
267
+ /** @typedef PlatformGetAddressesResponse */
268
+ /** @typedef PlatformSelectCartAddressRequest */
269
+ /** @typedef PlatformShipmentResponse */
270
+ /** @typedef PlatformUpdateCartRequest */
271
+ /** @typedef PostOrder */
272
+ /** @typedef PostOrder1 */
273
+ /** @typedef PriceAdjustment */
274
+ /** @typedef PriceAdjustmentAdd */
275
+ /** @typedef PriceAdjustmentResponse */
276
+ /** @typedef PriceAdjustmentUpdate */
277
+ /** @typedef PriceRange */
278
+ /** @typedef ProductAction */
279
+ /** @typedef ProductArticle */
280
+ /** @typedef ProductAvailability */
281
+ /** @typedef ProductAvailabilitySize */
282
+ /** @typedef ProductImage */
283
+ /** @typedef ProductPrice */
284
+ /** @typedef ProductPriceInfo */
285
+ /** @typedef PromiseFormatted */
286
+ /** @typedef PromiseTimestamp */
287
+ /** @typedef PromoMeta */
288
+ /** @typedef PromotionAction */
289
+ /** @typedef PromotionAdd */
290
+ /** @typedef PromotionAuthor */
291
+ /** @typedef PromotionDateMeta */
292
+ /** @typedef PromotionListItem */
293
+ /** @typedef PromotionPartialUpdate */
294
+ /** @typedef PromotionPaymentModes */
295
+ /** @typedef PromotionSchedule */
296
+ /** @typedef PromotionsResponse */
297
+ /** @typedef PromotionUpdate */
298
+ /** @typedef RawBreakup */
299
+ /** @typedef Restrictions */
300
+ /** @typedef Restrictions1 */
301
+ /** @typedef Rule */
302
+ /** @typedef RuleDefinition */
303
+ /** @typedef SaveAddressResponse */
304
+ /** @typedef SharedCart */
305
+ /** @typedef SharedCartDetails */
306
+ /** @typedef SharedCartResponse */
307
+ /** @typedef ShipmentArticle */
308
+ /** @typedef ShipmentPromise */
309
+ /** @typedef ShippingAddress */
310
+ /** @typedef StaffCheckout */
311
+ /** @typedef State */
312
+ /** @typedef StoreDetailsResponse */
313
+ /** @typedef StoreInfo */
314
+ /** @typedef SuccessMessage */
315
+ /** @typedef Tags */
316
+ /** @typedef UpdateAddressResponse */
317
+ /** @typedef UpdateCartDetailResponse */
318
+ /** @typedef UpdateCartPaymentRequest */
319
+ /** @typedef UpdateCartPaymentRequestV2 */
320
+ /** @typedef UpdateCartRequest */
321
+ /** @typedef UpdateCartShipmentItem */
322
+ /** @typedef UpdateCartShipmentRequest */
323
+ /** @typedef UpdateProductCart */
324
+ /** @typedef UpdateUserCartMapping */
325
+ /** @typedef UserCartMappingResponse */
326
+ /** @typedef UserInfo */
327
+ /** @typedef UserRegistered */
328
+ /** @typedef UsesRemaining */
329
+ /** @typedef UsesRemaining1 */
330
+ /** @typedef UsesRestriction */
331
+ /** @typedef UsesRestriction1 */
332
+ /** @typedef Validation */
333
+ /** @typedef Validity */
334
+ /** @typedef Visibility */
813
335
 
814
336
  /** @typedef Action */
815
337
  /** @typedef ActionPage */
@@ -844,6 +366,7 @@ class PlatformApplicationClient {
844
366
  /** @typedef AttributeMasterSerializer */
845
367
  /** @typedef AttributeSchemaRange */
846
368
  /** @typedef AutocompleteAction */
369
+ /** @typedef AutoCompleteMedia */
847
370
  /** @typedef AutocompletePageAction */
848
371
  /** @typedef AutocompleteResult */
849
372
  /** @typedef BannerImage */
@@ -1134,6 +657,125 @@ class PlatformApplicationClient {
1134
657
  /** @typedef WeightResponse */
1135
658
  /** @typedef WeightResponse1 */
1136
659
 
660
+ /** @typedef Application */
661
+ /** @typedef ApplicationAuth */
662
+ /** @typedef ApplicationCors */
663
+ /** @typedef ApplicationMeta */
664
+ /** @typedef ApplicationRedirections */
665
+ /** @typedef ApplicationResponse */
666
+ /** @typedef ApplicationWebsite */
667
+ /** @typedef BadRequest */
668
+ /** @typedef Currency */
669
+ /** @typedef Domain */
670
+ /** @typedef LocationCountry */
671
+ /** @typedef LocationDefaultCurrency */
672
+ /** @typedef LocationDefaultLanguage */
673
+ /** @typedef Locations */
674
+ /** @typedef NotFound */
675
+ /** @typedef Page */
676
+ /** @typedef SecureUrl */
677
+
678
+ /** @typedef Audience */
679
+ /** @typedef AudienceReq */
680
+ /** @typedef Audiences */
681
+ /** @typedef BadRequestSchema */
682
+ /** @typedef BigqueryHeadersReq */
683
+ /** @typedef BigqueryHeadersRes */
684
+ /** @typedef BigqueryHeadersResHeaders */
685
+ /** @typedef Campaign */
686
+ /** @typedef CampaignEmail */
687
+ /** @typedef CampaignEmailTemplate */
688
+ /** @typedef CampaignReq */
689
+ /** @typedef Campaigns */
690
+ /** @typedef CampignEmailProvider */
691
+ /** @typedef EmailProvider */
692
+ /** @typedef EmailProviderReq */
693
+ /** @typedef EmailProviderReqFrom */
694
+ /** @typedef EmailProviders */
695
+ /** @typedef EmailTemplate */
696
+ /** @typedef EmailTemplateDeleteFailureRes */
697
+ /** @typedef EmailTemplateDeleteSuccessRes */
698
+ /** @typedef EmailTemplateHeaders */
699
+ /** @typedef EmailTemplateKeys */
700
+ /** @typedef EmailTemplateReq */
701
+ /** @typedef EmailTemplateRes */
702
+ /** @typedef EmailTemplates */
703
+ /** @typedef EngineRequest */
704
+ /** @typedef EngineResponse */
705
+ /** @typedef EventSubscription */
706
+ /** @typedef EventSubscriptions */
707
+ /** @typedef EventSubscriptionTemplate */
708
+ /** @typedef EventSubscriptionTemplateEmail */
709
+ /** @typedef EventSubscriptionTemplateSms */
710
+ /** @typedef GetNRecordsCsvReq */
711
+ /** @typedef GetNRecordsCsvRes */
712
+ /** @typedef GetNRecordsCsvResItems */
713
+ /** @typedef GetStats */
714
+ /** @typedef Job */
715
+ /** @typedef JobLog */
716
+ /** @typedef JobLogs */
717
+ /** @typedef Jobs */
718
+ /** @typedef Log */
719
+ /** @typedef LogEmail */
720
+ /** @typedef LogMeta */
721
+ /** @typedef LogPushnotification */
722
+ /** @typedef Logs */
723
+ /** @typedef MetaStructure */
724
+ /** @typedef NotFound */
725
+ /** @typedef Notification */
726
+ /** @typedef Page */
727
+ /** @typedef PayloadEmailProviderStructure */
728
+ /** @typedef PayloadEmailStructure */
729
+ /** @typedef PayloadEmailTemplateStructure */
730
+ /** @typedef PayloadSmsProviderStructure */
731
+ /** @typedef PayloadSmsStructure */
732
+ /** @typedef PayloadSmsTemplateStructure */
733
+ /** @typedef PayloadStructure */
734
+ /** @typedef PushtokenReq */
735
+ /** @typedef PushtokenRes */
736
+ /** @typedef RecipientHeaders */
737
+ /** @typedef SendOtpCommsReq */
738
+ /** @typedef SendOtpCommsReqData */
739
+ /** @typedef SendOtpCommsReqEmail */
740
+ /** @typedef SendOtpCommsReqSms */
741
+ /** @typedef SendOtpCommsRes */
742
+ /** @typedef SendOtpCommsResEmail */
743
+ /** @typedef SendOtpCommsResSms */
744
+ /** @typedef SendOtpEmailCommsProvider */
745
+ /** @typedef SendOtpEmailCommsTemplate */
746
+ /** @typedef SendOtpSmsCommsProvider */
747
+ /** @typedef SendOtpSmsCommsTemplate */
748
+ /** @typedef SmsProvider */
749
+ /** @typedef SmsProviderReq */
750
+ /** @typedef SmsProviders */
751
+ /** @typedef SmsTemplate */
752
+ /** @typedef SmsTemplateDeleteFailureRes */
753
+ /** @typedef SmsTemplateDeleteSuccessRes */
754
+ /** @typedef SmsTemplateMessage */
755
+ /** @typedef SmsTemplateReq */
756
+ /** @typedef SmsTemplateRes */
757
+ /** @typedef SmsTemplates */
758
+ /** @typedef Stats */
759
+ /** @typedef StatsImported */
760
+ /** @typedef StatsProcessed */
761
+ /** @typedef StatsProcessedEmail */
762
+ /** @typedef StatsProcessedSms */
763
+ /** @typedef SystemEmailTemplate */
764
+ /** @typedef SystemEmailTemplates */
765
+ /** @typedef SystemNotification */
766
+ /** @typedef SystemNotifications */
767
+ /** @typedef SystemNotificationSettings */
768
+ /** @typedef SystemNotificationsPage */
769
+ /** @typedef SystemNotificationUser */
770
+ /** @typedef SystemSmsTemplate */
771
+ /** @typedef SystemSmsTemplates */
772
+ /** @typedef TemplateAndType */
773
+ /** @typedef TriggerJobRequest */
774
+ /** @typedef TriggerJobResponse */
775
+ /** @typedef VerifyOtpCommsErrorRes */
776
+ /** @typedef VerifyOtpCommsReq */
777
+ /** @typedef VerifyOtpCommsSuccessRes */
778
+
1137
779
  /** @typedef AddressSerializer */
1138
780
  /** @typedef BrandBannerSerializer */
1139
781
  /** @typedef BulkLocationSerializer */
@@ -1176,100 +818,6 @@ class PlatformApplicationClient {
1176
818
  /** @typedef UserSerializer */
1177
819
  /** @typedef Website */
1178
820
 
1179
- /** @typedef BrowseResponse */
1180
- /** @typedef BulkRequest */
1181
- /** @typedef BulkUploadResponse */
1182
- /** @typedef CDN */
1183
- /** @typedef CompleteResponse */
1184
- /** @typedef CopyFileTask */
1185
- /** @typedef DbRecord */
1186
- /** @typedef Destination */
1187
- /** @typedef FailedResponse */
1188
- /** @typedef Opts */
1189
- /** @typedef Page */
1190
- /** @typedef ReqConfiguration */
1191
- /** @typedef SignUrlRequest */
1192
- /** @typedef SignUrlResponse */
1193
- /** @typedef StartRequest */
1194
- /** @typedef StartResponse */
1195
- /** @typedef Upload */
1196
- /** @typedef Urls */
1197
-
1198
- /** @typedef Attribution */
1199
- /** @typedef CampaignShortLink */
1200
- /** @typedef ClickStatsItem */
1201
- /** @typedef ClickStatsResponse */
1202
- /** @typedef ErrorRes */
1203
- /** @typedef Page */
1204
- /** @typedef RedirectDevice */
1205
- /** @typedef Redirects */
1206
- /** @typedef ShortLinkList */
1207
- /** @typedef ShortLinkReq */
1208
- /** @typedef ShortLinkRes */
1209
- /** @typedef SocialMediaTags */
1210
- /** @typedef UrlInfo */
1211
- /** @typedef WebRedirect */
1212
-
1213
- /** @typedef ArchiveConfig */
1214
- /** @typedef Audit */
1215
- /** @typedef AWSS3config */
1216
- /** @typedef CatalogMasterConfig */
1217
- /** @typedef CompanyConfig */
1218
- /** @typedef DataTresholdDTO */
1219
- /** @typedef DBConfig */
1220
- /** @typedef DBConnectionProfile */
1221
- /** @typedef DBParamConfig */
1222
- /** @typedef DefaultHeadersDTO */
1223
- /** @typedef DocMappingConfig */
1224
- /** @typedef EmailConfig */
1225
- /** @typedef FileConfig */
1226
- /** @typedef FTPConfig */
1227
- /** @typedef GCompany */
1228
- /** @typedef GenericDTO */
1229
- /** @typedef GoogleSpreadSheetConfig */
1230
- /** @typedef GStore */
1231
- /** @typedef HttpConfig */
1232
- /** @typedef JobConfig */
1233
- /** @typedef JobConfigDTO */
1234
- /** @typedef JobConfigListDTO */
1235
- /** @typedef JobConfigRawDTO */
1236
- /** @typedef JobHistoryDto */
1237
- /** @typedef JobMetricsDto */
1238
- /** @typedef JobStepsDTO */
1239
- /** @typedef JsonDocConfig */
1240
- /** @typedef KafkaMetaModel */
1241
- /** @typedef KafkaResponse */
1242
- /** @typedef LocalFileConfig */
1243
- /** @typedef Metum */
1244
- /** @typedef MongoDocConfig */
1245
- /** @typedef OAuthConfig */
1246
- /** @typedef Page */
1247
- /** @typedef ProcessConfig */
1248
- /** @typedef PropBeanConfig */
1249
- /** @typedef PropBeanDTO */
1250
- /** @typedef ResponseEnvelopeJobConfigDTO */
1251
- /** @typedef ResponseEnvelopeJobMetricsDto */
1252
- /** @typedef ResponseEnvelopeKafkaResponse */
1253
- /** @typedef ResponseEnvelopeListJobConfigDTO */
1254
- /** @typedef ResponseEnvelopeListJobConfigListDTO */
1255
- /** @typedef ResponseEnvelopeListJobConfigRawDTO */
1256
- /** @typedef ResponseEnvelopeListJobStepsDTO */
1257
- /** @typedef ResponseEnvelopeListSlingshotConfigurationDetail */
1258
- /** @typedef ResponseEnvelopeString */
1259
- /** @typedef Send */
1260
- /** @typedef SFTPConfig */
1261
- /** @typedef SlingshotConfigurationDetail */
1262
- /** @typedef SlingshotIntegration */
1263
- /** @typedef StoreConfig */
1264
- /** @typedef StoreData */
1265
- /** @typedef StoreFilter */
1266
- /** @typedef SuppressStoreModel */
1267
- /** @typedef SuppressStorePayload */
1268
- /** @typedef TaskConfig */
1269
- /** @typedef TaskDTO */
1270
- /** @typedef TaskParam */
1271
- /** @typedef TaskStepConfig */
1272
-
1273
821
  /** @typedef Android */
1274
822
  /** @typedef App */
1275
823
  /** @typedef AppCartConfig */
@@ -1417,159 +965,722 @@ class PlatformApplicationClient {
1417
965
  /** @typedef OtherSellerApplications */
1418
966
  /** @typedef OtherSellerCompany */
1419
967
  /** @typedef Page */
1420
- /** @typedef PaymentModeConfig */
1421
- /** @typedef PaymentSelectionLock */
1422
- /** @typedef PcrFeature */
1423
- /** @typedef PinterestLink */
1424
- /** @typedef ProductDetailFeature */
1425
- /** @typedef QrFeature */
1426
- /** @typedef RegistrationPageFeature */
1427
- /** @typedef RevenueEngineFeature */
1428
- /** @typedef RewardPointsConfig */
1429
- /** @typedef Safetynet */
1430
- /** @typedef SafetynetCredentials */
1431
- /** @typedef SecureUrl */
1432
- /** @typedef Segment */
1433
- /** @typedef SegmentCredentials */
1434
- /** @typedef SocialLinks */
1435
- /** @typedef SplashImage */
1436
- /** @typedef StoreByBrandsRequest */
1437
- /** @typedef StoreByBrandsResponse */
1438
- /** @typedef StoreCriteriaRule */
1439
- /** @typedef StoreLatLong */
1440
- /** @typedef StorePriority */
1441
- /** @typedef StorePriorityRule */
1442
- /** @typedef StoresResponse */
1443
- /** @typedef StoreValidator */
1444
- /** @typedef SuccessMessageResponse */
1445
- /** @typedef TokenResponse */
1446
- /** @typedef Tokens */
1447
- /** @typedef TwitterLink */
1448
- /** @typedef UnhandledError */
1449
- /** @typedef UpdateDomain */
1450
- /** @typedef UpdateDomainTypeRequest */
1451
- /** @typedef UpdateIntegrationLevelRequest */
1452
- /** @typedef UserEmail */
1453
- /** @typedef UserPhoneNumber */
1454
- /** @typedef Validators */
1455
- /** @typedef VimeoLink */
1456
- /** @typedef YoutubeLink */
968
+ /** @typedef PanCardConfig */
969
+ /** @typedef PaymentModeConfig */
970
+ /** @typedef PaymentSelectionLock */
971
+ /** @typedef PcrFeature */
972
+ /** @typedef PinterestLink */
973
+ /** @typedef ProductDetailFeature */
974
+ /** @typedef QrFeature */
975
+ /** @typedef RegistrationPageFeature */
976
+ /** @typedef RevenueEngineFeature */
977
+ /** @typedef RewardPointsConfig */
978
+ /** @typedef Safetynet */
979
+ /** @typedef SafetynetCredentials */
980
+ /** @typedef SecureUrl */
981
+ /** @typedef Segment */
982
+ /** @typedef SegmentCredentials */
983
+ /** @typedef SocialLinks */
984
+ /** @typedef SplashImage */
985
+ /** @typedef StoreByBrandsRequest */
986
+ /** @typedef StoreByBrandsResponse */
987
+ /** @typedef StoreCriteriaRule */
988
+ /** @typedef StoreLatLong */
989
+ /** @typedef StorePriority */
990
+ /** @typedef StorePriorityRule */
991
+ /** @typedef StoresResponse */
992
+ /** @typedef StoreValidator */
993
+ /** @typedef SuccessMessageResponse */
994
+ /** @typedef TokenResponse */
995
+ /** @typedef Tokens */
996
+ /** @typedef TwitterLink */
997
+ /** @typedef UnhandledError */
998
+ /** @typedef UpdateDomain */
999
+ /** @typedef UpdateDomainTypeRequest */
1000
+ /** @typedef UpdateIntegrationLevelRequest */
1001
+ /** @typedef UserEmail */
1002
+ /** @typedef UserPhoneNumber */
1003
+ /** @typedef ValidationFailedResponse */
1004
+ /** @typedef Validators */
1005
+ /** @typedef VimeoLink */
1006
+ /** @typedef YoutubeLink */
1007
+
1008
+ /** @typedef Action */
1009
+ /** @typedef ActionPage */
1010
+ /** @typedef AdminAnnouncementSchema */
1011
+ /** @typedef AnnouncementAuthorSchema */
1012
+ /** @typedef AnnouncementPageSchema */
1013
+ /** @typedef AnnouncementSchema */
1014
+ /** @typedef AnnouncementsResponseSchema */
1015
+ /** @typedef ApplicationLegal */
1016
+ /** @typedef ApplicationLegalFAQ */
1017
+ /** @typedef Asset */
1018
+ /** @typedef Author */
1019
+ /** @typedef BlogGetResponse */
1020
+ /** @typedef BlogRequest */
1021
+ /** @typedef BlogSchema */
1022
+ /** @typedef CategoryRequestSchema */
1023
+ /** @typedef CategorySchema */
1024
+ /** @typedef ChildrenSchema */
1025
+ /** @typedef CommonError */
1026
+ /** @typedef ConfigurationSchema */
1027
+ /** @typedef ContactSchema */
1028
+ /** @typedef ContentAPIError */
1029
+ /** @typedef ContentSchema */
1030
+ /** @typedef CreateAnnouncementSchema */
1031
+ /** @typedef CreatedBySchema */
1032
+ /** @typedef CreateFaqCategoryRequestSchema */
1033
+ /** @typedef CreateFaqCategorySchema */
1034
+ /** @typedef CreateFaqResponseSchema */
1035
+ /** @typedef CreateFaqSchema */
1036
+ /** @typedef CreateTagRequestSchema */
1037
+ /** @typedef CreateTagSchema */
1038
+ /** @typedef CronSchedule */
1039
+ /** @typedef CustomMetaTag */
1040
+ /** @typedef CustomPage */
1041
+ /** @typedef CustomPageSchema */
1042
+ /** @typedef DataLoaderResetResponseSchema */
1043
+ /** @typedef DataLoaderResponseSchema */
1044
+ /** @typedef DataLoaderSchema */
1045
+ /** @typedef DataLoaderSourceSchema */
1046
+ /** @typedef DataLoadersSchema */
1047
+ /** @typedef DateMeta */
1048
+ /** @typedef DefaultNavigationResponse */
1049
+ /** @typedef Detail */
1050
+ /** @typedef EditorMeta */
1051
+ /** @typedef EmailProperties */
1052
+ /** @typedef EmailSchema */
1053
+ /** @typedef FAQ */
1054
+ /** @typedef FAQCategorySchema */
1055
+ /** @typedef FaqResponseSchema */
1056
+ /** @typedef FaqSchema */
1057
+ /** @typedef FeatureImage */
1058
+ /** @typedef GeneratedSEOContent */
1059
+ /** @typedef GenerateSEOContent */
1060
+ /** @typedef GetAnnouncementListSchema */
1061
+ /** @typedef GetFaqCategoriesSchema */
1062
+ /** @typedef GetFaqCategoryBySlugSchema */
1063
+ /** @typedef GetFaqSchema */
1064
+ /** @typedef HandpickedTagSchema */
1065
+ /** @typedef LandingPage */
1066
+ /** @typedef LandingPageGetResponse */
1067
+ /** @typedef LandingPageSchema */
1068
+ /** @typedef Language */
1069
+ /** @typedef LocaleLanguage */
1070
+ /** @typedef Navigation */
1071
+ /** @typedef NavigationGetResponse */
1072
+ /** @typedef NavigationReference */
1073
+ /** @typedef NavigationRequest */
1074
+ /** @typedef NavigationSchema */
1075
+ /** @typedef NextSchedule */
1076
+ /** @typedef Orientation */
1077
+ /** @typedef Page */
1078
+ /** @typedef PageContent */
1079
+ /** @typedef PageGetResponse */
1080
+ /** @typedef PageMeta */
1081
+ /** @typedef PageMetaSchema */
1082
+ /** @typedef PagePublishRequest */
1083
+ /** @typedef PageRequest */
1084
+ /** @typedef PageSchema */
1085
+ /** @typedef PageSpec */
1086
+ /** @typedef PageSpecItem */
1087
+ /** @typedef PageSpecParam */
1088
+ /** @typedef PathMappingSchema */
1089
+ /** @typedef PathSourceSchema */
1090
+ /** @typedef PhoneProperties */
1091
+ /** @typedef PhoneSchema */
1092
+ /** @typedef RemoveHandpickedSchema */
1093
+ /** @typedef ResourceContent */
1094
+ /** @typedef ScheduleSchema */
1095
+ /** @typedef ScheduleStartSchema */
1096
+ /** @typedef SEO */
1097
+ /** @typedef SeoComponent */
1098
+ /** @typedef SEOImage */
1099
+ /** @typedef SeoSchema */
1100
+ /** @typedef Slideshow */
1101
+ /** @typedef SlideshowGetResponse */
1102
+ /** @typedef SlideshowMedia */
1103
+ /** @typedef SlideshowRequest */
1104
+ /** @typedef SlideshowSchema */
1105
+ /** @typedef Support */
1106
+ /** @typedef TagDeleteSuccessResponse */
1107
+ /** @typedef TagSchema */
1108
+ /** @typedef TagSourceSchema */
1109
+ /** @typedef TagsSchema */
1110
+ /** @typedef UpdateFaqCategoryRequestSchema */
1111
+ /** @typedef UpdateHandpickedSchema */
1112
+
1113
+ /** @typedef BadRequestObject */
1114
+ /** @typedef BulkDiscount */
1115
+ /** @typedef CancelJobResponse */
1116
+ /** @typedef CreateUpdateDiscount */
1117
+ /** @typedef DiscountItems */
1118
+ /** @typedef DiscountJob */
1119
+ /** @typedef DownloadFileJob */
1120
+ /** @typedef FileJobRequest */
1121
+ /** @typedef FileJobResponse */
1122
+ /** @typedef ListOrCalender */
1123
+ /** @typedef Page */
1124
+ /** @typedef UserDetails */
1125
+ /** @typedef ValidityObject */
1457
1126
 
1458
- /** @typedef AbandonedCart */
1459
- /** @typedef AbandonedCartResponse */
1460
- /** @typedef ActionQuery */
1461
- /** @typedef ActivePromosResponse */
1462
- /** @typedef AddCartDetailResponse */
1463
- /** @typedef AddCartRequest */
1464
- /** @typedef AddProductCart */
1465
- /** @typedef AppliedFreeArticles */
1466
- /** @typedef AppliedPromotion */
1467
- /** @typedef ArticlePriceInfo */
1468
- /** @typedef BaseInfo */
1469
- /** @typedef BasePrice */
1470
- /** @typedef BulkBundleRestriction */
1127
+ /** @typedef BrowseResponse */
1128
+ /** @typedef BulkRequest */
1129
+ /** @typedef BulkUploadResponse */
1130
+ /** @typedef CDN */
1131
+ /** @typedef CompleteResponse */
1132
+ /** @typedef CopyFileTask */
1133
+ /** @typedef DbRecord */
1134
+ /** @typedef Destination */
1135
+ /** @typedef FailedResponse */
1136
+ /** @typedef Opts */
1137
+ /** @typedef Page */
1138
+ /** @typedef ReqConfiguration */
1139
+ /** @typedef SignUrlRequest */
1140
+ /** @typedef SignUrlResponse */
1141
+ /** @typedef StartRequest */
1142
+ /** @typedef StartResponse */
1143
+ /** @typedef Upload */
1144
+ /** @typedef Urls */
1145
+
1146
+ /** @typedef CreditlineDataPlatformPayload */
1147
+ /** @typedef CreditlineDataPlatformRequest */
1148
+ /** @typedef CreditlineDataPlatformResponse */
1149
+ /** @typedef DownloadCreditDebitNote */
1150
+ /** @typedef DownloadCreditDebitNoteRequest */
1151
+ /** @typedef DownloadCreditDebitNoteResponse */
1152
+ /** @typedef DownloadCreditDebitNoteResponseData */
1153
+ /** @typedef DownloadReport */
1154
+ /** @typedef DownloadReportItems */
1155
+ /** @typedef DownloadReportList */
1156
+ /** @typedef Error */
1157
+ /** @typedef GenerateReportFilters */
1158
+ /** @typedef GenerateReportJson */
1159
+ /** @typedef GenerateReportMeta */
1160
+ /** @typedef GenerateReportPlatform */
1161
+ /** @typedef GenerateReportRequest */
1162
+ /** @typedef GetAffiliate */
1163
+ /** @typedef GetAffiliateResponse */
1164
+ /** @typedef GetDocs */
1165
+ /** @typedef GetEngineData */
1166
+ /** @typedef GetEngineFilters */
1167
+ /** @typedef GetEngineRequest */
1168
+ /** @typedef GetEngineResponse */
1169
+ /** @typedef GetReason */
1170
+ /** @typedef GetReasonRequest */
1171
+ /** @typedef GetReasonResponse */
1172
+ /** @typedef GetReportListData */
1173
+ /** @typedef GetReportListRequest */
1174
+ /** @typedef InoviceListingPayloadDataFilters */
1175
+ /** @typedef InvoiceListingPayloadData */
1176
+ /** @typedef InvoiceListingRequest */
1177
+ /** @typedef InvoiceListingResponse */
1178
+ /** @typedef InvoiceListingResponseItems */
1179
+ /** @typedef InvoicePdfPayloadData */
1180
+ /** @typedef InvoicePdfRequest */
1181
+ /** @typedef InvoicePdfResponse */
1182
+ /** @typedef InvoiceTypePayloadData */
1183
+ /** @typedef InvoiceTypeRequest */
1184
+ /** @typedef InvoiceTypeResponse */
1185
+ /** @typedef InvoiceTypeResponseItems */
1186
+ /** @typedef IsCreditlinePayload */
1187
+ /** @typedef IsCreditlinePlatformRequest */
1188
+ /** @typedef IsCreditlinePlatformResponse */
1189
+ /** @typedef Page */
1190
+ /** @typedef PaymentProcessPayload */
1191
+ /** @typedef PaymentProcessRequest */
1192
+ /** @typedef PaymentProcessResponse */
1193
+ /** @typedef UnpaidInvoiceDataItems */
1194
+
1195
+ /** @typedef ArchiveConfig */
1196
+ /** @typedef Audit */
1197
+ /** @typedef AWSS3config */
1198
+ /** @typedef CatalogMasterConfig */
1199
+ /** @typedef CompanyConfig */
1200
+ /** @typedef DataTresholdDTO */
1201
+ /** @typedef DBConfig */
1202
+ /** @typedef DBConnectionProfile */
1203
+ /** @typedef DBParamConfig */
1204
+ /** @typedef DefaultHeadersDTO */
1205
+ /** @typedef DocMappingConfig */
1206
+ /** @typedef EmailConfig */
1207
+ /** @typedef FileConfig */
1208
+ /** @typedef FTPConfig */
1209
+ /** @typedef GCompany */
1210
+ /** @typedef GenericDTO */
1211
+ /** @typedef GoogleSpreadSheetConfig */
1212
+ /** @typedef GStore */
1213
+ /** @typedef HttpConfig */
1214
+ /** @typedef JobConfig */
1215
+ /** @typedef JobConfigDTO */
1216
+ /** @typedef JobConfigListDTO */
1217
+ /** @typedef JobConfigRawDTO */
1218
+ /** @typedef JobHistoryDto */
1219
+ /** @typedef JobMetricsDto */
1220
+ /** @typedef JobStepsDTO */
1221
+ /** @typedef JsonDocConfig */
1222
+ /** @typedef KafkaMetaModel */
1223
+ /** @typedef KafkaResponse */
1224
+ /** @typedef LocalFileConfig */
1225
+ /** @typedef Metum */
1226
+ /** @typedef MongoDocConfig */
1227
+ /** @typedef OAuthConfig */
1228
+ /** @typedef Page */
1229
+ /** @typedef ProcessConfig */
1230
+ /** @typedef PropBeanConfig */
1231
+ /** @typedef PropBeanDTO */
1232
+ /** @typedef ResponseEnvelopeJobConfigDTO */
1233
+ /** @typedef ResponseEnvelopeJobMetricsDto */
1234
+ /** @typedef ResponseEnvelopeKafkaResponse */
1235
+ /** @typedef ResponseEnvelopeListJobConfigDTO */
1236
+ /** @typedef ResponseEnvelopeListJobConfigListDTO */
1237
+ /** @typedef ResponseEnvelopeListJobConfigRawDTO */
1238
+ /** @typedef ResponseEnvelopeListJobStepsDTO */
1239
+ /** @typedef ResponseEnvelopeListSlingshotConfigurationDetail */
1240
+ /** @typedef ResponseEnvelopeString */
1241
+ /** @typedef Send */
1242
+ /** @typedef SFTPConfig */
1243
+ /** @typedef SlingshotConfigurationDetail */
1244
+ /** @typedef SlingshotIntegration */
1245
+ /** @typedef StoreConfig */
1246
+ /** @typedef StoreData */
1247
+ /** @typedef StoreFilter */
1248
+ /** @typedef SuppressStoreModel */
1249
+ /** @typedef SuppressStorePayload */
1250
+ /** @typedef TaskConfig */
1251
+ /** @typedef TaskDTO */
1252
+ /** @typedef TaskParam */
1253
+ /** @typedef TaskStepConfig */
1254
+
1255
+ /** @typedef AddTicketPayload */
1256
+ /** @typedef AgentChangePayload */
1257
+ /** @typedef CategoryData */
1258
+ /** @typedef CloseVideoRoomResponse */
1259
+ /** @typedef CommunicationDetails */
1260
+ /** @typedef CreateCustomFormPayload */
1261
+ /** @typedef CreatedOn */
1262
+ /** @typedef CreateVideoRoomPayload */
1263
+ /** @typedef CreateVideoRoomResponse */
1264
+ /** @typedef CustomForm */
1265
+ /** @typedef CustomFormList */
1266
+ /** @typedef CustomFormSubmissionPayload */
1267
+ /** @typedef Debug */
1268
+ /** @typedef EditCustomFormPayload */
1269
+ /** @typedef EditTicketPayload */
1270
+ /** @typedef Email */
1271
+ /** @typedef FeedbackForm */
1272
+ /** @typedef FeedbackResponseItem */
1273
+ /** @typedef Filter */
1274
+ /** @typedef GetParticipantsInsideVideoRoomResponse */
1275
+ /** @typedef GetTokenForVideoRoomResponse */
1276
+ /** @typedef IntegrationConfig */
1277
+ /** @typedef NotifyUser */
1278
+ /** @typedef Page */
1279
+ /** @typedef Participant */
1280
+ /** @typedef PhoneNumber */
1281
+ /** @typedef PollForAssignment */
1282
+ /** @typedef Priority */
1283
+ /** @typedef Status */
1284
+ /** @typedef SubmitButton */
1285
+ /** @typedef SubmitCustomFormResponse */
1286
+ /** @typedef SupportGeneralConfig */
1287
+ /** @typedef Ticket */
1288
+ /** @typedef TicketAsset */
1289
+ /** @typedef TicketCategory */
1290
+ /** @typedef TicketContent */
1291
+ /** @typedef TicketContext */
1292
+ /** @typedef TicketFeedback */
1293
+ /** @typedef TicketFeedbackForm */
1294
+ /** @typedef TicketFeedbackList */
1295
+ /** @typedef TicketFeedbackPayload */
1296
+ /** @typedef TicketHistory */
1297
+ /** @typedef TicketHistoryList */
1298
+ /** @typedef TicketHistoryPayload */
1299
+ /** @typedef TicketList */
1300
+ /** @typedef TicketSubCategory */
1301
+ /** @typedef UserSchema */
1302
+
1303
+ /** @typedef ActionInfo */
1304
+ /** @typedef AdvanceFilterInfo */
1305
+ /** @typedef Affiliate */
1306
+ /** @typedef AffiliateAppConfig */
1307
+ /** @typedef AffiliateAppConfigMeta */
1308
+ /** @typedef AffiliateBag */
1309
+ /** @typedef AffiliateBagDetails */
1310
+ /** @typedef AffiliateBagsDetails */
1311
+ /** @typedef AffiliateConfig */
1312
+ /** @typedef AffiliateDetails */
1313
+ /** @typedef AffiliateInventoryArticleAssignmentConfig */
1314
+ /** @typedef AffiliateInventoryConfig */
1315
+ /** @typedef AffiliateInventoryLogisticsConfig */
1316
+ /** @typedef AffiliateInventoryOrderConfig */
1317
+ /** @typedef AffiliateInventoryPaymentConfig */
1318
+ /** @typedef AffiliateInventoryStoreConfig */
1319
+ /** @typedef AffiliateMeta */
1320
+ /** @typedef AffiliateStoreIdMapping */
1321
+ /** @typedef AnnouncementResponse */
1322
+ /** @typedef AnnouncementsResponse */
1323
+ /** @typedef AppliedPromos */
1324
+ /** @typedef Article */
1325
+ /** @typedef ArticleDetails */
1326
+ /** @typedef ArticleDetails1 */
1327
+ /** @typedef AttachOrderUser */
1328
+ /** @typedef AttachOrderUserResponse */
1329
+ /** @typedef AttachUserInfo */
1330
+ /** @typedef AttachUserOtpData */
1331
+ /** @typedef Attributes */
1332
+ /** @typedef B2BPODetails */
1333
+ /** @typedef BagConfigs */
1334
+ /** @typedef BagDetailsPlatformResponse */
1335
+ /** @typedef BagGST */
1336
+ /** @typedef BagGSTDetails */
1337
+ /** @typedef BagMeta */
1338
+ /** @typedef BagPaymentMethods */
1339
+ /** @typedef BagReturnableCancelableStatus */
1340
+ /** @typedef BagReturnableCancelableStatus1 */
1341
+ /** @typedef Bags */
1342
+ /** @typedef BagsPage */
1343
+ /** @typedef BagStateMapper */
1344
+ /** @typedef BagStateTransitionMap */
1345
+ /** @typedef BagStatusHistory */
1346
+ /** @typedef BagUnit */
1347
+ /** @typedef BaseResponse */
1348
+ /** @typedef BillingInfo */
1349
+ /** @typedef BillingStaffDetails */
1350
+ /** @typedef Brand */
1351
+ /** @typedef BulkActionTemplate */
1352
+ /** @typedef BulkActionTemplateResponse */
1353
+ /** @typedef BuyerDetails */
1471
1354
  /** @typedef BuyRules */
1472
- /** @typedef CartBreakup */
1473
- /** @typedef CartCurrency */
1474
- /** @typedef CartDetailResponse */
1475
- /** @typedef CartItem */
1476
- /** @typedef CartItemMeta */
1477
- /** @typedef CartMetaConfigAdd */
1478
- /** @typedef CartMetaConfigUpdate */
1479
- /** @typedef CartProduct */
1480
- /** @typedef CartProductIdentifer */
1481
- /** @typedef CartProductInfo */
1482
- /** @typedef CategoryInfo */
1483
- /** @typedef Charges */
1484
- /** @typedef CompareObject */
1485
- /** @typedef CouponAction */
1486
- /** @typedef CouponAdd */
1487
- /** @typedef CouponAuthor */
1488
- /** @typedef CouponBreakup */
1489
- /** @typedef CouponDateMeta */
1490
- /** @typedef CouponPartialUpdate */
1491
- /** @typedef CouponSchedule */
1492
- /** @typedef CouponsResponse */
1493
- /** @typedef CouponUpdate */
1494
- /** @typedef DeliveryCharges */
1495
- /** @typedef DiscountOffer */
1496
- /** @typedef DiscountRule */
1497
- /** @typedef DiscountRulesApp */
1498
- /** @typedef DisplayBreakup */
1499
- /** @typedef DisplayMeta */
1500
- /** @typedef DisplayMeta1 */
1501
- /** @typedef DisplayMetaDict */
1502
- /** @typedef FreeGiftItem */
1355
+ /** @typedef Charge */
1356
+ /** @typedef CheckResponse */
1357
+ /** @typedef Click2CallResponse */
1358
+ /** @typedef CompanyDetails */
1359
+ /** @typedef ContactDetails */
1360
+ /** @typedef CreateChannelConfig */
1361
+ /** @typedef CreateChannelConfigData */
1362
+ /** @typedef CreateChannelConfigResponse */
1363
+ /** @typedef CreateChannelConifgErrorResponse */
1364
+ /** @typedef CreateChannelPaymentInfo */
1365
+ /** @typedef CreateOrderAPI */
1366
+ /** @typedef CreateOrderErrorReponse */
1367
+ /** @typedef CreateOrderPayload */
1368
+ /** @typedef CreateOrderResponse */
1369
+ /** @typedef CreditBalanceInfo */
1370
+ /** @typedef CurrentStatus */
1371
+ /** @typedef DataUpdates */
1372
+ /** @typedef Dates */
1373
+ /** @typedef DebugInfo */
1374
+ /** @typedef Dimension */
1375
+ /** @typedef Dimensions */
1376
+ /** @typedef DiscountRules */
1377
+ /** @typedef DispatchManifest */
1378
+ /** @typedef Document */
1379
+ /** @typedef DpConfiguration */
1380
+ /** @typedef DPDetailsData */
1381
+ /** @typedef EinvoiceInfo */
1382
+ /** @typedef EInvoicePortalDetails */
1383
+ /** @typedef Entities */
1384
+ /** @typedef EntitiesDataUpdates */
1385
+ /** @typedef EntitiesReasons */
1386
+ /** @typedef EntityReasonData */
1387
+ /** @typedef Error */
1388
+ /** @typedef ErrorDetail */
1389
+ /** @typedef ErrorResponse */
1390
+ /** @typedef ErrorResponse1 */
1391
+ /** @typedef FetchCreditBalanceRequestPayload */
1392
+ /** @typedef FetchCreditBalanceResponsePayload */
1393
+ /** @typedef FileResponse */
1394
+ /** @typedef FilterInfoOption */
1395
+ /** @typedef FiltersInfo */
1396
+ /** @typedef FiltersResponse */
1397
+ /** @typedef FinancialBreakup */
1398
+ /** @typedef Formatted */
1399
+ /** @typedef FulfillingStore */
1400
+ /** @typedef FyndOrderIdList */
1401
+ /** @typedef GeneratePosOrderReceiptResponse */
1402
+ /** @typedef GetActionsResponse */
1403
+ /** @typedef GetBagsPlatformResponse */
1404
+ /** @typedef GiftCard */
1405
+ /** @typedef GSTDetailsData */
1406
+ /** @typedef HistoryDict */
1407
+ /** @typedef HistoryMeta */
1408
+ /** @typedef HistoryReason */
1503
1409
  /** @typedef Identifier */
1504
- /** @typedef ItemCriteria */
1505
- /** @typedef LoyaltyPoints */
1506
- /** @typedef MultiTenderPaymentMeta */
1507
- /** @typedef MultiTenderPaymentMethod */
1508
- /** @typedef OpenapiCartDetailsRequest */
1509
- /** @typedef OpenapiCartDetailsResponse */
1510
- /** @typedef OpenApiCartServiceabilityRequest */
1511
- /** @typedef OpenApiCartServiceabilityResponse */
1512
- /** @typedef OpenApiCheckoutResponse */
1513
- /** @typedef OpenApiErrorResponse */
1514
- /** @typedef OpenApiFiles */
1515
- /** @typedef OpenApiOrderItem */
1516
- /** @typedef OpenApiPlatformCheckoutReq */
1517
- /** @typedef OperationErrorResponse */
1518
- /** @typedef OverrideCartItem */
1519
- /** @typedef OverrideCartItemPromo */
1520
- /** @typedef OverrideCheckoutReq */
1521
- /** @typedef OverrideCheckoutResponse */
1522
- /** @typedef Ownership */
1523
- /** @typedef Ownership1 */
1524
- /** @typedef Ownership2 */
1410
+ /** @typedef InvalidateShipmentCacheNestedResponse */
1411
+ /** @typedef InvalidateShipmentCachePayload */
1412
+ /** @typedef InvalidateShipmentCacheResponse */
1413
+ /** @typedef InvoiceInfo */
1414
+ /** @typedef Item */
1415
+ /** @typedef ItemCriterias */
1416
+ /** @typedef LaneConfigResponse */
1417
+ /** @typedef LineItem */
1418
+ /** @typedef LocationDetails */
1419
+ /** @typedef LockData */
1420
+ /** @typedef MarketPlacePdf */
1421
+ /** @typedef Meta */
1422
+ /** @typedef OrderBagArticle */
1423
+ /** @typedef OrderBags */
1424
+ /** @typedef OrderBrandName */
1425
+ /** @typedef OrderConfig */
1426
+ /** @typedef OrderData */
1427
+ /** @typedef OrderDetails */
1428
+ /** @typedef OrderDetailsData */
1429
+ /** @typedef OrderDetailsResponse */
1430
+ /** @typedef OrderInfo */
1431
+ /** @typedef OrderingStoreDetails */
1432
+ /** @typedef OrderItemDataUpdates */
1433
+ /** @typedef OrderListingResponse */
1434
+ /** @typedef OrderMeta */
1435
+ /** @typedef OrderPriority */
1436
+ /** @typedef OrderStatus */
1437
+ /** @typedef OrderStatusData */
1438
+ /** @typedef OrderStatusResult */
1439
+ /** @typedef OrderUser */
1440
+ /** @typedef OriginalFilter */
1525
1441
  /** @typedef Page */
1526
- /** @typedef PaymentAllowValue */
1527
- /** @typedef PaymentAllowValue1 */
1528
- /** @typedef PaymentModes */
1529
- /** @typedef PaymentSelectionLock */
1530
- /** @typedef PostOrder */
1531
- /** @typedef PostOrder1 */
1532
- /** @typedef PriceRange */
1533
- /** @typedef ProductAction */
1534
- /** @typedef ProductArticle */
1535
- /** @typedef ProductAvailability */
1536
- /** @typedef ProductAvailabilitySize */
1537
- /** @typedef ProductImage */
1538
- /** @typedef ProductPrice */
1539
- /** @typedef ProductPriceInfo */
1540
- /** @typedef PromiseFormatted */
1541
- /** @typedef PromiseTimestamp */
1542
- /** @typedef PromoMeta */
1543
- /** @typedef PromotionAction */
1544
- /** @typedef PromotionAdd */
1545
- /** @typedef PromotionAuthor */
1546
- /** @typedef PromotionDateMeta */
1547
- /** @typedef PromotionListItem */
1548
- /** @typedef PromotionPartialUpdate */
1549
- /** @typedef PromotionPaymentModes */
1550
- /** @typedef PromotionSchedule */
1551
- /** @typedef PromotionsResponse */
1552
- /** @typedef PromotionUpdate */
1553
- /** @typedef RawBreakup */
1554
- /** @typedef Restrictions */
1555
- /** @typedef Restrictions1 */
1556
- /** @typedef Rule */
1557
- /** @typedef RuleDefinition */
1558
- /** @typedef ShipmentPromise */
1559
- /** @typedef ShippingAddress */
1560
- /** @typedef State */
1561
- /** @typedef SuccessMessage */
1562
- /** @typedef UpdateCartDetailResponse */
1563
- /** @typedef UpdateCartRequest */
1564
- /** @typedef UpdateProductCart */
1565
- /** @typedef UserRegistered */
1566
- /** @typedef UsesRemaining */
1567
- /** @typedef UsesRemaining1 */
1568
- /** @typedef UsesRestriction */
1569
- /** @typedef UsesRestriction1 */
1570
- /** @typedef Validation */
1571
- /** @typedef Validity */
1572
- /** @typedef Visibility */
1442
+ /** @typedef PaymentInfo */
1443
+ /** @typedef PaymentMethod */
1444
+ /** @typedef PaymentMethods */
1445
+ /** @typedef PDFLinks */
1446
+ /** @typedef PhoneDetails */
1447
+ /** @typedef PlatformArticleAttributes */
1448
+ /** @typedef PlatformBreakupValues */
1449
+ /** @typedef PlatformChannel */
1450
+ /** @typedef PlatformDeliveryAddress */
1451
+ /** @typedef PlatformItem */
1452
+ /** @typedef PlatformOrderItems */
1453
+ /** @typedef PlatformOrderUpdate */
1454
+ /** @typedef PlatformShipment */
1455
+ /** @typedef PlatformShipmentReasonsResponse */
1456
+ /** @typedef PlatformShipmentTrack */
1457
+ /** @typedef PlatformTrack */
1458
+ /** @typedef PlatformUserDetails */
1459
+ /** @typedef PointBlankOtpData */
1460
+ /** @typedef PostActivityHistory */
1461
+ /** @typedef PostHistoryData */
1462
+ /** @typedef PostHistoryDict */
1463
+ /** @typedef PostHistoryFilters */
1464
+ /** @typedef PostShipmentHistory */
1465
+ /** @typedef Prices */
1466
+ /** @typedef ProcessingDates */
1467
+ /** @typedef Products */
1468
+ /** @typedef ProductsDataUpdates */
1469
+ /** @typedef ProductsDataUpdatesFilters */
1470
+ /** @typedef ProductsReasons */
1471
+ /** @typedef ProductsReasonsData */
1472
+ /** @typedef ProductsReasonsFilters */
1473
+ /** @typedef QuestionSet */
1474
+ /** @typedef Reason */
1475
+ /** @typedef ReasonsData */
1476
+ /** @typedef RefundModeConfigRequestPayload */
1477
+ /** @typedef RefundModeConfigResponsePayload */
1478
+ /** @typedef RefundModeInfo */
1479
+ /** @typedef RefundOption */
1480
+ /** @typedef ReplacementDetails */
1481
+ /** @typedef ResponseDetail */
1482
+ /** @typedef ReturnConfig */
1483
+ /** @typedef ReturnConfig1 */
1484
+ /** @typedef SendSmsPayload */
1485
+ /** @typedef SendUserMobileOTP */
1486
+ /** @typedef SendUserMobileOtpResponse */
1487
+ /** @typedef Shipment */
1488
+ /** @typedef ShipmentConfig */
1489
+ /** @typedef ShipmentData */
1490
+ /** @typedef ShipmentDetail */
1491
+ /** @typedef ShipmentDetails */
1492
+ /** @typedef ShipmentDetails1 */
1493
+ /** @typedef ShipmentHistoryResponse */
1494
+ /** @typedef ShipmentInfoResponse */
1495
+ /** @typedef ShipmentInternalPlatformViewResponse */
1496
+ /** @typedef ShipmentItem */
1497
+ /** @typedef ShipmentItemFulFillingStore */
1498
+ /** @typedef ShipmentItemMeta */
1499
+ /** @typedef ShipmentListingBrand */
1500
+ /** @typedef ShipmentListingChannel */
1501
+ /** @typedef ShipmentMeta */
1502
+ /** @typedef ShipmentPayments */
1503
+ /** @typedef ShipmentReasonsResponse */
1504
+ /** @typedef ShipmentResponseReasons */
1505
+ /** @typedef ShipmentsRequest */
1506
+ /** @typedef ShipmentsResponse */
1507
+ /** @typedef ShipmentStatus */
1508
+ /** @typedef ShipmentStatusData */
1509
+ /** @typedef ShipmentTags */
1510
+ /** @typedef ShipmentTimeStamp */
1511
+ /** @typedef ShippingInfo */
1512
+ /** @typedef SmsDataPayload */
1513
+ /** @typedef StatuesRequest */
1514
+ /** @typedef StatuesResponse */
1515
+ /** @typedef Store */
1516
+ /** @typedef StoreAddress */
1517
+ /** @typedef StoreDocuments */
1518
+ /** @typedef StoreEinvoice */
1519
+ /** @typedef StoreEwaybill */
1520
+ /** @typedef StoreGstCredentials */
1521
+ /** @typedef StoreMeta */
1522
+ /** @typedef StoreReassign */
1523
+ /** @typedef StoreReassignResponse */
1524
+ /** @typedef SubLane */
1525
+ /** @typedef SuccessResponse */
1526
+ /** @typedef SuperLane */
1527
+ /** @typedef Tax */
1528
+ /** @typedef TaxDetails */
1529
+ /** @typedef TaxInfo */
1530
+ /** @typedef TrackingList */
1531
+ /** @typedef TransactionData */
1532
+ /** @typedef UpdatePackagingDimensionsPayload */
1533
+ /** @typedef UpdatePackagingDimensionsResponse */
1534
+ /** @typedef UpdateShipmentLockPayload */
1535
+ /** @typedef UpdateShipmentLockResponse */
1536
+ /** @typedef UpdateShipmentStatusRequest */
1537
+ /** @typedef UpdateShipmentStatusResponseBody */
1538
+ /** @typedef UploadConsent */
1539
+ /** @typedef URL */
1540
+ /** @typedef UserData */
1541
+ /** @typedef UserDataInfo */
1542
+ /** @typedef UserDetailsData */
1543
+ /** @typedef VerifyMobileOTP */
1544
+ /** @typedef VerifyOtpData */
1545
+ /** @typedef VerifyOtpResponse */
1546
+ /** @typedef VerifyOtpResponseData */
1547
+ /** @typedef Weight */
1548
+
1549
+ /** @typedef AddProxyReq */
1550
+ /** @typedef AddProxyResponse */
1551
+ /** @typedef APIError */
1552
+ /** @typedef ApplicationPermissions */
1553
+ /** @typedef ApprovedPermissions */
1554
+ /** @typedef ApprovedPermissionsInfo */
1555
+ /** @typedef Benefits */
1556
+ /** @typedef Callback */
1557
+ /** @typedef Category */
1558
+ /** @typedef CategoryL1 */
1559
+ /** @typedef CategoryL2 */
1560
+ /** @typedef CommingSoon */
1561
+ /** @typedef ContactInfo */
1562
+ /** @typedef ExtensionCommon */
1563
+ /** @typedef ExtensionDetails */
1564
+ /** @typedef ExtensionItems */
1565
+ /** @typedef ExtensionList */
1566
+ /** @typedef ExtensionListItems */
1567
+ /** @typedef ExtensionResponse */
1568
+ /** @typedef ExtensionSuggestion */
1569
+ /** @typedef ExtensionSuggestionList */
1570
+ /** @typedef getProxyPathRes */
1571
+ /** @typedef ListingInfo */
1572
+ /** @typedef Logo */
1573
+ /** @typedef ModifyPartnerReq */
1574
+ /** @typedef OrganizationBasicInfo */
1575
+ /** @typedef Pagination */
1576
+ /** @typedef PartnerInviteDetails */
1577
+ /** @typedef PartnerList */
1578
+ /** @typedef PartnerRequestList */
1579
+ /** @typedef Plan */
1580
+ /** @typedef Plans */
1581
+ /** @typedef Price */
1582
+ /** @typedef PublicExtension */
1583
+ /** @typedef RemoveProxyResponse */
1584
+ /** @typedef RequestedPermissions */
1585
+ /** @typedef Scope */
1586
+ /** @typedef Screenshots */
1587
+ /** @typedef SetupProductRes */
1588
+ /** @typedef SubscriptionRequest */
1589
+ /** @typedef SubscriptionRes */
1590
+ /** @typedef Support */
1591
+ /** @typedef UninstallExtension */
1592
+
1593
+ /** @typedef AddBeneficiaryDetailsOTPRequest */
1594
+ /** @typedef BankDetailsForOTP */
1595
+ /** @typedef CancelOrResendPaymentLinkRequest */
1596
+ /** @typedef CancelPaymentLinkResponse */
1597
+ /** @typedef CODdata */
1598
+ /** @typedef Code */
1599
+ /** @typedef CreatePaymentLinkMeta */
1600
+ /** @typedef CreatePaymentLinkRequest */
1601
+ /** @typedef CreatePaymentLinkResponse */
1602
+ /** @typedef DeletePayoutResponse */
1603
+ /** @typedef DeleteSubscriptionPaymentMethodResponse */
1604
+ /** @typedef EdcAddRequest */
1605
+ /** @typedef EdcAggregatorAndModelListResponse */
1606
+ /** @typedef EdcDevice */
1607
+ /** @typedef EdcDeviceAddResponse */
1608
+ /** @typedef EdcDeviceDetailsResponse */
1609
+ /** @typedef EdcDeviceListResponse */
1610
+ /** @typedef EdcDeviceStatsResponse */
1611
+ /** @typedef EdcDeviceUpdateResponse */
1612
+ /** @typedef EdcModelData */
1613
+ /** @typedef EdcUpdateRequest */
1614
+ /** @typedef ErrorCodeAndDescription */
1615
+ /** @typedef ErrorCodeDescription */
1616
+ /** @typedef ErrorDescription */
1617
+ /** @typedef ErrorResponse */
1618
+ /** @typedef GetOauthUrlResponse */
1619
+ /** @typedef GetPaymentCode */
1620
+ /** @typedef GetPaymentCodeResponse */
1621
+ /** @typedef GetPaymentLinkResponse */
1622
+ /** @typedef GetUserCODLimitResponse */
1623
+ /** @typedef HttpErrorCodeAndResponse */
1624
+ /** @typedef IfscCodeResponse */
1625
+ /** @typedef IntentApp */
1626
+ /** @typedef IntentAppErrorList */
1627
+ /** @typedef LinkStatus */
1628
+ /** @typedef MerchantOnBoardingRequest */
1629
+ /** @typedef MerchantOnBoardingResponse */
1630
+ /** @typedef MultiTenderPaymentMeta */
1631
+ /** @typedef MultiTenderPaymentMethod */
1632
+ /** @typedef NotFoundResourceError */
1633
+ /** @typedef OrderBeneficiaryDetails */
1634
+ /** @typedef OrderBeneficiaryResponse */
1635
+ /** @typedef Page */
1636
+ /** @typedef PaymentCode */
1637
+ /** @typedef PaymentConfirmationRequest */
1638
+ /** @typedef PaymentConfirmationResponse */
1639
+ /** @typedef PaymentGatewayConfig */
1640
+ /** @typedef PaymentGatewayConfigRequest */
1641
+ /** @typedef PaymentGatewayConfigResponse */
1642
+ /** @typedef PaymentGatewayToBeReviewed */
1643
+ /** @typedef PaymentInitializationRequest */
1644
+ /** @typedef PaymentInitializationResponse */
1645
+ /** @typedef PaymentModeList */
1646
+ /** @typedef PaymentModeLogo */
1647
+ /** @typedef PaymentObjectListSerializer */
1648
+ /** @typedef PaymentOptions */
1649
+ /** @typedef PaymentOptionsResponse */
1650
+ /** @typedef PaymentStatusBulkHandlerRequest */
1651
+ /** @typedef PaymentStatusBulkHandlerResponse */
1652
+ /** @typedef PaymentStatusObject */
1653
+ /** @typedef PaymentStatusUpdateRequest */
1654
+ /** @typedef PaymentStatusUpdateResponse */
1655
+ /** @typedef Payout */
1656
+ /** @typedef PayoutAggregator */
1657
+ /** @typedef PayoutBankDetails */
1658
+ /** @typedef PayoutCustomer */
1659
+ /** @typedef PayoutMoreAttributes */
1660
+ /** @typedef PayoutRequest */
1661
+ /** @typedef PayoutResponse */
1662
+ /** @typedef PayoutsResponse */
1663
+ /** @typedef PollingPaymentLinkResponse */
1664
+ /** @typedef RefundAccountResponse */
1665
+ /** @typedef RepaymentDetailsSerialiserPayAll */
1666
+ /** @typedef RepaymentRequestDetails */
1667
+ /** @typedef RepaymentResponse */
1668
+ /** @typedef ResendOrCancelPaymentRequest */
1669
+ /** @typedef ResendOrCancelPaymentResponse */
1670
+ /** @typedef ResendPaymentLinkResponse */
1671
+ /** @typedef RevokeOAuthToken */
1672
+ /** @typedef RootPaymentMode */
1673
+ /** @typedef SaveSubscriptionSetupIntentRequest */
1674
+ /** @typedef SaveSubscriptionSetupIntentResponse */
1675
+ /** @typedef SetCODForUserRequest */
1676
+ /** @typedef SetCODOptionResponse */
1677
+ /** @typedef StatisticsData */
1678
+ /** @typedef SubscriptionConfigResponse */
1679
+ /** @typedef SubscriptionPaymentMethodResponse */
1680
+ /** @typedef UpdatePayoutRequest */
1681
+ /** @typedef UpdatePayoutResponse */
1682
+ /** @typedef ValidateCustomerRequest */
1683
+ /** @typedef ValidateCustomerResponse */
1573
1684
 
1574
1685
  /** @typedef AppUser */
1575
1686
  /** @typedef Asset */
@@ -1593,24 +1704,262 @@ class PlatformApplicationClient {
1593
1704
  /** @typedef ShareMessages */
1594
1705
  /** @typedef UserRes */
1595
1706
 
1596
- /** @typedef BadRequestObject */
1597
- /** @typedef BulkDiscount */
1598
- /** @typedef CancelJobResponse */
1599
- /** @typedef CreateUpdateDiscount */
1600
- /** @typedef DiscountItems */
1601
- /** @typedef DiscountJob */
1602
- /** @typedef DownloadFileJob */
1603
- /** @typedef FileJobRequest */
1604
- /** @typedef FileJobResponse */
1605
- /** @typedef ListOrCalender */
1707
+ /** @typedef AddressResponse */
1708
+ /** @typedef ApplicationCompanyDpViewRequest */
1709
+ /** @typedef ApplicationCompanyDpViewResponse */
1710
+ /** @typedef ApplicationSelfShipConfig */
1711
+ /** @typedef ApplicationSelfShipConfigResponse */
1712
+ /** @typedef ApplicationServiceabilityConfig */
1713
+ /** @typedef ApplicationServiceabilityConfigResponse */
1714
+ /** @typedef CommonError */
1715
+ /** @typedef CompanyDpAccountListResponse */
1716
+ /** @typedef CompanyDpAccountRequest */
1717
+ /** @typedef CompanyDpAccountResponse */
1718
+ /** @typedef CompanyStoreView_PageItems */
1719
+ /** @typedef CompanyStoreView_Response */
1720
+ /** @typedef ContactNumberResponse */
1721
+ /** @typedef CreatedByResponse */
1722
+ /** @typedef CreateZoneData */
1723
+ /** @typedef DocumentsResponse */
1724
+ /** @typedef Dp */
1725
+ /** @typedef Dp1 */
1726
+ /** @typedef DpAccountFailureResponse */
1727
+ /** @typedef DPApplicationRuleRequest */
1728
+ /** @typedef DPApplicationRuleResponse */
1729
+ /** @typedef DPCompanyRuleRequest */
1730
+ /** @typedef DPCompanyRuleResponse */
1731
+ /** @typedef DpIds */
1732
+ /** @typedef DpMultipleRuleSuccessResponse */
1733
+ /** @typedef DpRule */
1734
+ /** @typedef DpRuleRequest */
1735
+ /** @typedef DpRuleResponse */
1736
+ /** @typedef DpRuleSuccessResponse */
1737
+ /** @typedef DpRulesUpdateRequest */
1738
+ /** @typedef DpRuleUpdateSuccessResponse */
1739
+ /** @typedef DpSchemaInRuleListing */
1740
+ /** @typedef EinvoiceResponse */
1741
+ /** @typedef EntityRegionView_Error */
1742
+ /** @typedef EntityRegionView_Items */
1743
+ /** @typedef EntityRegionView_page */
1744
+ /** @typedef EntityRegionView_Request */
1745
+ /** @typedef EntityRegionView_Response */
1746
+ /** @typedef Error */
1747
+ /** @typedef ErrorResponse */
1748
+ /** @typedef EwayBillResponse */
1749
+ /** @typedef FailureResponse */
1750
+ /** @typedef GetSingleZoneDataViewResponse */
1751
+ /** @typedef GetStoresViewResponse */
1752
+ /** @typedef GetZoneDataViewChannels */
1753
+ /** @typedef GetZoneDataViewItems */
1754
+ /** @typedef GetZoneFromApplicationIdViewResponse */
1755
+ /** @typedef GetZoneFromPincodeViewRequest */
1756
+ /** @typedef GetZoneFromPincodeViewResponse */
1757
+ /** @typedef GstCredentialsResponse */
1758
+ /** @typedef IntegrationTypeResponse */
1759
+ /** @typedef ItemResponse */
1760
+ /** @typedef ListViewChannels */
1761
+ /** @typedef ListViewItems */
1762
+ /** @typedef ListViewProduct */
1763
+ /** @typedef ListViewResponse */
1764
+ /** @typedef ListViewSummary */
1765
+ /** @typedef LogisticsResponse */
1766
+ /** @typedef ManagerResponse */
1767
+ /** @typedef MobileNo */
1768
+ /** @typedef ModifiedByResponse */
1769
+ /** @typedef OpeningClosing */
1606
1770
  /** @typedef Page */
1607
- /** @typedef UserDetails */
1608
- /** @typedef ValidityObject */
1771
+ /** @typedef PincodeBulkViewResponse */
1772
+ /** @typedef PincodeCodStatusListingPage */
1773
+ /** @typedef PincodeCodStatusListingRequest */
1774
+ /** @typedef PincodeCodStatusListingResponse */
1775
+ /** @typedef PincodeCodStatusListingSummary */
1776
+ /** @typedef PincodeMopBulkData */
1777
+ /** @typedef PincodeMopData */
1778
+ /** @typedef PincodeMOPresponse */
1779
+ /** @typedef PincodeMopUpdateAuditHistoryPaging */
1780
+ /** @typedef PincodeMopUpdateAuditHistoryRequest */
1781
+ /** @typedef PincodeMopUpdateAuditHistoryResponse */
1782
+ /** @typedef PincodeMopUpdateAuditHistoryResponseData */
1783
+ /** @typedef PincodeMopUpdateResponse */
1784
+ /** @typedef ProductReturnConfigResponse */
1785
+ /** @typedef ReAssignStoreRequest */
1786
+ /** @typedef ReAssignStoreResponse */
1787
+ /** @typedef SelfShipResponse */
1788
+ /** @typedef ServiceabilityErrorResponse */
1789
+ /** @typedef ServiceabilityPageResponse */
1790
+ /** @typedef TimmingResponse */
1791
+ /** @typedef UpdateZoneData */
1792
+ /** @typedef WarningsResponse */
1793
+ /** @typedef Zone */
1794
+ /** @typedef ZoneDataItem */
1795
+ /** @typedef ZoneMappingType */
1796
+ /** @typedef ZoneProductTypes */
1797
+ /** @typedef ZoneRequest */
1798
+ /** @typedef ZoneResponse */
1799
+ /** @typedef ZoneSuccessResponse */
1800
+ /** @typedef ZoneUpdateRequest */
1609
1801
 
1610
- /** @typedef AddProxyReq */
1611
- /** @typedef AddProxyResponse */
1612
- /** @typedef APIError */
1613
- /** @typedef RemoveProxyResponse */
1802
+ /** @typedef Attribution */
1803
+ /** @typedef CampaignShortLink */
1804
+ /** @typedef ClickStatsItem */
1805
+ /** @typedef ClickStatsResponse */
1806
+ /** @typedef ErrorRes */
1807
+ /** @typedef Page */
1808
+ /** @typedef RedirectDevice */
1809
+ /** @typedef Redirects */
1810
+ /** @typedef ShortLinkList */
1811
+ /** @typedef ShortLinkReq */
1812
+ /** @typedef ShortLinkRes */
1813
+ /** @typedef SocialMediaTags */
1814
+ /** @typedef UrlInfo */
1815
+ /** @typedef WebRedirect */
1816
+
1817
+ /** @typedef AddThemeRequestSchema */
1818
+ /** @typedef AllAvailablePageSchema */
1819
+ /** @typedef AssetsSchema */
1820
+ /** @typedef AvailablePagePredicate */
1821
+ /** @typedef AvailablePageRoutePredicate */
1822
+ /** @typedef AvailablePageSchema */
1823
+ /** @typedef AvailablePageSchemaSections */
1824
+ /** @typedef AvailablePageScreenPredicate */
1825
+ /** @typedef AvailablePageSectionMetaAttributes */
1826
+ /** @typedef AvailablePageSeo */
1827
+ /** @typedef AvailablePageUserPredicate */
1828
+ /** @typedef availableSectionSchema */
1829
+ /** @typedef BlitzkriegApiErrorSchema */
1830
+ /** @typedef BlitzkriegInternalServerErrorSchema */
1831
+ /** @typedef BlitzkriegNotFoundSchema */
1832
+ /** @typedef Blocks */
1833
+ /** @typedef BlocksProps */
1834
+ /** @typedef Bold */
1835
+ /** @typedef Colors */
1836
+ /** @typedef CommonJs */
1837
+ /** @typedef Config */
1838
+ /** @typedef ConfigPage */
1839
+ /** @typedef Css */
1840
+ /** @typedef Custom */
1841
+ /** @typedef Font */
1842
+ /** @typedef FontsSchema */
1843
+ /** @typedef FontsSchemaItems */
1844
+ /** @typedef FontsSchemaItemsFiles */
1845
+ /** @typedef GlobalSchema */
1846
+ /** @typedef GlobalSchemaProps */
1847
+ /** @typedef Images */
1848
+ /** @typedef Information */
1849
+ /** @typedef Light */
1850
+ /** @typedef ListSchemaItem */
1851
+ /** @typedef Medium */
1852
+ /** @typedef PaginationSchema */
1853
+ /** @typedef Preset */
1854
+ /** @typedef Regular */
1855
+ /** @typedef Sections */
1856
+ /** @typedef SemiBold */
1857
+ /** @typedef Src */
1858
+ /** @typedef ThemesListingResponseSchema */
1859
+ /** @typedef ThemesSchema */
1860
+ /** @typedef UmdJs */
1861
+ /** @typedef UpgradableThemeSchema */
1862
+ /** @typedef Variants */
1863
+
1864
+ /** @typedef Accountkit */
1865
+ /** @typedef ArchiveUserRequestSchema */
1866
+ /** @typedef ArchiveUserSuccess */
1867
+ /** @typedef AuthenticationApiErrorSchema */
1868
+ /** @typedef AuthenticationInternalServerErrorSchema */
1869
+ /** @typedef AuthSuccess */
1870
+ /** @typedef AuthSuccessUser */
1871
+ /** @typedef AuthSuccessUserDebug */
1872
+ /** @typedef AuthSuccessUserEmails */
1873
+ /** @typedef BlockUserRequestSchema */
1874
+ /** @typedef BlockUserSuccess */
1875
+ /** @typedef CodeRequestBodySchema */
1876
+ /** @typedef CreateUserGroupSchema */
1877
+ /** @typedef CreateUserRequestSchema */
1878
+ /** @typedef CreateUserResponseSchema */
1879
+ /** @typedef CreateUserSessionRequestSchema */
1880
+ /** @typedef CreateUserSessionResponseSchema */
1881
+ /** @typedef CustomerListResponseSchema */
1882
+ /** @typedef DeleteAccountConsent */
1883
+ /** @typedef DeleteAccountReasons */
1884
+ /** @typedef DeleteApplicationUserRequestSchema */
1885
+ /** @typedef DeleteUserSuccess */
1886
+ /** @typedef EditEmailRequestSchema */
1887
+ /** @typedef EditMobileRequestSchema */
1888
+ /** @typedef EditProfileMobileSchema */
1889
+ /** @typedef EditProfileRequestSchema */
1890
+ /** @typedef Email */
1891
+ /** @typedef EmailOtpSuccess */
1892
+ /** @typedef Facebook */
1893
+ /** @typedef FlashCard */
1894
+ /** @typedef ForgotPasswordRequestSchema */
1895
+ /** @typedef FormRegisterRequestSchema */
1896
+ /** @typedef FormRegisterRequestSchemaPhone */
1897
+ /** @typedef Google */
1898
+ /** @typedef HasPasswordSuccess */
1899
+ /** @typedef Login */
1900
+ /** @typedef LoginSuccess */
1901
+ /** @typedef LogoutSuccess */
1902
+ /** @typedef LookAndFeel */
1903
+ /** @typedef MetaSchema */
1904
+ /** @typedef NotFoundSchema */
1905
+ /** @typedef OAuthRequestAppleSchema */
1906
+ /** @typedef OAuthRequestAppleSchemaOauth */
1907
+ /** @typedef OAuthRequestAppleSchemaProfile */
1908
+ /** @typedef OAuthRequestSchema */
1909
+ /** @typedef OAuthRequestSchemaOauth2 */
1910
+ /** @typedef OAuthRequestSchemaProfile */
1911
+ /** @typedef OtpSuccess */
1912
+ /** @typedef PaginationSchema */
1913
+ /** @typedef PasswordLoginRequestSchema */
1914
+ /** @typedef PhoneNumber */
1915
+ /** @typedef PlatformEmail */
1916
+ /** @typedef PlatformMobile */
1917
+ /** @typedef PlatformSchema */
1918
+ /** @typedef ProfileEditSuccess */
1919
+ /** @typedef ProfileEditSuccessSchema */
1920
+ /** @typedef RegisterFormSuccess */
1921
+ /** @typedef RegisterRequiredFields */
1922
+ /** @typedef RegisterRequiredFieldsEmail */
1923
+ /** @typedef RegisterRequiredFieldsMobile */
1924
+ /** @typedef RequiredFields */
1925
+ /** @typedef ResetPasswordSuccess */
1926
+ /** @typedef SendEmailOtpRequestSchema */
1927
+ /** @typedef SendEmailVerifyLinkSuccess */
1928
+ /** @typedef SendMobileOtpRequestSchema */
1929
+ /** @typedef SendMobileVerifyLinkSuccess */
1930
+ /** @typedef SendOtpRequestSchema */
1931
+ /** @typedef SendOtpResponse */
1932
+ /** @typedef SendResetPasswordEmailRequestSchema */
1933
+ /** @typedef SendResetPasswordMobileRequestSchema */
1934
+ /** @typedef SendVerificationLinkMobileRequestSchema */
1935
+ /** @typedef SessionDeleteResponseSchema */
1936
+ /** @typedef SessionExpiry */
1937
+ /** @typedef SessionListResponseInfo */
1938
+ /** @typedef SessionListResponseSchema */
1939
+ /** @typedef SessionListSuccess */
1940
+ /** @typedef Social */
1941
+ /** @typedef SocialTokens */
1942
+ /** @typedef TokenRequestBodySchema */
1943
+ /** @typedef UnauthenticatedSchema */
1944
+ /** @typedef UnauthorizedSchema */
1945
+ /** @typedef UnDeleteUserRequestSchema */
1946
+ /** @typedef UnDeleteUserSuccess */
1947
+ /** @typedef UpdatePasswordRequestSchema */
1948
+ /** @typedef UpdateUserGroupSchema */
1949
+ /** @typedef UpdateUserRequestSchema */
1950
+ /** @typedef UserEmails */
1951
+ /** @typedef UserGroupListResponseSchema */
1952
+ /** @typedef UserGroupResponseSchema */
1953
+ /** @typedef UserObjectSchema */
1954
+ /** @typedef UserPhoneNumbers */
1955
+ /** @typedef UserSchema */
1956
+ /** @typedef UserSearchResponseSchema */
1957
+ /** @typedef VerifyEmailOtpRequestSchema */
1958
+ /** @typedef VerifyEmailOTPSuccess */
1959
+ /** @typedef VerifyEmailSuccess */
1960
+ /** @typedef VerifyMobileOTPSuccess */
1961
+ /** @typedef VerifyOtpRequestSchema */
1962
+ /** @typedef VerifyOtpSuccess */
1614
1963
 
1615
1964
  /** @typedef Association */
1616
1965
  /** @typedef AuthMeta */
@@ -1626,20 +1975,4 @@ class PlatformApplicationClient {
1626
1975
  /** @typedef SubscriberEvent */
1627
1976
  /** @typedef SubscriberResponse */
1628
1977
 
1629
- /** @typedef BadRequest */
1630
- /** @typedef CreateLogResponse */
1631
- /** @typedef DeviceInfo */
1632
- /** @typedef EntityObj */
1633
- /** @typedef EntityObject */
1634
- /** @typedef EntityTypeObj */
1635
- /** @typedef EntityTypesResponse */
1636
- /** @typedef InternalServerError */
1637
- /** @typedef Location */
1638
- /** @typedef LogDocs */
1639
- /** @typedef LogMetaObj */
1640
- /** @typedef LogSchemaResponse */
1641
- /** @typedef Modifier */
1642
- /** @typedef RequestBodyAuditLog */
1643
- /** @typedef ResourceNotFound */
1644
-
1645
1978
  module.exports = PlatformApplicationClient;