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