@gofynd/fdk-client-javascript 1.0.0 → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/documentation/application/CATALOG.md +371 -371
- package/documentation/application/ORDER.md +272 -272
- package/documentation/application/PAYMENT.md +269 -269
- package/documentation/platform/CATALOG.md +1678 -1664
- package/documentation/platform/COMPANYPROFILE.md +201 -201
- package/documentation/platform/ORDER.md +1442 -1323
- package/documentation/platform/PAYMENT.md +88 -88
- package/index.js +7 -1
- package/package.json +1 -1
- package/sdk/application/Cart/CartApplicationClient.js +302 -0
- package/sdk/application/Cart/CartApplicationValidator.js +1 -0
- package/sdk/application/Catalog/CatalogApplicationClient.js +378 -0
- package/sdk/application/Catalog/CatalogApplicationModel.d.ts +17 -17
- package/sdk/application/Catalog/CatalogApplicationModel.js +500 -500
- package/sdk/application/Catalog/CatalogApplicationValidator.js +1 -0
- package/sdk/application/Common/CommonApplicationClient.js +22 -0
- package/sdk/application/Common/CommonApplicationValidator.js +1 -0
- package/sdk/application/Communication/CommunicationApplicationClient.js +41 -0
- package/sdk/application/Communication/CommunicationApplicationValidator.js +1 -0
- package/sdk/application/Configuration/ConfigurationApplicationClient.js +200 -0
- package/sdk/application/Configuration/ConfigurationApplicationValidator.js +1 -0
- package/sdk/application/Content/ContentApplicationClient.js +215 -0
- package/sdk/application/Content/ContentApplicationValidator.js +1 -0
- package/sdk/application/FileStorage/FileStorageApplicationClient.js +33 -0
- package/sdk/application/FileStorage/FileStorageApplicationValidator.js +1 -0
- package/sdk/application/Lead/LeadApplicationClient.js +81 -0
- package/sdk/application/Lead/LeadApplicationValidator.js +1 -0
- package/sdk/application/Logistic/LogisticApplicationClient.js +44 -0
- package/sdk/application/Logistic/LogisticApplicationValidator.js +1 -0
- package/sdk/application/Order/OrderApplicationClient.js +146 -0
- package/sdk/application/Order/OrderApplicationModel.d.ts +20 -20
- package/sdk/application/Order/OrderApplicationModel.js +329 -329
- package/sdk/application/Order/OrderApplicationValidator.js +1 -0
- package/sdk/application/Payment/PaymentApplicationClient.js +528 -0
- package/sdk/application/Payment/PaymentApplicationModel.d.ts +5 -5
- package/sdk/application/Payment/PaymentApplicationModel.js +391 -391
- package/sdk/application/Payment/PaymentApplicationValidator.js +1 -0
- package/sdk/application/PosCart/PosCartApplicationClient.js +329 -0
- package/sdk/application/PosCart/PosCartApplicationValidator.js +1 -0
- package/sdk/application/Rewards/RewardsApplicationClient.js +81 -0
- package/sdk/application/Rewards/RewardsApplicationValidator.js +1 -0
- package/sdk/application/Share/ShareApplicationClient.js +87 -0
- package/sdk/application/Share/ShareApplicationValidator.js +1 -0
- package/sdk/application/Theme/ThemeApplicationClient.js +44 -0
- package/sdk/application/Theme/ThemeApplicationValidator.js +1 -0
- package/sdk/application/User/UserApplicationClient.js +405 -0
- package/sdk/application/User/UserApplicationValidator.js +1 -0
- package/sdk/common/AxiosHelper.js +1 -1
- package/sdk/platform/Analytics/AnalyticsPlatformApplicationClient.js +114 -0
- package/sdk/platform/Analytics/AnalyticsPlatformClient.js +58 -0
- package/sdk/platform/AuditTrail/AuditTrailPlatformClient.js +46 -0
- package/sdk/platform/Billing/BillingPlatformClient.js +160 -0
- package/sdk/platform/Cart/CartPlatformApplicationClient.js +246 -0
- package/sdk/platform/Catalog/CatalogPlatformApplicationClient.d.ts +29 -29
- package/sdk/platform/Catalog/CatalogPlatformApplicationClient.js +839 -48
- package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.d.ts +3 -3
- package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.js +9 -9
- package/sdk/platform/Catalog/CatalogPlatformClient.d.ts +54 -54
- package/sdk/platform/Catalog/CatalogPlatformClient.js +1149 -96
- package/sdk/platform/Catalog/CatalogPlatformModel.d.ts +58 -57
- package/sdk/platform/Catalog/CatalogPlatformModel.js +1626 -1614
- package/sdk/platform/Catalog/CatalogPlatformValidator.d.ts +6 -6
- package/sdk/platform/Catalog/CatalogPlatformValidator.js +20 -20
- package/sdk/platform/Common/CommonPlatformClient.js +26 -0
- package/sdk/platform/Communication/CommunicationPlatformApplicationClient.js +587 -0
- package/sdk/platform/Communication/CommunicationPlatformClient.js +15 -0
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.js +179 -0
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.d.ts +11 -11
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.js +269 -269
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.js +382 -0
- package/sdk/platform/Configuration/ConfigurationPlatformClient.js +282 -0
- package/sdk/platform/Content/ContentPlatformApplicationClient.js +866 -0
- package/sdk/platform/Discount/DiscountPlatformClient.js +152 -0
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.js +54 -0
- package/sdk/platform/FileStorage/FileStoragePlatformClient.js +76 -0
- package/sdk/platform/Inventory/InventoryPlatformClient.js +161 -0
- package/sdk/platform/Lead/LeadPlatformApplicationClient.js +162 -0
- package/sdk/platform/Lead/LeadPlatformClient.js +140 -0
- package/sdk/platform/Order/OrderPlatformApplicationClient.js +55 -0
- package/sdk/platform/Order/OrderPlatformClient.d.ts +15 -6
- package/sdk/platform/Order/OrderPlatformClient.js +674 -15
- package/sdk/platform/Order/OrderPlatformModel.d.ts +67 -60
- package/sdk/platform/Order/OrderPlatformModel.js +1559 -1623
- package/sdk/platform/Order/OrderPlatformValidator.d.ts +2 -1
- package/sdk/platform/Order/OrderPlatformValidator.js +10 -4
- package/sdk/platform/Partner/PartnerPlatformApplicationClient.js +26 -0
- package/sdk/platform/Payment/PaymentPlatformApplicationClient.js +165 -0
- package/sdk/platform/Payment/PaymentPlatformClient.js +139 -0
- package/sdk/platform/Payment/PaymentPlatformModel.js +137 -137
- package/sdk/platform/PlatformApplicationClient.d.ts +2217 -2243
- package/sdk/platform/PlatformApplicationClient.js +2514 -2524
- package/sdk/platform/PlatformClient.d.ts +2217 -2243
- package/sdk/platform/PlatformClient.js +2514 -2524
- package/sdk/platform/Rewards/RewardsPlatformApplicationClient.js +169 -0
- package/sdk/platform/Share/SharePlatformApplicationClient.js +53 -0
- package/sdk/platform/Theme/ThemePlatformApplicationClient.js +293 -0
- package/sdk/platform/User/UserPlatformApplicationClient.js +145 -0
- package/sdk/platform/Webhook/WebhookPlatformClient.js +90 -0
- package/sdk/public/Configuration/ConfigurationPublicClient.js +25 -0
- package/sdk/public/Configuration/ConfigurationPublicValidator.js +3 -1
- package/sdk/public/Inventory/InventoryPublicClient.js +75 -0
- package/sdk/public/Inventory/InventoryPublicValidator.js +3 -1
- package/sdk/public/Webhook/WebhookPublicClient.js +29 -0
- package/sdk/public/Webhook/WebhookPublicValidator.js +3 -1
|
@@ -26,6 +26,21 @@ class Communication {
|
|
|
26
26
|
return Promise.reject(new FDKClientValidationError(error));
|
|
27
27
|
}
|
|
28
28
|
|
|
29
|
+
// Showing warrnings if extra unknown parameters are found
|
|
30
|
+
const {
|
|
31
|
+
error: warrning,
|
|
32
|
+
} = CommunicationValidator.getSystemNotifications().validate(
|
|
33
|
+
{
|
|
34
|
+
pageNo,
|
|
35
|
+
pageSize,
|
|
36
|
+
},
|
|
37
|
+
{ abortEarly: false, allowUnknown: false }
|
|
38
|
+
);
|
|
39
|
+
if (warrning) {
|
|
40
|
+
console.log("Parameter Validation warrnings for getSystemNotifications");
|
|
41
|
+
console.log(warrning);
|
|
42
|
+
}
|
|
43
|
+
|
|
29
44
|
const query_params = {};
|
|
30
45
|
query_params["page_no"] = pageNo;
|
|
31
46
|
query_params["page_size"] = pageSize;
|
|
@@ -21,6 +21,18 @@ class CompanyProfile {
|
|
|
21
21
|
return Promise.reject(new FDKClientValidationError(error));
|
|
22
22
|
}
|
|
23
23
|
|
|
24
|
+
// Showing warrnings if extra unknown parameters are found
|
|
25
|
+
const {
|
|
26
|
+
error: warrning,
|
|
27
|
+
} = CompanyProfileValidator.cbsOnboardGet().validate(
|
|
28
|
+
{},
|
|
29
|
+
{ abortEarly: false, allowUnknown: false }
|
|
30
|
+
);
|
|
31
|
+
if (warrning) {
|
|
32
|
+
console.log("Parameter Validation warrnings for cbsOnboardGet");
|
|
33
|
+
console.log(warrning);
|
|
34
|
+
}
|
|
35
|
+
|
|
24
36
|
const query_params = {};
|
|
25
37
|
|
|
26
38
|
const xHeaders = {};
|
|
@@ -52,6 +64,20 @@ class CompanyProfile {
|
|
|
52
64
|
return Promise.reject(new FDKClientValidationError(error));
|
|
53
65
|
}
|
|
54
66
|
|
|
67
|
+
// Showing warrnings if extra unknown parameters are found
|
|
68
|
+
const {
|
|
69
|
+
error: warrning,
|
|
70
|
+
} = CompanyProfileValidator.updateCompany().validate(
|
|
71
|
+
{
|
|
72
|
+
body,
|
|
73
|
+
},
|
|
74
|
+
{ abortEarly: false, allowUnknown: false }
|
|
75
|
+
);
|
|
76
|
+
if (warrning) {
|
|
77
|
+
console.log("Parameter Validation warrnings for updateCompany");
|
|
78
|
+
console.log(warrning);
|
|
79
|
+
}
|
|
80
|
+
|
|
55
81
|
const query_params = {};
|
|
56
82
|
|
|
57
83
|
const xHeaders = {};
|
|
@@ -80,6 +106,18 @@ class CompanyProfile {
|
|
|
80
106
|
return Promise.reject(new FDKClientValidationError(error));
|
|
81
107
|
}
|
|
82
108
|
|
|
109
|
+
// Showing warrnings if extra unknown parameters are found
|
|
110
|
+
const {
|
|
111
|
+
error: warrning,
|
|
112
|
+
} = CompanyProfileValidator.getCompanyMetrics().validate(
|
|
113
|
+
{},
|
|
114
|
+
{ abortEarly: false, allowUnknown: false }
|
|
115
|
+
);
|
|
116
|
+
if (warrning) {
|
|
117
|
+
console.log("Parameter Validation warrnings for getCompanyMetrics");
|
|
118
|
+
console.log(warrning);
|
|
119
|
+
}
|
|
120
|
+
|
|
83
121
|
const query_params = {};
|
|
84
122
|
|
|
85
123
|
const xHeaders = {};
|
|
@@ -111,6 +149,18 @@ class CompanyProfile {
|
|
|
111
149
|
return Promise.reject(new FDKClientValidationError(error));
|
|
112
150
|
}
|
|
113
151
|
|
|
152
|
+
// Showing warrnings if extra unknown parameters are found
|
|
153
|
+
const { error: warrning } = CompanyProfileValidator.getBrand().validate(
|
|
154
|
+
{
|
|
155
|
+
brandId,
|
|
156
|
+
},
|
|
157
|
+
{ abortEarly: false, allowUnknown: false }
|
|
158
|
+
);
|
|
159
|
+
if (warrning) {
|
|
160
|
+
console.log("Parameter Validation warrnings for getBrand");
|
|
161
|
+
console.log(warrning);
|
|
162
|
+
}
|
|
163
|
+
|
|
114
164
|
const query_params = {};
|
|
115
165
|
|
|
116
166
|
const xHeaders = {};
|
|
@@ -144,6 +194,19 @@ class CompanyProfile {
|
|
|
144
194
|
return Promise.reject(new FDKClientValidationError(error));
|
|
145
195
|
}
|
|
146
196
|
|
|
197
|
+
// Showing warrnings if extra unknown parameters are found
|
|
198
|
+
const { error: warrning } = CompanyProfileValidator.editBrand().validate(
|
|
199
|
+
{
|
|
200
|
+
brandId,
|
|
201
|
+
body,
|
|
202
|
+
},
|
|
203
|
+
{ abortEarly: false, allowUnknown: false }
|
|
204
|
+
);
|
|
205
|
+
if (warrning) {
|
|
206
|
+
console.log("Parameter Validation warrnings for editBrand");
|
|
207
|
+
console.log(warrning);
|
|
208
|
+
}
|
|
209
|
+
|
|
147
210
|
const query_params = {};
|
|
148
211
|
|
|
149
212
|
const xHeaders = {};
|
|
@@ -175,6 +238,18 @@ class CompanyProfile {
|
|
|
175
238
|
return Promise.reject(new FDKClientValidationError(error));
|
|
176
239
|
}
|
|
177
240
|
|
|
241
|
+
// Showing warrnings if extra unknown parameters are found
|
|
242
|
+
const { error: warrning } = CompanyProfileValidator.createBrand().validate(
|
|
243
|
+
{
|
|
244
|
+
body,
|
|
245
|
+
},
|
|
246
|
+
{ abortEarly: false, allowUnknown: false }
|
|
247
|
+
);
|
|
248
|
+
if (warrning) {
|
|
249
|
+
console.log("Parameter Validation warrnings for createBrand");
|
|
250
|
+
console.log(warrning);
|
|
251
|
+
}
|
|
252
|
+
|
|
178
253
|
const query_params = {};
|
|
179
254
|
|
|
180
255
|
const xHeaders = {};
|
|
@@ -212,6 +287,20 @@ class CompanyProfile {
|
|
|
212
287
|
return Promise.reject(new FDKClientValidationError(error));
|
|
213
288
|
}
|
|
214
289
|
|
|
290
|
+
// Showing warrnings if extra unknown parameters are found
|
|
291
|
+
const { error: warrning } = CompanyProfileValidator.getBrands().validate(
|
|
292
|
+
{
|
|
293
|
+
pageNo,
|
|
294
|
+
pageSize,
|
|
295
|
+
q,
|
|
296
|
+
},
|
|
297
|
+
{ abortEarly: false, allowUnknown: false }
|
|
298
|
+
);
|
|
299
|
+
if (warrning) {
|
|
300
|
+
console.log("Parameter Validation warrnings for getBrands");
|
|
301
|
+
console.log(warrning);
|
|
302
|
+
}
|
|
303
|
+
|
|
215
304
|
const query_params = {};
|
|
216
305
|
query_params["page_no"] = pageNo;
|
|
217
306
|
query_params["page_size"] = pageSize;
|
|
@@ -277,6 +366,22 @@ class CompanyProfile {
|
|
|
277
366
|
return Promise.reject(new FDKClientValidationError(error));
|
|
278
367
|
}
|
|
279
368
|
|
|
369
|
+
// Showing warrnings if extra unknown parameters are found
|
|
370
|
+
const {
|
|
371
|
+
error: warrning,
|
|
372
|
+
} = CompanyProfileValidator.createCompanyBrandMapping().validate(
|
|
373
|
+
{
|
|
374
|
+
body,
|
|
375
|
+
},
|
|
376
|
+
{ abortEarly: false, allowUnknown: false }
|
|
377
|
+
);
|
|
378
|
+
if (warrning) {
|
|
379
|
+
console.log(
|
|
380
|
+
"Parameter Validation warrnings for createCompanyBrandMapping"
|
|
381
|
+
);
|
|
382
|
+
console.log(warrning);
|
|
383
|
+
}
|
|
384
|
+
|
|
280
385
|
const query_params = {};
|
|
281
386
|
|
|
282
387
|
const xHeaders = {};
|
|
@@ -322,6 +427,23 @@ class CompanyProfile {
|
|
|
322
427
|
return Promise.reject(new FDKClientValidationError(error));
|
|
323
428
|
}
|
|
324
429
|
|
|
430
|
+
// Showing warrnings if extra unknown parameters are found
|
|
431
|
+
const { error: warrning } = CompanyProfileValidator.getLocations().validate(
|
|
432
|
+
{
|
|
433
|
+
storeType,
|
|
434
|
+
q,
|
|
435
|
+
stage,
|
|
436
|
+
pageNo,
|
|
437
|
+
pageSize,
|
|
438
|
+
locationIds,
|
|
439
|
+
},
|
|
440
|
+
{ abortEarly: false, allowUnknown: false }
|
|
441
|
+
);
|
|
442
|
+
if (warrning) {
|
|
443
|
+
console.log("Parameter Validation warrnings for getLocations");
|
|
444
|
+
console.log(warrning);
|
|
445
|
+
}
|
|
446
|
+
|
|
325
447
|
const query_params = {};
|
|
326
448
|
query_params["store_type"] = storeType;
|
|
327
449
|
query_params["q"] = q;
|
|
@@ -396,6 +518,20 @@ class CompanyProfile {
|
|
|
396
518
|
return Promise.reject(new FDKClientValidationError(error));
|
|
397
519
|
}
|
|
398
520
|
|
|
521
|
+
// Showing warrnings if extra unknown parameters are found
|
|
522
|
+
const {
|
|
523
|
+
error: warrning,
|
|
524
|
+
} = CompanyProfileValidator.createLocation().validate(
|
|
525
|
+
{
|
|
526
|
+
body,
|
|
527
|
+
},
|
|
528
|
+
{ abortEarly: false, allowUnknown: false }
|
|
529
|
+
);
|
|
530
|
+
if (warrning) {
|
|
531
|
+
console.log("Parameter Validation warrnings for createLocation");
|
|
532
|
+
console.log(warrning);
|
|
533
|
+
}
|
|
534
|
+
|
|
399
535
|
const query_params = {};
|
|
400
536
|
|
|
401
537
|
const xHeaders = {};
|
|
@@ -427,6 +563,20 @@ class CompanyProfile {
|
|
|
427
563
|
return Promise.reject(new FDKClientValidationError(error));
|
|
428
564
|
}
|
|
429
565
|
|
|
566
|
+
// Showing warrnings if extra unknown parameters are found
|
|
567
|
+
const {
|
|
568
|
+
error: warrning,
|
|
569
|
+
} = CompanyProfileValidator.getLocationDetail().validate(
|
|
570
|
+
{
|
|
571
|
+
locationId,
|
|
572
|
+
},
|
|
573
|
+
{ abortEarly: false, allowUnknown: false }
|
|
574
|
+
);
|
|
575
|
+
if (warrning) {
|
|
576
|
+
console.log("Parameter Validation warrnings for getLocationDetail");
|
|
577
|
+
console.log(warrning);
|
|
578
|
+
}
|
|
579
|
+
|
|
430
580
|
const query_params = {};
|
|
431
581
|
|
|
432
582
|
const xHeaders = {};
|
|
@@ -460,6 +610,21 @@ class CompanyProfile {
|
|
|
460
610
|
return Promise.reject(new FDKClientValidationError(error));
|
|
461
611
|
}
|
|
462
612
|
|
|
613
|
+
// Showing warrnings if extra unknown parameters are found
|
|
614
|
+
const {
|
|
615
|
+
error: warrning,
|
|
616
|
+
} = CompanyProfileValidator.updateLocation().validate(
|
|
617
|
+
{
|
|
618
|
+
locationId,
|
|
619
|
+
body,
|
|
620
|
+
},
|
|
621
|
+
{ abortEarly: false, allowUnknown: false }
|
|
622
|
+
);
|
|
623
|
+
if (warrning) {
|
|
624
|
+
console.log("Parameter Validation warrnings for updateLocation");
|
|
625
|
+
console.log(warrning);
|
|
626
|
+
}
|
|
627
|
+
|
|
463
628
|
const query_params = {};
|
|
464
629
|
|
|
465
630
|
const xHeaders = {};
|
|
@@ -491,6 +656,20 @@ class CompanyProfile {
|
|
|
491
656
|
return Promise.reject(new FDKClientValidationError(error));
|
|
492
657
|
}
|
|
493
658
|
|
|
659
|
+
// Showing warrnings if extra unknown parameters are found
|
|
660
|
+
const {
|
|
661
|
+
error: warrning,
|
|
662
|
+
} = CompanyProfileValidator.createLocationBulk().validate(
|
|
663
|
+
{
|
|
664
|
+
body,
|
|
665
|
+
},
|
|
666
|
+
{ abortEarly: false, allowUnknown: false }
|
|
667
|
+
);
|
|
668
|
+
if (warrning) {
|
|
669
|
+
console.log("Parameter Validation warrnings for createLocationBulk");
|
|
670
|
+
console.log(warrning);
|
|
671
|
+
}
|
|
672
|
+
|
|
494
673
|
const query_params = {};
|
|
495
674
|
|
|
496
675
|
const xHeaders = {};
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
export = CompanyProfileModel;
|
|
2
2
|
declare class CompanyProfileModel {
|
|
3
|
-
static UserSerializer(): any;
|
|
4
|
-
static Document(): any;
|
|
5
|
-
static Website(): any;
|
|
6
|
-
static BusinessDetails(): any;
|
|
7
3
|
static BusinessCountryInfo(): any;
|
|
8
4
|
static SellerPhoneNumber(): any;
|
|
9
5
|
static ContactDetails(): any;
|
|
10
|
-
static
|
|
6
|
+
static UserSerializer(): any;
|
|
7
|
+
static Website(): any;
|
|
8
|
+
static BusinessDetails(): any;
|
|
11
9
|
static GetAddressSerializer(): any;
|
|
10
|
+
static Document(): any;
|
|
11
|
+
static CompanyTaxesSerializer(): any;
|
|
12
12
|
static GetCompanyProfileSerializerResponse(): any;
|
|
13
13
|
static ErrorResponse(): any;
|
|
14
14
|
static CompanyTaxesSerializer1(): any;
|
|
@@ -20,22 +20,22 @@ declare class CompanyProfileModel {
|
|
|
20
20
|
static BrandBannerSerializer(): any;
|
|
21
21
|
static GetBrandResponseSerializer(): any;
|
|
22
22
|
static CreateUpdateBrandRequestSerializer(): any;
|
|
23
|
+
static Page(): any;
|
|
23
24
|
static CompanySocialAccounts(): any;
|
|
24
25
|
static CompanyDetails(): any;
|
|
25
26
|
static CompanySerializer(): any;
|
|
26
27
|
static CompanyBrandSerializer(): any;
|
|
27
|
-
static Page(): any;
|
|
28
28
|
static CompanyBrandListSerializer(): any;
|
|
29
29
|
static CompanyBrandPostRequestSerializer(): any;
|
|
30
|
-
static
|
|
31
|
-
static LocationDayWiseSerializer(): any;
|
|
30
|
+
static ProductReturnConfigSerializer(): any;
|
|
32
31
|
static HolidayDateSerializer(): any;
|
|
33
32
|
static HolidaySchemaSerializer(): any;
|
|
33
|
+
static LocationTimingSerializer(): any;
|
|
34
|
+
static LocationDayWiseSerializer(): any;
|
|
35
|
+
static LocationManagerSerializer(): any;
|
|
36
|
+
static GetCompanySerializer(): any;
|
|
34
37
|
static InvoiceCredSerializer(): any;
|
|
35
38
|
static InvoiceDetailsSerializer(): any;
|
|
36
|
-
static GetCompanySerializer(): any;
|
|
37
|
-
static ProductReturnConfigSerializer(): any;
|
|
38
|
-
static LocationManagerSerializer(): any;
|
|
39
39
|
static GetLocationSerializer(): any;
|
|
40
40
|
static LocationListSerializer(): any;
|
|
41
41
|
static AddressSerializer(): any;
|