@fenixalliance/abs-api-client 1.0.9 → 1.0.11
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/app/index.js +3 -3
- package/app/index.ts +2 -2
- package/clients/cartService/index.js +7 -3
- package/clients/cartService/index.ts +3 -1
- package/clients/cartService/services/CartLinesService.js +173 -0
- package/clients/cartService/services/CartLinesService.ts +203 -0
- package/clients/cartService/services/{CartsService.js → CartService.js} +137 -44
- package/clients/cartService/services/{CartsService.ts → CartService.ts} +135 -42
- package/clients/cartService/services/ECommerceService.js +1104 -0
- package/clients/cartService/services/ECommerceService.ts +1289 -0
- package/clients/cartService/services/WishListsService.js +321 -0
- package/clients/cartService/services/WishListsService.ts +373 -0
- package/clients/contentService/services/PortalsService.js +22 -11
- package/clients/contentService/services/PortalsService.ts +22 -11
- package/clients/crmService/services/ContactsService.js +86 -28
- package/clients/crmService/services/ContactsService.ts +86 -28
- package/clients/holderService/index.js +7 -3
- package/clients/holderService/index.ts +3 -2
- package/clients/holderService/services/{HolderService.js → IdentityService.js} +58 -176
- package/clients/holderService/services/{HolderService.ts → IdentityService.ts} +58 -200
- package/clients/holderService/services/TenantsService.js +151 -0
- package/clients/holderService/services/TenantsService.ts +176 -0
- package/clients/holderService/services/UserService.js +364 -0
- package/clients/holderService/services/UserService.ts +421 -0
- package/clients/storageService/services/AvatarsService.js +19 -8
- package/clients/storageService/services/AvatarsService.ts +19 -8
- package/clients/systemService/services/ModulesService.js +4 -2
- package/clients/systemService/services/ModulesService.ts +4 -2
- package/clients/systemService/services/TenantsService.js +24 -8
- package/clients/systemService/services/TenantsService.ts +24 -8
- package/clients/tenantService/index.js +1 -29
- package/clients/tenantService/index.ts +7 -20
- package/clients/{holderService/models/EmptyEnvelopeEnvelope.ts → tenantService/models/TenantIndustryDtoListEnvelope.ts} +3 -3
- package/clients/tenantService/models/{TenantTeamContactEnrollmentDtoIReadOnlyCollectionEnvelope.ts → TenantTeamContactEnrollmentDtoListEnvelope.ts} +1 -1
- package/clients/tenantService/models/{TenantTeamDtoIReadOnlyCollectionEnvelope.ts → TenantTeamDtoListEnvelope.ts} +1 -1
- package/clients/tenantService/models/{TenantTeamEmployeeEnrollmentDtoIReadOnlyCollectionEnvelope.ts → TenantTeamEmployeeEnrollmentDtoListEnvelope.ts} +1 -1
- package/clients/tenantService/models/{TenantTeamProjectEnrollmentDtoIReadOnlyCollectionEnvelope.ts → TenantTeamProjectEnrollmentDtoListEnvelope.ts} +1 -1
- package/clients/tenantService/models/{TenantTeamRecordDtoIReadOnlyCollectionEnvelope.ts → TenantTeamRecordDtoListEnvelope.ts} +1 -1
- package/clients/tenantService/models/{TenantTypeDtoIReadOnlyCollectionEnvelope.ts → TenantTypeDtoListEnvelope.ts} +1 -1
- package/clients/tenantService/services/SizesService.js +15 -5
- package/clients/tenantService/services/SizesService.ts +15 -5
- package/clients/tenantService/services/TenantsService.js +2554 -233
- package/clients/tenantService/services/TenantsService.ts +3004 -307
- package/package.json +1 -1
- package/schemas/cartService/schema.s.ts +2239 -1868
- package/schemas/contentService/schema.s.ts +850 -817
- package/schemas/crmService/schema.s.ts +1776 -1516
- package/schemas/holderService/schema.s.ts +256 -115
- package/schemas/storageService/schema.s.ts +439 -394
- package/schemas/systemService/schema.s.ts +465 -387
- package/schemas/tenantService/schema.s.ts +5713 -4820
- package/clients/tenantService/services/DepartmentsService.js +0 -161
- package/clients/tenantService/services/DepartmentsService.ts +0 -192
- package/clients/tenantService/services/EmployeeEnrollmentsService.js +0 -153
- package/clients/tenantService/services/EmployeeEnrollmentsService.ts +0 -181
- package/clients/tenantService/services/EnrollmentsService.js +0 -163
- package/clients/tenantService/services/EnrollmentsService.ts +0 -195
- package/clients/tenantService/services/IndustriesService.js +0 -161
- package/clients/tenantService/services/IndustriesService.ts +0 -190
- package/clients/tenantService/services/InvitationsService.js +0 -128
- package/clients/tenantService/services/InvitationsService.ts +0 -150
- package/clients/tenantService/services/PositionsService.js +0 -161
- package/clients/tenantService/services/PositionsService.ts +0 -192
- package/clients/tenantService/services/SegmentsService.js +0 -161
- package/clients/tenantService/services/SegmentsService.ts +0 -191
- package/clients/tenantService/services/TeamContactEnrollmentsService.js +0 -161
- package/clients/tenantService/services/TeamContactEnrollmentsService.ts +0 -191
- package/clients/tenantService/services/TeamProjectEnrollmentService.js +0 -153
- package/clients/tenantService/services/TeamProjectEnrollmentService.ts +0 -181
- package/clients/tenantService/services/TeamRecordsService.js +0 -161
- package/clients/tenantService/services/TeamRecordsService.ts +0 -192
- package/clients/tenantService/services/TeamsService.js +0 -161
- package/clients/tenantService/services/TeamsService.ts +0 -192
- package/clients/tenantService/services/TerritoriesService.js +0 -161
- package/clients/tenantService/services/TerritoriesService.ts +0 -192
- package/clients/tenantService/services/TypesService.js +0 -149
- package/clients/tenantService/services/TypesService.ts +0 -176
- package/clients/tenantService/services/UnitsService.js +0 -159
- package/clients/tenantService/services/UnitsService.ts +0 -190
- /package/clients/{holderService/models/EmptyEnvelopeEnvelope.js → tenantService/models/TenantIndustryDtoListEnvelope.js} +0 -0
- /package/clients/tenantService/models/{TenantTeamContactEnrollmentDtoIReadOnlyCollectionEnvelope.js → TenantTeamContactEnrollmentDtoListEnvelope.js} +0 -0
- /package/clients/tenantService/models/{TenantTeamDtoIReadOnlyCollectionEnvelope.js → TenantTeamDtoListEnvelope.js} +0 -0
- /package/clients/tenantService/models/{TenantTeamEmployeeEnrollmentDtoIReadOnlyCollectionEnvelope.js → TenantTeamEmployeeEnrollmentDtoListEnvelope.js} +0 -0
- /package/clients/tenantService/models/{TenantTeamProjectEnrollmentDtoIReadOnlyCollectionEnvelope.js → TenantTeamProjectEnrollmentDtoListEnvelope.js} +0 -0
- /package/clients/tenantService/models/{TenantTeamRecordDtoIReadOnlyCollectionEnvelope.js → TenantTeamRecordDtoListEnvelope.js} +0 -0
- /package/clients/tenantService/models/{TenantTypeDtoIReadOnlyCollectionEnvelope.js → TenantTypeDtoListEnvelope.js} +0 -0
|
@@ -1340,6 +1340,48 @@ export interface paths {
|
|
|
1340
1340
|
};
|
|
1341
1341
|
};
|
|
1342
1342
|
"/api/v2/ContentService/Portals/Root": {
|
|
1343
|
+
/** Get the root portal */
|
|
1344
|
+
get: operations["GetRootPortal"];
|
|
1345
|
+
};
|
|
1346
|
+
"/api/v2/ContentService/Portals/Current": {
|
|
1347
|
+
/** Get the current portal */
|
|
1348
|
+
get: operations["GetCurrentWebPortal"];
|
|
1349
|
+
};
|
|
1350
|
+
"/api/v2/ContentService/Portals/Initialize": {
|
|
1351
|
+
/** Initialize the current portal */
|
|
1352
|
+
get: operations["InitializeCurrentWebPortal"];
|
|
1353
|
+
};
|
|
1354
|
+
"/api/v2/ContentService/Portals/Current/Options": {
|
|
1355
|
+
/** Get the current portal settings */
|
|
1356
|
+
get: operations["GetCurrentWebPortalOptions"];
|
|
1357
|
+
};
|
|
1358
|
+
"/api/v2/ContentService/Portals/Search": {
|
|
1359
|
+
/** Search for a portal by its domain */
|
|
1360
|
+
get: operations["SearchWebPortal"];
|
|
1361
|
+
};
|
|
1362
|
+
"/api/v2/ContentService/Portals/{portalId}": {
|
|
1363
|
+
/** Get a web portal by its ID */
|
|
1364
|
+
get: operations["GetWebPortalById"];
|
|
1365
|
+
/** Update an existing web portal */
|
|
1366
|
+
put: operations["UpdateWebPortal"];
|
|
1367
|
+
/** Delete a web portal by its ID */
|
|
1368
|
+
delete: operations["DeleteWebPortal"];
|
|
1369
|
+
/** Partially update a web portal */
|
|
1370
|
+
patch: operations["PatchWebPortal"];
|
|
1371
|
+
};
|
|
1372
|
+
"/api/v2/ContentService/Portals/{portalId}/Settings": {
|
|
1373
|
+
/** Get a web portal's settings by its ID */
|
|
1374
|
+
get: operations["GetWebPortalSettingsById"];
|
|
1375
|
+
};
|
|
1376
|
+
"/api/v2/ContentService/Portals/{portalId}/Options": {
|
|
1377
|
+
/** Get a web portal's options by its ID */
|
|
1378
|
+
get: operations["GetWebPortalOptionsById"];
|
|
1379
|
+
};
|
|
1380
|
+
"/api/v2/ContentService/Portals": {
|
|
1381
|
+
/** Create a new web portal */
|
|
1382
|
+
post: operations["CreateWebPortal"];
|
|
1383
|
+
};
|
|
1384
|
+
"/api/v2/ContentService/Themes/Update": {
|
|
1343
1385
|
get: {
|
|
1344
1386
|
parameters: {
|
|
1345
1387
|
query?: {
|
|
@@ -1350,13 +1392,6 @@ export interface paths {
|
|
|
1350
1392
|
};
|
|
1351
1393
|
};
|
|
1352
1394
|
responses: {
|
|
1353
|
-
/** @description OK */
|
|
1354
|
-
200: {
|
|
1355
|
-
content: {
|
|
1356
|
-
"application/json": components["schemas"]["WebPortalDtoEnvelope"];
|
|
1357
|
-
"application/xml": components["schemas"]["WebPortalDtoEnvelope"];
|
|
1358
|
-
};
|
|
1359
|
-
};
|
|
1360
1395
|
/** @description Unauthorized */
|
|
1361
1396
|
401: {
|
|
1362
1397
|
content: {
|
|
@@ -1374,10 +1409,11 @@ export interface paths {
|
|
|
1374
1409
|
};
|
|
1375
1410
|
};
|
|
1376
1411
|
};
|
|
1377
|
-
"/api/v2/ContentService/
|
|
1412
|
+
"/api/v2/ContentService/WebContents": {
|
|
1378
1413
|
get: {
|
|
1379
1414
|
parameters: {
|
|
1380
|
-
query
|
|
1415
|
+
query: {
|
|
1416
|
+
tenantId: string;
|
|
1381
1417
|
"api-version"?: string;
|
|
1382
1418
|
};
|
|
1383
1419
|
header?: {
|
|
@@ -1388,8 +1424,8 @@ export interface paths {
|
|
|
1388
1424
|
/** @description OK */
|
|
1389
1425
|
200: {
|
|
1390
1426
|
content: {
|
|
1391
|
-
"application/json": components["schemas"]["
|
|
1392
|
-
"application/xml": components["schemas"]["
|
|
1427
|
+
"application/json": components["schemas"]["WebContentDtoListEnvelope"];
|
|
1428
|
+
"application/xml": components["schemas"]["WebContentDtoListEnvelope"];
|
|
1393
1429
|
};
|
|
1394
1430
|
};
|
|
1395
1431
|
/** @description Unauthorized */
|
|
@@ -1408,23 +1444,28 @@ export interface paths {
|
|
|
1408
1444
|
};
|
|
1409
1445
|
};
|
|
1410
1446
|
};
|
|
1411
|
-
|
|
1412
|
-
"/api/v2/ContentService/Portals/Initialize": {
|
|
1413
|
-
get: {
|
|
1447
|
+
post: {
|
|
1414
1448
|
parameters: {
|
|
1415
|
-
query
|
|
1449
|
+
query: {
|
|
1450
|
+
tenantId: string;
|
|
1416
1451
|
"api-version"?: string;
|
|
1417
1452
|
};
|
|
1418
1453
|
header?: {
|
|
1419
1454
|
"x-api-version"?: string;
|
|
1420
1455
|
};
|
|
1421
1456
|
};
|
|
1457
|
+
requestBody?: {
|
|
1458
|
+
content: {
|
|
1459
|
+
"application/json": components["schemas"]["WebContentCreateDto"];
|
|
1460
|
+
"application/xml": components["schemas"]["WebContentCreateDto"];
|
|
1461
|
+
};
|
|
1462
|
+
};
|
|
1422
1463
|
responses: {
|
|
1423
|
-
/** @description
|
|
1424
|
-
|
|
1464
|
+
/** @description Created */
|
|
1465
|
+
201: {
|
|
1425
1466
|
content: {
|
|
1426
|
-
"application/json": components["schemas"]["
|
|
1427
|
-
"application/xml": components["schemas"]["
|
|
1467
|
+
"application/json": components["schemas"]["EmptyEnvelope"];
|
|
1468
|
+
"application/xml": components["schemas"]["EmptyEnvelope"];
|
|
1428
1469
|
};
|
|
1429
1470
|
};
|
|
1430
1471
|
/** @description Unauthorized */
|
|
@@ -1444,7 +1485,7 @@ export interface paths {
|
|
|
1444
1485
|
};
|
|
1445
1486
|
};
|
|
1446
1487
|
};
|
|
1447
|
-
"/api/v2/ContentService/
|
|
1488
|
+
"/api/v2/ContentService/WebContents/{webContentId}": {
|
|
1448
1489
|
get: {
|
|
1449
1490
|
parameters: {
|
|
1450
1491
|
query?: {
|
|
@@ -1453,13 +1494,16 @@ export interface paths {
|
|
|
1453
1494
|
header?: {
|
|
1454
1495
|
"x-api-version"?: string;
|
|
1455
1496
|
};
|
|
1497
|
+
path: {
|
|
1498
|
+
webContentId: string;
|
|
1499
|
+
};
|
|
1456
1500
|
};
|
|
1457
1501
|
responses: {
|
|
1458
1502
|
/** @description OK */
|
|
1459
1503
|
200: {
|
|
1460
1504
|
content: {
|
|
1461
|
-
"application/json": components["schemas"]["
|
|
1462
|
-
"application/xml": components["schemas"]["
|
|
1505
|
+
"application/json": components["schemas"]["WebContentDtoEnvelope"];
|
|
1506
|
+
"application/xml": components["schemas"]["WebContentDtoEnvelope"];
|
|
1463
1507
|
};
|
|
1464
1508
|
};
|
|
1465
1509
|
/** @description Unauthorized */
|
|
@@ -1478,24 +1522,31 @@ export interface paths {
|
|
|
1478
1522
|
};
|
|
1479
1523
|
};
|
|
1480
1524
|
};
|
|
1481
|
-
|
|
1482
|
-
"/api/v2/ContentService/Portals/Search": {
|
|
1483
|
-
get: {
|
|
1525
|
+
put: {
|
|
1484
1526
|
parameters: {
|
|
1485
1527
|
query: {
|
|
1486
|
-
|
|
1528
|
+
tenantId: string;
|
|
1487
1529
|
"api-version"?: string;
|
|
1488
1530
|
};
|
|
1489
1531
|
header?: {
|
|
1490
1532
|
"x-api-version"?: string;
|
|
1491
1533
|
};
|
|
1534
|
+
path: {
|
|
1535
|
+
webContentId: string;
|
|
1536
|
+
};
|
|
1537
|
+
};
|
|
1538
|
+
requestBody?: {
|
|
1539
|
+
content: {
|
|
1540
|
+
"application/json": components["schemas"]["WebContentUpdateDto"];
|
|
1541
|
+
"application/xml": components["schemas"]["WebContentUpdateDto"];
|
|
1542
|
+
};
|
|
1492
1543
|
};
|
|
1493
1544
|
responses: {
|
|
1494
1545
|
/** @description OK */
|
|
1495
1546
|
200: {
|
|
1496
1547
|
content: {
|
|
1497
|
-
"application/json": components["schemas"]["
|
|
1498
|
-
"application/xml": components["schemas"]["
|
|
1548
|
+
"application/json": components["schemas"]["EmptyEnvelope"];
|
|
1549
|
+
"application/xml": components["schemas"]["EmptyEnvelope"];
|
|
1499
1550
|
};
|
|
1500
1551
|
};
|
|
1501
1552
|
/** @description Unauthorized */
|
|
@@ -1514,26 +1565,25 @@ export interface paths {
|
|
|
1514
1565
|
};
|
|
1515
1566
|
};
|
|
1516
1567
|
};
|
|
1517
|
-
|
|
1518
|
-
"/api/v2/ContentService/Portals/{portalId}": {
|
|
1519
|
-
get: {
|
|
1568
|
+
delete: {
|
|
1520
1569
|
parameters: {
|
|
1521
|
-
query
|
|
1570
|
+
query: {
|
|
1571
|
+
tenantId: string;
|
|
1522
1572
|
"api-version"?: string;
|
|
1523
1573
|
};
|
|
1524
1574
|
header?: {
|
|
1525
1575
|
"x-api-version"?: string;
|
|
1526
1576
|
};
|
|
1527
1577
|
path: {
|
|
1528
|
-
|
|
1578
|
+
webContentId: string;
|
|
1529
1579
|
};
|
|
1530
1580
|
};
|
|
1531
1581
|
responses: {
|
|
1532
1582
|
/** @description OK */
|
|
1533
1583
|
200: {
|
|
1534
1584
|
content: {
|
|
1535
|
-
"application/json": components["schemas"]["
|
|
1536
|
-
"application/xml": components["schemas"]["
|
|
1585
|
+
"application/json": components["schemas"]["EmptyEnvelope"];
|
|
1586
|
+
"application/xml": components["schemas"]["EmptyEnvelope"];
|
|
1537
1587
|
};
|
|
1538
1588
|
};
|
|
1539
1589
|
/** @description Unauthorized */
|
|
@@ -1552,7 +1602,7 @@ export interface paths {
|
|
|
1552
1602
|
};
|
|
1553
1603
|
};
|
|
1554
1604
|
};
|
|
1555
|
-
|
|
1605
|
+
patch: {
|
|
1556
1606
|
parameters: {
|
|
1557
1607
|
query: {
|
|
1558
1608
|
tenantId: string;
|
|
@@ -1562,13 +1612,13 @@ export interface paths {
|
|
|
1562
1612
|
"x-api-version"?: string;
|
|
1563
1613
|
};
|
|
1564
1614
|
path: {
|
|
1565
|
-
|
|
1615
|
+
webContentId: string;
|
|
1566
1616
|
};
|
|
1567
1617
|
};
|
|
1568
1618
|
requestBody?: {
|
|
1569
1619
|
content: {
|
|
1570
|
-
"application/json": components["schemas"]["
|
|
1571
|
-
"application/xml": components["schemas"]["
|
|
1620
|
+
"application/json": components["schemas"]["Operation"][];
|
|
1621
|
+
"application/xml": components["schemas"]["Operation"][];
|
|
1572
1622
|
};
|
|
1573
1623
|
};
|
|
1574
1624
|
responses: {
|
|
@@ -1595,7 +1645,9 @@ export interface paths {
|
|
|
1595
1645
|
};
|
|
1596
1646
|
};
|
|
1597
1647
|
};
|
|
1598
|
-
|
|
1648
|
+
};
|
|
1649
|
+
"/api/v2/ContentService/WebPageCategories": {
|
|
1650
|
+
get: {
|
|
1599
1651
|
parameters: {
|
|
1600
1652
|
query: {
|
|
1601
1653
|
tenantId: string;
|
|
@@ -1604,22 +1656,13 @@ export interface paths {
|
|
|
1604
1656
|
header?: {
|
|
1605
1657
|
"x-api-version"?: string;
|
|
1606
1658
|
};
|
|
1607
|
-
path: {
|
|
1608
|
-
portalId: string;
|
|
1609
|
-
};
|
|
1610
|
-
};
|
|
1611
|
-
requestBody: {
|
|
1612
|
-
content: {
|
|
1613
|
-
"application/json": components["schemas"]["PortalId"];
|
|
1614
|
-
"application/xml": components["schemas"]["PortalId"];
|
|
1615
|
-
};
|
|
1616
1659
|
};
|
|
1617
1660
|
responses: {
|
|
1618
1661
|
/** @description OK */
|
|
1619
1662
|
200: {
|
|
1620
1663
|
content: {
|
|
1621
|
-
"application/json": components["schemas"]["
|
|
1622
|
-
"application/xml": components["schemas"]["
|
|
1664
|
+
"application/json": components["schemas"]["WebPageCategoryDtoListEnvelope"];
|
|
1665
|
+
"application/xml": components["schemas"]["WebPageCategoryDtoListEnvelope"];
|
|
1623
1666
|
};
|
|
1624
1667
|
};
|
|
1625
1668
|
/** @description Unauthorized */
|
|
@@ -1638,7 +1681,7 @@ export interface paths {
|
|
|
1638
1681
|
};
|
|
1639
1682
|
};
|
|
1640
1683
|
};
|
|
1641
|
-
|
|
1684
|
+
post: {
|
|
1642
1685
|
parameters: {
|
|
1643
1686
|
query: {
|
|
1644
1687
|
tenantId: string;
|
|
@@ -1647,19 +1690,16 @@ export interface paths {
|
|
|
1647
1690
|
header?: {
|
|
1648
1691
|
"x-api-version"?: string;
|
|
1649
1692
|
};
|
|
1650
|
-
path: {
|
|
1651
|
-
portalId: components["schemas"]["PortalId"];
|
|
1652
|
-
};
|
|
1653
1693
|
};
|
|
1654
1694
|
requestBody?: {
|
|
1655
1695
|
content: {
|
|
1656
|
-
"application/json": components["schemas"]["
|
|
1657
|
-
"application/xml": components["schemas"]["
|
|
1696
|
+
"application/json": components["schemas"]["WebPageCategoryCreateDto"];
|
|
1697
|
+
"application/xml": components["schemas"]["WebPageCategoryCreateDto"];
|
|
1658
1698
|
};
|
|
1659
1699
|
};
|
|
1660
1700
|
responses: {
|
|
1661
|
-
/** @description
|
|
1662
|
-
|
|
1701
|
+
/** @description Created */
|
|
1702
|
+
201: {
|
|
1663
1703
|
content: {
|
|
1664
1704
|
"application/json": components["schemas"]["EmptyEnvelope"];
|
|
1665
1705
|
"application/xml": components["schemas"]["EmptyEnvelope"];
|
|
@@ -1682,7 +1722,7 @@ export interface paths {
|
|
|
1682
1722
|
};
|
|
1683
1723
|
};
|
|
1684
1724
|
};
|
|
1685
|
-
"/api/v2/ContentService/
|
|
1725
|
+
"/api/v2/ContentService/WebPageCategories/{webPageCategoryId}": {
|
|
1686
1726
|
get: {
|
|
1687
1727
|
parameters: {
|
|
1688
1728
|
query?: {
|
|
@@ -1692,15 +1732,15 @@ export interface paths {
|
|
|
1692
1732
|
"x-api-version"?: string;
|
|
1693
1733
|
};
|
|
1694
1734
|
path: {
|
|
1695
|
-
|
|
1735
|
+
webPageCategoryId: string;
|
|
1696
1736
|
};
|
|
1697
1737
|
};
|
|
1698
1738
|
responses: {
|
|
1699
1739
|
/** @description OK */
|
|
1700
1740
|
200: {
|
|
1701
1741
|
content: {
|
|
1702
|
-
"application/json": components["schemas"]["
|
|
1703
|
-
"application/xml": components["schemas"]["
|
|
1742
|
+
"application/json": components["schemas"]["WebPageCategoryDtoEnvelope"];
|
|
1743
|
+
"application/xml": components["schemas"]["WebPageCategoryDtoEnvelope"];
|
|
1704
1744
|
};
|
|
1705
1745
|
};
|
|
1706
1746
|
/** @description Unauthorized */
|
|
@@ -1719,26 +1759,68 @@ export interface paths {
|
|
|
1719
1759
|
};
|
|
1720
1760
|
};
|
|
1721
1761
|
};
|
|
1722
|
-
|
|
1723
|
-
"/api/v2/ContentService/Portals/{portalId}/Options": {
|
|
1724
|
-
get: {
|
|
1762
|
+
put: {
|
|
1725
1763
|
parameters: {
|
|
1726
|
-
query
|
|
1764
|
+
query: {
|
|
1765
|
+
tenantId: string;
|
|
1766
|
+
"api-version"?: string;
|
|
1767
|
+
};
|
|
1768
|
+
header?: {
|
|
1769
|
+
"x-api-version"?: string;
|
|
1770
|
+
};
|
|
1771
|
+
path: {
|
|
1772
|
+
webPageCategoryId: string;
|
|
1773
|
+
};
|
|
1774
|
+
};
|
|
1775
|
+
requestBody?: {
|
|
1776
|
+
content: {
|
|
1777
|
+
"application/json": components["schemas"]["WebPageCategoryUpdateDto"];
|
|
1778
|
+
"application/xml": components["schemas"]["WebPageCategoryUpdateDto"];
|
|
1779
|
+
};
|
|
1780
|
+
};
|
|
1781
|
+
responses: {
|
|
1782
|
+
/** @description OK */
|
|
1783
|
+
200: {
|
|
1784
|
+
content: {
|
|
1785
|
+
"application/json": components["schemas"]["EmptyEnvelope"];
|
|
1786
|
+
"application/xml": components["schemas"]["EmptyEnvelope"];
|
|
1787
|
+
};
|
|
1788
|
+
};
|
|
1789
|
+
/** @description Unauthorized */
|
|
1790
|
+
401: {
|
|
1791
|
+
content: {
|
|
1792
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
1793
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
1794
|
+
};
|
|
1795
|
+
};
|
|
1796
|
+
/** @description Forbidden */
|
|
1797
|
+
403: {
|
|
1798
|
+
content: {
|
|
1799
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
1800
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
1801
|
+
};
|
|
1802
|
+
};
|
|
1803
|
+
};
|
|
1804
|
+
};
|
|
1805
|
+
delete: {
|
|
1806
|
+
parameters: {
|
|
1807
|
+
query: {
|
|
1808
|
+
tenantId: string;
|
|
1727
1809
|
"api-version"?: string;
|
|
1728
1810
|
};
|
|
1729
1811
|
header?: {
|
|
1730
1812
|
"x-api-version"?: string;
|
|
1731
1813
|
};
|
|
1732
1814
|
path: {
|
|
1733
|
-
|
|
1815
|
+
webPageCategoryId: string;
|
|
1734
1816
|
};
|
|
1735
1817
|
};
|
|
1736
1818
|
responses: {
|
|
1737
1819
|
/** @description OK */
|
|
1738
1820
|
200: {
|
|
1739
1821
|
content: {
|
|
1740
|
-
"application/json": components["schemas"]["
|
|
1741
|
-
"application/xml": components["schemas"]["
|
|
1822
|
+
"application/json": components["schemas"]["EmptyEnvelope"];
|
|
1823
|
+
"application/xml": components["schemas"]["EmptyEnvelope"];
|
|
1742
1824
|
};
|
|
1743
1825
|
};
|
|
1744
1826
|
/** @description Unauthorized */
|
|
@@ -1757,22 +1839,33 @@ export interface paths {
|
|
|
1757
1839
|
};
|
|
1758
1840
|
};
|
|
1759
1841
|
};
|
|
1760
|
-
|
|
1761
|
-
"/api/v2/ContentService/Portals": {
|
|
1762
|
-
/** Create a new web portal */
|
|
1763
|
-
post: operations["CreateWebPortal"];
|
|
1764
|
-
};
|
|
1765
|
-
"/api/v2/ContentService/Themes/Update": {
|
|
1766
|
-
get: {
|
|
1842
|
+
patch: {
|
|
1767
1843
|
parameters: {
|
|
1768
|
-
query
|
|
1844
|
+
query: {
|
|
1845
|
+
tenantId: string;
|
|
1769
1846
|
"api-version"?: string;
|
|
1770
1847
|
};
|
|
1771
1848
|
header?: {
|
|
1772
1849
|
"x-api-version"?: string;
|
|
1773
1850
|
};
|
|
1851
|
+
path: {
|
|
1852
|
+
webPageCategoryId: string;
|
|
1853
|
+
};
|
|
1854
|
+
};
|
|
1855
|
+
requestBody?: {
|
|
1856
|
+
content: {
|
|
1857
|
+
"application/json": components["schemas"]["Operation"][];
|
|
1858
|
+
"application/xml": components["schemas"]["Operation"][];
|
|
1859
|
+
};
|
|
1774
1860
|
};
|
|
1775
1861
|
responses: {
|
|
1862
|
+
/** @description OK */
|
|
1863
|
+
200: {
|
|
1864
|
+
content: {
|
|
1865
|
+
"application/json": components["schemas"]["EmptyEnvelope"];
|
|
1866
|
+
"application/xml": components["schemas"]["EmptyEnvelope"];
|
|
1867
|
+
};
|
|
1868
|
+
};
|
|
1776
1869
|
/** @description Unauthorized */
|
|
1777
1870
|
401: {
|
|
1778
1871
|
content: {
|
|
@@ -1790,7 +1883,7 @@ export interface paths {
|
|
|
1790
1883
|
};
|
|
1791
1884
|
};
|
|
1792
1885
|
};
|
|
1793
|
-
"/api/v2/ContentService/
|
|
1886
|
+
"/api/v2/ContentService/WebPages": {
|
|
1794
1887
|
get: {
|
|
1795
1888
|
parameters: {
|
|
1796
1889
|
query: {
|
|
@@ -1805,8 +1898,8 @@ export interface paths {
|
|
|
1805
1898
|
/** @description OK */
|
|
1806
1899
|
200: {
|
|
1807
1900
|
content: {
|
|
1808
|
-
"application/json": components["schemas"]["
|
|
1809
|
-
"application/xml": components["schemas"]["
|
|
1901
|
+
"application/json": components["schemas"]["WebPageDtoListEnvelope"];
|
|
1902
|
+
"application/xml": components["schemas"]["WebPageDtoListEnvelope"];
|
|
1810
1903
|
};
|
|
1811
1904
|
};
|
|
1812
1905
|
/** @description Unauthorized */
|
|
@@ -1837,8 +1930,8 @@ export interface paths {
|
|
|
1837
1930
|
};
|
|
1838
1931
|
requestBody?: {
|
|
1839
1932
|
content: {
|
|
1840
|
-
"application/json": components["schemas"]["
|
|
1841
|
-
"application/xml": components["schemas"]["
|
|
1933
|
+
"application/json": components["schemas"]["WebPageCreateDto"];
|
|
1934
|
+
"application/xml": components["schemas"]["WebPageCreateDto"];
|
|
1842
1935
|
};
|
|
1843
1936
|
};
|
|
1844
1937
|
responses: {
|
|
@@ -1866,7 +1959,7 @@ export interface paths {
|
|
|
1866
1959
|
};
|
|
1867
1960
|
};
|
|
1868
1961
|
};
|
|
1869
|
-
"/api/v2/ContentService/
|
|
1962
|
+
"/api/v2/ContentService/WebPages/{webPageId}": {
|
|
1870
1963
|
get: {
|
|
1871
1964
|
parameters: {
|
|
1872
1965
|
query?: {
|
|
@@ -1876,15 +1969,15 @@ export interface paths {
|
|
|
1876
1969
|
"x-api-version"?: string;
|
|
1877
1970
|
};
|
|
1878
1971
|
path: {
|
|
1879
|
-
|
|
1972
|
+
webPageId: string;
|
|
1880
1973
|
};
|
|
1881
1974
|
};
|
|
1882
1975
|
responses: {
|
|
1883
1976
|
/** @description OK */
|
|
1884
1977
|
200: {
|
|
1885
1978
|
content: {
|
|
1886
|
-
"application/json": components["schemas"]["
|
|
1887
|
-
"application/xml": components["schemas"]["
|
|
1979
|
+
"application/json": components["schemas"]["WebPageDtoEnvelope"];
|
|
1980
|
+
"application/xml": components["schemas"]["WebPageDtoEnvelope"];
|
|
1888
1981
|
};
|
|
1889
1982
|
};
|
|
1890
1983
|
/** @description Unauthorized */
|
|
@@ -1913,13 +2006,13 @@ export interface paths {
|
|
|
1913
2006
|
"x-api-version"?: string;
|
|
1914
2007
|
};
|
|
1915
2008
|
path: {
|
|
1916
|
-
|
|
2009
|
+
webPageId: string;
|
|
1917
2010
|
};
|
|
1918
2011
|
};
|
|
1919
2012
|
requestBody?: {
|
|
1920
2013
|
content: {
|
|
1921
|
-
"application/json": components["schemas"]["
|
|
1922
|
-
"application/xml": components["schemas"]["
|
|
2014
|
+
"application/json": components["schemas"]["WebPageUpdateDto"];
|
|
2015
|
+
"application/xml": components["schemas"]["WebPageUpdateDto"];
|
|
1923
2016
|
};
|
|
1924
2017
|
};
|
|
1925
2018
|
responses: {
|
|
@@ -1956,7 +2049,7 @@ export interface paths {
|
|
|
1956
2049
|
"x-api-version"?: string;
|
|
1957
2050
|
};
|
|
1958
2051
|
path: {
|
|
1959
|
-
|
|
2052
|
+
webPageId: string;
|
|
1960
2053
|
};
|
|
1961
2054
|
};
|
|
1962
2055
|
responses: {
|
|
@@ -1993,7 +2086,7 @@ export interface paths {
|
|
|
1993
2086
|
"x-api-version"?: string;
|
|
1994
2087
|
};
|
|
1995
2088
|
path: {
|
|
1996
|
-
|
|
2089
|
+
webPageId: string;
|
|
1997
2090
|
};
|
|
1998
2091
|
};
|
|
1999
2092
|
requestBody?: {
|
|
@@ -2027,23 +2120,25 @@ export interface paths {
|
|
|
2027
2120
|
};
|
|
2028
2121
|
};
|
|
2029
2122
|
};
|
|
2030
|
-
"/api/v2/ContentService/
|
|
2123
|
+
"/api/v2/ContentService/WebPages/{webPageId}/Tags": {
|
|
2031
2124
|
get: {
|
|
2032
2125
|
parameters: {
|
|
2033
|
-
query
|
|
2034
|
-
tenantId: string;
|
|
2126
|
+
query?: {
|
|
2035
2127
|
"api-version"?: string;
|
|
2036
2128
|
};
|
|
2037
2129
|
header?: {
|
|
2038
2130
|
"x-api-version"?: string;
|
|
2039
2131
|
};
|
|
2132
|
+
path: {
|
|
2133
|
+
webPageId: string;
|
|
2134
|
+
};
|
|
2040
2135
|
};
|
|
2041
2136
|
responses: {
|
|
2042
2137
|
/** @description OK */
|
|
2043
2138
|
200: {
|
|
2044
2139
|
content: {
|
|
2045
|
-
"application/json": components["schemas"]["
|
|
2046
|
-
"application/xml": components["schemas"]["
|
|
2140
|
+
"application/json": components["schemas"]["WebPageTagDtoListEnvelope"];
|
|
2141
|
+
"application/xml": components["schemas"]["WebPageTagDtoListEnvelope"];
|
|
2047
2142
|
};
|
|
2048
2143
|
};
|
|
2049
2144
|
/** @description Unauthorized */
|
|
@@ -2071,11 +2166,14 @@ export interface paths {
|
|
|
2071
2166
|
header?: {
|
|
2072
2167
|
"x-api-version"?: string;
|
|
2073
2168
|
};
|
|
2169
|
+
path: {
|
|
2170
|
+
webPageId: string;
|
|
2171
|
+
};
|
|
2074
2172
|
};
|
|
2075
2173
|
requestBody?: {
|
|
2076
2174
|
content: {
|
|
2077
|
-
"application/json": components["schemas"]["
|
|
2078
|
-
"application/xml": components["schemas"]["
|
|
2175
|
+
"application/json": components["schemas"]["WebPageTagCreateDto"];
|
|
2176
|
+
"application/xml": components["schemas"]["WebPageTagCreateDto"];
|
|
2079
2177
|
};
|
|
2080
2178
|
};
|
|
2081
2179
|
responses: {
|
|
@@ -2103,25 +2201,27 @@ export interface paths {
|
|
|
2103
2201
|
};
|
|
2104
2202
|
};
|
|
2105
2203
|
};
|
|
2106
|
-
"/api/v2/ContentService/
|
|
2107
|
-
|
|
2204
|
+
"/api/v2/ContentService/WebPages/{webPageId}/Tags/{tagId}": {
|
|
2205
|
+
post: {
|
|
2108
2206
|
parameters: {
|
|
2109
|
-
query
|
|
2207
|
+
query: {
|
|
2208
|
+
tenantId: string;
|
|
2110
2209
|
"api-version"?: string;
|
|
2111
2210
|
};
|
|
2112
2211
|
header?: {
|
|
2113
2212
|
"x-api-version"?: string;
|
|
2114
2213
|
};
|
|
2115
2214
|
path: {
|
|
2116
|
-
|
|
2215
|
+
webPageId: string;
|
|
2216
|
+
tagId: string;
|
|
2117
2217
|
};
|
|
2118
2218
|
};
|
|
2119
2219
|
responses: {
|
|
2120
|
-
/** @description
|
|
2121
|
-
|
|
2220
|
+
/** @description Created */
|
|
2221
|
+
201: {
|
|
2122
2222
|
content: {
|
|
2123
|
-
"application/json": components["schemas"]["
|
|
2124
|
-
"application/xml": components["schemas"]["
|
|
2223
|
+
"application/json": components["schemas"]["EmptyEnvelope"];
|
|
2224
|
+
"application/xml": components["schemas"]["EmptyEnvelope"];
|
|
2125
2225
|
};
|
|
2126
2226
|
};
|
|
2127
2227
|
/** @description Unauthorized */
|
|
@@ -2140,7 +2240,7 @@ export interface paths {
|
|
|
2140
2240
|
};
|
|
2141
2241
|
};
|
|
2142
2242
|
};
|
|
2143
|
-
|
|
2243
|
+
delete: {
|
|
2144
2244
|
parameters: {
|
|
2145
2245
|
query: {
|
|
2146
2246
|
tenantId: string;
|
|
@@ -2150,13 +2250,8 @@ export interface paths {
|
|
|
2150
2250
|
"x-api-version"?: string;
|
|
2151
2251
|
};
|
|
2152
2252
|
path: {
|
|
2153
|
-
|
|
2154
|
-
|
|
2155
|
-
};
|
|
2156
|
-
requestBody?: {
|
|
2157
|
-
content: {
|
|
2158
|
-
"application/json": components["schemas"]["WebPageCategoryUpdateDto"];
|
|
2159
|
-
"application/xml": components["schemas"]["WebPageCategoryUpdateDto"];
|
|
2253
|
+
webPageId: string;
|
|
2254
|
+
tagId: string;
|
|
2160
2255
|
};
|
|
2161
2256
|
};
|
|
2162
2257
|
responses: {
|
|
@@ -2183,25 +2278,26 @@ export interface paths {
|
|
|
2183
2278
|
};
|
|
2184
2279
|
};
|
|
2185
2280
|
};
|
|
2186
|
-
|
|
2281
|
+
};
|
|
2282
|
+
"/api/v2/ContentService/WebPages/{webPageId}/Categories": {
|
|
2283
|
+
get: {
|
|
2187
2284
|
parameters: {
|
|
2188
|
-
query
|
|
2189
|
-
tenantId: string;
|
|
2285
|
+
query?: {
|
|
2190
2286
|
"api-version"?: string;
|
|
2191
2287
|
};
|
|
2192
2288
|
header?: {
|
|
2193
2289
|
"x-api-version"?: string;
|
|
2194
2290
|
};
|
|
2195
2291
|
path: {
|
|
2196
|
-
|
|
2292
|
+
webPageId: string;
|
|
2197
2293
|
};
|
|
2198
2294
|
};
|
|
2199
2295
|
responses: {
|
|
2200
2296
|
/** @description OK */
|
|
2201
2297
|
200: {
|
|
2202
2298
|
content: {
|
|
2203
|
-
"application/json": components["schemas"]["
|
|
2204
|
-
"application/xml": components["schemas"]["
|
|
2299
|
+
"application/json": components["schemas"]["WebPageCategoryDtoListEnvelope"];
|
|
2300
|
+
"application/xml": components["schemas"]["WebPageCategoryDtoListEnvelope"];
|
|
2205
2301
|
};
|
|
2206
2302
|
};
|
|
2207
2303
|
/** @description Unauthorized */
|
|
@@ -2220,7 +2316,7 @@ export interface paths {
|
|
|
2220
2316
|
};
|
|
2221
2317
|
};
|
|
2222
2318
|
};
|
|
2223
|
-
|
|
2319
|
+
post: {
|
|
2224
2320
|
parameters: {
|
|
2225
2321
|
query: {
|
|
2226
2322
|
tenantId: string;
|
|
@@ -2230,18 +2326,18 @@ export interface paths {
|
|
|
2230
2326
|
"x-api-version"?: string;
|
|
2231
2327
|
};
|
|
2232
2328
|
path: {
|
|
2233
|
-
|
|
2329
|
+
webPageId: string;
|
|
2234
2330
|
};
|
|
2235
2331
|
};
|
|
2236
2332
|
requestBody?: {
|
|
2237
2333
|
content: {
|
|
2238
|
-
"application/json": components["schemas"]["
|
|
2239
|
-
"application/xml": components["schemas"]["
|
|
2334
|
+
"application/json": components["schemas"]["WebPageCategoryCreateDto"];
|
|
2335
|
+
"application/xml": components["schemas"]["WebPageCategoryCreateDto"];
|
|
2240
2336
|
};
|
|
2241
2337
|
};
|
|
2242
2338
|
responses: {
|
|
2243
|
-
/** @description
|
|
2244
|
-
|
|
2339
|
+
/** @description Created */
|
|
2340
|
+
201: {
|
|
2245
2341
|
content: {
|
|
2246
2342
|
"application/json": components["schemas"]["EmptyEnvelope"];
|
|
2247
2343
|
"application/xml": components["schemas"]["EmptyEnvelope"];
|
|
@@ -2264,41 +2360,7 @@ export interface paths {
|
|
|
2264
2360
|
};
|
|
2265
2361
|
};
|
|
2266
2362
|
};
|
|
2267
|
-
"/api/v2/ContentService/WebPages": {
|
|
2268
|
-
get: {
|
|
2269
|
-
parameters: {
|
|
2270
|
-
query: {
|
|
2271
|
-
tenantId: string;
|
|
2272
|
-
"api-version"?: string;
|
|
2273
|
-
};
|
|
2274
|
-
header?: {
|
|
2275
|
-
"x-api-version"?: string;
|
|
2276
|
-
};
|
|
2277
|
-
};
|
|
2278
|
-
responses: {
|
|
2279
|
-
/** @description OK */
|
|
2280
|
-
200: {
|
|
2281
|
-
content: {
|
|
2282
|
-
"application/json": components["schemas"]["WebPageDtoListEnvelope"];
|
|
2283
|
-
"application/xml": components["schemas"]["WebPageDtoListEnvelope"];
|
|
2284
|
-
};
|
|
2285
|
-
};
|
|
2286
|
-
/** @description Unauthorized */
|
|
2287
|
-
401: {
|
|
2288
|
-
content: {
|
|
2289
|
-
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
2290
|
-
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
2291
|
-
};
|
|
2292
|
-
};
|
|
2293
|
-
/** @description Forbidden */
|
|
2294
|
-
403: {
|
|
2295
|
-
content: {
|
|
2296
|
-
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
2297
|
-
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
2298
|
-
};
|
|
2299
|
-
};
|
|
2300
|
-
};
|
|
2301
|
-
};
|
|
2363
|
+
"/api/v2/ContentService/WebPages/{webPageId}/Categories/{categoryId}": {
|
|
2302
2364
|
post: {
|
|
2303
2365
|
parameters: {
|
|
2304
2366
|
query: {
|
|
@@ -2308,11 +2370,9 @@ export interface paths {
|
|
|
2308
2370
|
header?: {
|
|
2309
2371
|
"x-api-version"?: string;
|
|
2310
2372
|
};
|
|
2311
|
-
|
|
2312
|
-
|
|
2313
|
-
|
|
2314
|
-
"application/json": components["schemas"]["WebPageCreateDto"];
|
|
2315
|
-
"application/xml": components["schemas"]["WebPageCreateDto"];
|
|
2373
|
+
path: {
|
|
2374
|
+
webPageId: string;
|
|
2375
|
+
categoryId: string;
|
|
2316
2376
|
};
|
|
2317
2377
|
};
|
|
2318
2378
|
responses: {
|
|
@@ -2339,45 +2399,7 @@ export interface paths {
|
|
|
2339
2399
|
};
|
|
2340
2400
|
};
|
|
2341
2401
|
};
|
|
2342
|
-
|
|
2343
|
-
"/api/v2/ContentService/WebPages/{webPageId}": {
|
|
2344
|
-
get: {
|
|
2345
|
-
parameters: {
|
|
2346
|
-
query?: {
|
|
2347
|
-
"api-version"?: string;
|
|
2348
|
-
};
|
|
2349
|
-
header?: {
|
|
2350
|
-
"x-api-version"?: string;
|
|
2351
|
-
};
|
|
2352
|
-
path: {
|
|
2353
|
-
webPageId: string;
|
|
2354
|
-
};
|
|
2355
|
-
};
|
|
2356
|
-
responses: {
|
|
2357
|
-
/** @description OK */
|
|
2358
|
-
200: {
|
|
2359
|
-
content: {
|
|
2360
|
-
"application/json": components["schemas"]["WebPageDtoEnvelope"];
|
|
2361
|
-
"application/xml": components["schemas"]["WebPageDtoEnvelope"];
|
|
2362
|
-
};
|
|
2363
|
-
};
|
|
2364
|
-
/** @description Unauthorized */
|
|
2365
|
-
401: {
|
|
2366
|
-
content: {
|
|
2367
|
-
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
2368
|
-
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
2369
|
-
};
|
|
2370
|
-
};
|
|
2371
|
-
/** @description Forbidden */
|
|
2372
|
-
403: {
|
|
2373
|
-
content: {
|
|
2374
|
-
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
2375
|
-
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
2376
|
-
};
|
|
2377
|
-
};
|
|
2378
|
-
};
|
|
2379
|
-
};
|
|
2380
|
-
put: {
|
|
2402
|
+
delete: {
|
|
2381
2403
|
parameters: {
|
|
2382
2404
|
query: {
|
|
2383
2405
|
tenantId: string;
|
|
@@ -2388,12 +2410,7 @@ export interface paths {
|
|
|
2388
2410
|
};
|
|
2389
2411
|
path: {
|
|
2390
2412
|
webPageId: string;
|
|
2391
|
-
|
|
2392
|
-
};
|
|
2393
|
-
requestBody?: {
|
|
2394
|
-
content: {
|
|
2395
|
-
"application/json": components["schemas"]["WebPageUpdateDto"];
|
|
2396
|
-
"application/xml": components["schemas"]["WebPageUpdateDto"];
|
|
2413
|
+
categoryId: string;
|
|
2397
2414
|
};
|
|
2398
2415
|
};
|
|
2399
2416
|
responses: {
|
|
@@ -2420,7 +2437,9 @@ export interface paths {
|
|
|
2420
2437
|
};
|
|
2421
2438
|
};
|
|
2422
2439
|
};
|
|
2423
|
-
|
|
2440
|
+
};
|
|
2441
|
+
"/api/v2/ContentService/WebPageTags": {
|
|
2442
|
+
get: {
|
|
2424
2443
|
parameters: {
|
|
2425
2444
|
query: {
|
|
2426
2445
|
tenantId: string;
|
|
@@ -2429,16 +2448,13 @@ export interface paths {
|
|
|
2429
2448
|
header?: {
|
|
2430
2449
|
"x-api-version"?: string;
|
|
2431
2450
|
};
|
|
2432
|
-
path: {
|
|
2433
|
-
webPageId: string;
|
|
2434
|
-
};
|
|
2435
2451
|
};
|
|
2436
2452
|
responses: {
|
|
2437
2453
|
/** @description OK */
|
|
2438
2454
|
200: {
|
|
2439
2455
|
content: {
|
|
2440
|
-
"application/json": components["schemas"]["
|
|
2441
|
-
"application/xml": components["schemas"]["
|
|
2456
|
+
"application/json": components["schemas"]["WebPageTagDtoListEnvelope"];
|
|
2457
|
+
"application/xml": components["schemas"]["WebPageTagDtoListEnvelope"];
|
|
2442
2458
|
};
|
|
2443
2459
|
};
|
|
2444
2460
|
/** @description Unauthorized */
|
|
@@ -2457,7 +2473,7 @@ export interface paths {
|
|
|
2457
2473
|
};
|
|
2458
2474
|
};
|
|
2459
2475
|
};
|
|
2460
|
-
|
|
2476
|
+
post: {
|
|
2461
2477
|
parameters: {
|
|
2462
2478
|
query: {
|
|
2463
2479
|
tenantId: string;
|
|
@@ -2466,19 +2482,16 @@ export interface paths {
|
|
|
2466
2482
|
header?: {
|
|
2467
2483
|
"x-api-version"?: string;
|
|
2468
2484
|
};
|
|
2469
|
-
path: {
|
|
2470
|
-
webPageId: string;
|
|
2471
|
-
};
|
|
2472
2485
|
};
|
|
2473
2486
|
requestBody?: {
|
|
2474
2487
|
content: {
|
|
2475
|
-
"application/json": components["schemas"]["
|
|
2476
|
-
"application/xml": components["schemas"]["
|
|
2488
|
+
"application/json": components["schemas"]["WebPageTagCreateDto"];
|
|
2489
|
+
"application/xml": components["schemas"]["WebPageTagCreateDto"];
|
|
2477
2490
|
};
|
|
2478
2491
|
};
|
|
2479
2492
|
responses: {
|
|
2480
|
-
/** @description
|
|
2481
|
-
|
|
2493
|
+
/** @description Created */
|
|
2494
|
+
201: {
|
|
2482
2495
|
content: {
|
|
2483
2496
|
"application/json": components["schemas"]["EmptyEnvelope"];
|
|
2484
2497
|
"application/xml": components["schemas"]["EmptyEnvelope"];
|
|
@@ -2501,7 +2514,7 @@ export interface paths {
|
|
|
2501
2514
|
};
|
|
2502
2515
|
};
|
|
2503
2516
|
};
|
|
2504
|
-
"/api/v2/ContentService/
|
|
2517
|
+
"/api/v2/ContentService/WebPageTags/{webPageTagId}": {
|
|
2505
2518
|
get: {
|
|
2506
2519
|
parameters: {
|
|
2507
2520
|
query?: {
|
|
@@ -2511,15 +2524,15 @@ export interface paths {
|
|
|
2511
2524
|
"x-api-version"?: string;
|
|
2512
2525
|
};
|
|
2513
2526
|
path: {
|
|
2514
|
-
|
|
2527
|
+
webPageTagId: string;
|
|
2515
2528
|
};
|
|
2516
2529
|
};
|
|
2517
2530
|
responses: {
|
|
2518
2531
|
/** @description OK */
|
|
2519
2532
|
200: {
|
|
2520
2533
|
content: {
|
|
2521
|
-
"application/json": components["schemas"]["
|
|
2522
|
-
"application/xml": components["schemas"]["
|
|
2534
|
+
"application/json": components["schemas"]["WebPageTagDtoEnvelope"];
|
|
2535
|
+
"application/xml": components["schemas"]["WebPageTagDtoEnvelope"];
|
|
2523
2536
|
};
|
|
2524
2537
|
};
|
|
2525
2538
|
/** @description Unauthorized */
|
|
@@ -2538,7 +2551,7 @@ export interface paths {
|
|
|
2538
2551
|
};
|
|
2539
2552
|
};
|
|
2540
2553
|
};
|
|
2541
|
-
|
|
2554
|
+
put: {
|
|
2542
2555
|
parameters: {
|
|
2543
2556
|
query: {
|
|
2544
2557
|
tenantId: string;
|
|
@@ -2548,18 +2561,18 @@ export interface paths {
|
|
|
2548
2561
|
"x-api-version"?: string;
|
|
2549
2562
|
};
|
|
2550
2563
|
path: {
|
|
2551
|
-
|
|
2564
|
+
webPageTagId: string;
|
|
2552
2565
|
};
|
|
2553
2566
|
};
|
|
2554
2567
|
requestBody?: {
|
|
2555
2568
|
content: {
|
|
2556
|
-
"application/json": components["schemas"]["
|
|
2557
|
-
"application/xml": components["schemas"]["
|
|
2569
|
+
"application/json": components["schemas"]["WebPageTagUpdateDto"];
|
|
2570
|
+
"application/xml": components["schemas"]["WebPageTagUpdateDto"];
|
|
2558
2571
|
};
|
|
2559
2572
|
};
|
|
2560
2573
|
responses: {
|
|
2561
|
-
/** @description
|
|
2562
|
-
|
|
2574
|
+
/** @description OK */
|
|
2575
|
+
200: {
|
|
2563
2576
|
content: {
|
|
2564
2577
|
"application/json": components["schemas"]["EmptyEnvelope"];
|
|
2565
2578
|
"application/xml": components["schemas"]["EmptyEnvelope"];
|
|
@@ -2581,9 +2594,7 @@ export interface paths {
|
|
|
2581
2594
|
};
|
|
2582
2595
|
};
|
|
2583
2596
|
};
|
|
2584
|
-
|
|
2585
|
-
"/api/v2/ContentService/WebPages/{webPageId}/Tags/{tagId}": {
|
|
2586
|
-
post: {
|
|
2597
|
+
delete: {
|
|
2587
2598
|
parameters: {
|
|
2588
2599
|
query: {
|
|
2589
2600
|
tenantId: string;
|
|
@@ -2593,13 +2604,12 @@ export interface paths {
|
|
|
2593
2604
|
"x-api-version"?: string;
|
|
2594
2605
|
};
|
|
2595
2606
|
path: {
|
|
2596
|
-
|
|
2597
|
-
tagId: string;
|
|
2607
|
+
webPageTagId: string;
|
|
2598
2608
|
};
|
|
2599
2609
|
};
|
|
2600
2610
|
responses: {
|
|
2601
|
-
/** @description
|
|
2602
|
-
|
|
2611
|
+
/** @description OK */
|
|
2612
|
+
200: {
|
|
2603
2613
|
content: {
|
|
2604
2614
|
"application/json": components["schemas"]["EmptyEnvelope"];
|
|
2605
2615
|
"application/xml": components["schemas"]["EmptyEnvelope"];
|
|
@@ -2621,7 +2631,7 @@ export interface paths {
|
|
|
2621
2631
|
};
|
|
2622
2632
|
};
|
|
2623
2633
|
};
|
|
2624
|
-
|
|
2634
|
+
patch: {
|
|
2625
2635
|
parameters: {
|
|
2626
2636
|
query: {
|
|
2627
2637
|
tenantId: string;
|
|
@@ -2631,8 +2641,13 @@ export interface paths {
|
|
|
2631
2641
|
"x-api-version"?: string;
|
|
2632
2642
|
};
|
|
2633
2643
|
path: {
|
|
2634
|
-
|
|
2635
|
-
|
|
2644
|
+
webPageTagId: string;
|
|
2645
|
+
};
|
|
2646
|
+
};
|
|
2647
|
+
requestBody?: {
|
|
2648
|
+
content: {
|
|
2649
|
+
"application/json": components["schemas"]["Operation"][];
|
|
2650
|
+
"application/xml": components["schemas"]["Operation"][];
|
|
2636
2651
|
};
|
|
2637
2652
|
};
|
|
2638
2653
|
responses: {
|
|
@@ -2660,415 +2675,19 @@ export interface paths {
|
|
|
2660
2675
|
};
|
|
2661
2676
|
};
|
|
2662
2677
|
};
|
|
2663
|
-
|
|
2664
|
-
|
|
2665
|
-
|
|
2666
|
-
|
|
2667
|
-
|
|
2668
|
-
|
|
2669
|
-
|
|
2670
|
-
|
|
2671
|
-
|
|
2672
|
-
|
|
2673
|
-
|
|
2674
|
-
|
|
2675
|
-
|
|
2676
|
-
responses: {
|
|
2677
|
-
/** @description OK */
|
|
2678
|
-
200: {
|
|
2679
|
-
content: {
|
|
2680
|
-
"application/json": components["schemas"]["WebPageCategoryDtoListEnvelope"];
|
|
2681
|
-
"application/xml": components["schemas"]["WebPageCategoryDtoListEnvelope"];
|
|
2682
|
-
};
|
|
2683
|
-
};
|
|
2684
|
-
/** @description Unauthorized */
|
|
2685
|
-
401: {
|
|
2686
|
-
content: {
|
|
2687
|
-
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
2688
|
-
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
2689
|
-
};
|
|
2690
|
-
};
|
|
2691
|
-
/** @description Forbidden */
|
|
2692
|
-
403: {
|
|
2693
|
-
content: {
|
|
2694
|
-
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
2695
|
-
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
2696
|
-
};
|
|
2697
|
-
};
|
|
2698
|
-
};
|
|
2699
|
-
};
|
|
2700
|
-
post: {
|
|
2701
|
-
parameters: {
|
|
2702
|
-
query: {
|
|
2703
|
-
tenantId: string;
|
|
2704
|
-
"api-version"?: string;
|
|
2705
|
-
};
|
|
2706
|
-
header?: {
|
|
2707
|
-
"x-api-version"?: string;
|
|
2708
|
-
};
|
|
2709
|
-
path: {
|
|
2710
|
-
webPageId: string;
|
|
2711
|
-
};
|
|
2712
|
-
};
|
|
2713
|
-
requestBody?: {
|
|
2714
|
-
content: {
|
|
2715
|
-
"application/json": components["schemas"]["WebPageCategoryCreateDto"];
|
|
2716
|
-
"application/xml": components["schemas"]["WebPageCategoryCreateDto"];
|
|
2717
|
-
};
|
|
2718
|
-
};
|
|
2719
|
-
responses: {
|
|
2720
|
-
/** @description Created */
|
|
2721
|
-
201: {
|
|
2722
|
-
content: {
|
|
2723
|
-
"application/json": components["schemas"]["EmptyEnvelope"];
|
|
2724
|
-
"application/xml": components["schemas"]["EmptyEnvelope"];
|
|
2725
|
-
};
|
|
2726
|
-
};
|
|
2727
|
-
/** @description Unauthorized */
|
|
2728
|
-
401: {
|
|
2729
|
-
content: {
|
|
2730
|
-
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
2731
|
-
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
2732
|
-
};
|
|
2733
|
-
};
|
|
2734
|
-
/** @description Forbidden */
|
|
2735
|
-
403: {
|
|
2736
|
-
content: {
|
|
2737
|
-
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
2738
|
-
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
2739
|
-
};
|
|
2740
|
-
};
|
|
2741
|
-
};
|
|
2742
|
-
};
|
|
2743
|
-
};
|
|
2744
|
-
"/api/v2/ContentService/WebPages/{webPageId}/Categories/{categoryId}": {
|
|
2745
|
-
post: {
|
|
2746
|
-
parameters: {
|
|
2747
|
-
query: {
|
|
2748
|
-
tenantId: string;
|
|
2749
|
-
"api-version"?: string;
|
|
2750
|
-
};
|
|
2751
|
-
header?: {
|
|
2752
|
-
"x-api-version"?: string;
|
|
2753
|
-
};
|
|
2754
|
-
path: {
|
|
2755
|
-
webPageId: string;
|
|
2756
|
-
categoryId: string;
|
|
2757
|
-
};
|
|
2758
|
-
};
|
|
2759
|
-
responses: {
|
|
2760
|
-
/** @description Created */
|
|
2761
|
-
201: {
|
|
2762
|
-
content: {
|
|
2763
|
-
"application/json": components["schemas"]["EmptyEnvelope"];
|
|
2764
|
-
"application/xml": components["schemas"]["EmptyEnvelope"];
|
|
2765
|
-
};
|
|
2766
|
-
};
|
|
2767
|
-
/** @description Unauthorized */
|
|
2768
|
-
401: {
|
|
2769
|
-
content: {
|
|
2770
|
-
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
2771
|
-
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
2772
|
-
};
|
|
2773
|
-
};
|
|
2774
|
-
/** @description Forbidden */
|
|
2775
|
-
403: {
|
|
2776
|
-
content: {
|
|
2777
|
-
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
2778
|
-
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
2779
|
-
};
|
|
2780
|
-
};
|
|
2781
|
-
};
|
|
2782
|
-
};
|
|
2783
|
-
delete: {
|
|
2784
|
-
parameters: {
|
|
2785
|
-
query: {
|
|
2786
|
-
tenantId: string;
|
|
2787
|
-
"api-version"?: string;
|
|
2788
|
-
};
|
|
2789
|
-
header?: {
|
|
2790
|
-
"x-api-version"?: string;
|
|
2791
|
-
};
|
|
2792
|
-
path: {
|
|
2793
|
-
webPageId: string;
|
|
2794
|
-
categoryId: string;
|
|
2795
|
-
};
|
|
2796
|
-
};
|
|
2797
|
-
responses: {
|
|
2798
|
-
/** @description OK */
|
|
2799
|
-
200: {
|
|
2800
|
-
content: {
|
|
2801
|
-
"application/json": components["schemas"]["EmptyEnvelope"];
|
|
2802
|
-
"application/xml": components["schemas"]["EmptyEnvelope"];
|
|
2803
|
-
};
|
|
2804
|
-
};
|
|
2805
|
-
/** @description Unauthorized */
|
|
2806
|
-
401: {
|
|
2807
|
-
content: {
|
|
2808
|
-
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
2809
|
-
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
2810
|
-
};
|
|
2811
|
-
};
|
|
2812
|
-
/** @description Forbidden */
|
|
2813
|
-
403: {
|
|
2814
|
-
content: {
|
|
2815
|
-
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
2816
|
-
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
2817
|
-
};
|
|
2818
|
-
};
|
|
2819
|
-
};
|
|
2820
|
-
};
|
|
2821
|
-
};
|
|
2822
|
-
"/api/v2/ContentService/WebPageTags": {
|
|
2823
|
-
get: {
|
|
2824
|
-
parameters: {
|
|
2825
|
-
query: {
|
|
2826
|
-
tenantId: string;
|
|
2827
|
-
"api-version"?: string;
|
|
2828
|
-
};
|
|
2829
|
-
header?: {
|
|
2830
|
-
"x-api-version"?: string;
|
|
2831
|
-
};
|
|
2832
|
-
};
|
|
2833
|
-
responses: {
|
|
2834
|
-
/** @description OK */
|
|
2835
|
-
200: {
|
|
2836
|
-
content: {
|
|
2837
|
-
"application/json": components["schemas"]["WebPageTagDtoListEnvelope"];
|
|
2838
|
-
"application/xml": components["schemas"]["WebPageTagDtoListEnvelope"];
|
|
2839
|
-
};
|
|
2840
|
-
};
|
|
2841
|
-
/** @description Unauthorized */
|
|
2842
|
-
401: {
|
|
2843
|
-
content: {
|
|
2844
|
-
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
2845
|
-
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
2846
|
-
};
|
|
2847
|
-
};
|
|
2848
|
-
/** @description Forbidden */
|
|
2849
|
-
403: {
|
|
2850
|
-
content: {
|
|
2851
|
-
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
2852
|
-
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
2853
|
-
};
|
|
2854
|
-
};
|
|
2855
|
-
};
|
|
2856
|
-
};
|
|
2857
|
-
post: {
|
|
2858
|
-
parameters: {
|
|
2859
|
-
query: {
|
|
2860
|
-
tenantId: string;
|
|
2861
|
-
"api-version"?: string;
|
|
2862
|
-
};
|
|
2863
|
-
header?: {
|
|
2864
|
-
"x-api-version"?: string;
|
|
2865
|
-
};
|
|
2866
|
-
};
|
|
2867
|
-
requestBody?: {
|
|
2868
|
-
content: {
|
|
2869
|
-
"application/json": components["schemas"]["WebPageTagCreateDto"];
|
|
2870
|
-
"application/xml": components["schemas"]["WebPageTagCreateDto"];
|
|
2871
|
-
};
|
|
2872
|
-
};
|
|
2873
|
-
responses: {
|
|
2874
|
-
/** @description Created */
|
|
2875
|
-
201: {
|
|
2876
|
-
content: {
|
|
2877
|
-
"application/json": components["schemas"]["EmptyEnvelope"];
|
|
2878
|
-
"application/xml": components["schemas"]["EmptyEnvelope"];
|
|
2879
|
-
};
|
|
2880
|
-
};
|
|
2881
|
-
/** @description Unauthorized */
|
|
2882
|
-
401: {
|
|
2883
|
-
content: {
|
|
2884
|
-
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
2885
|
-
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
2886
|
-
};
|
|
2887
|
-
};
|
|
2888
|
-
/** @description Forbidden */
|
|
2889
|
-
403: {
|
|
2890
|
-
content: {
|
|
2891
|
-
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
2892
|
-
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
2893
|
-
};
|
|
2894
|
-
};
|
|
2895
|
-
};
|
|
2896
|
-
};
|
|
2897
|
-
};
|
|
2898
|
-
"/api/v2/ContentService/WebPageTags/{webPageTagId}": {
|
|
2899
|
-
get: {
|
|
2900
|
-
parameters: {
|
|
2901
|
-
query?: {
|
|
2902
|
-
"api-version"?: string;
|
|
2903
|
-
};
|
|
2904
|
-
header?: {
|
|
2905
|
-
"x-api-version"?: string;
|
|
2906
|
-
};
|
|
2907
|
-
path: {
|
|
2908
|
-
webPageTagId: string;
|
|
2909
|
-
};
|
|
2910
|
-
};
|
|
2911
|
-
responses: {
|
|
2912
|
-
/** @description OK */
|
|
2913
|
-
200: {
|
|
2914
|
-
content: {
|
|
2915
|
-
"application/json": components["schemas"]["WebPageTagDtoEnvelope"];
|
|
2916
|
-
"application/xml": components["schemas"]["WebPageTagDtoEnvelope"];
|
|
2917
|
-
};
|
|
2918
|
-
};
|
|
2919
|
-
/** @description Unauthorized */
|
|
2920
|
-
401: {
|
|
2921
|
-
content: {
|
|
2922
|
-
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
2923
|
-
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
2924
|
-
};
|
|
2925
|
-
};
|
|
2926
|
-
/** @description Forbidden */
|
|
2927
|
-
403: {
|
|
2928
|
-
content: {
|
|
2929
|
-
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
2930
|
-
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
2931
|
-
};
|
|
2932
|
-
};
|
|
2933
|
-
};
|
|
2934
|
-
};
|
|
2935
|
-
put: {
|
|
2936
|
-
parameters: {
|
|
2937
|
-
query: {
|
|
2938
|
-
tenantId: string;
|
|
2939
|
-
"api-version"?: string;
|
|
2940
|
-
};
|
|
2941
|
-
header?: {
|
|
2942
|
-
"x-api-version"?: string;
|
|
2943
|
-
};
|
|
2944
|
-
path: {
|
|
2945
|
-
webPageTagId: string;
|
|
2946
|
-
};
|
|
2947
|
-
};
|
|
2948
|
-
requestBody?: {
|
|
2949
|
-
content: {
|
|
2950
|
-
"application/json": components["schemas"]["WebPageTagUpdateDto"];
|
|
2951
|
-
"application/xml": components["schemas"]["WebPageTagUpdateDto"];
|
|
2952
|
-
};
|
|
2953
|
-
};
|
|
2954
|
-
responses: {
|
|
2955
|
-
/** @description OK */
|
|
2956
|
-
200: {
|
|
2957
|
-
content: {
|
|
2958
|
-
"application/json": components["schemas"]["EmptyEnvelope"];
|
|
2959
|
-
"application/xml": components["schemas"]["EmptyEnvelope"];
|
|
2960
|
-
};
|
|
2961
|
-
};
|
|
2962
|
-
/** @description Unauthorized */
|
|
2963
|
-
401: {
|
|
2964
|
-
content: {
|
|
2965
|
-
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
2966
|
-
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
2967
|
-
};
|
|
2968
|
-
};
|
|
2969
|
-
/** @description Forbidden */
|
|
2970
|
-
403: {
|
|
2971
|
-
content: {
|
|
2972
|
-
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
2973
|
-
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
2974
|
-
};
|
|
2975
|
-
};
|
|
2976
|
-
};
|
|
2977
|
-
};
|
|
2978
|
-
delete: {
|
|
2979
|
-
parameters: {
|
|
2980
|
-
query: {
|
|
2981
|
-
tenantId: string;
|
|
2982
|
-
"api-version"?: string;
|
|
2983
|
-
};
|
|
2984
|
-
header?: {
|
|
2985
|
-
"x-api-version"?: string;
|
|
2986
|
-
};
|
|
2987
|
-
path: {
|
|
2988
|
-
webPageTagId: string;
|
|
2989
|
-
};
|
|
2990
|
-
};
|
|
2991
|
-
responses: {
|
|
2992
|
-
/** @description OK */
|
|
2993
|
-
200: {
|
|
2994
|
-
content: {
|
|
2995
|
-
"application/json": components["schemas"]["EmptyEnvelope"];
|
|
2996
|
-
"application/xml": components["schemas"]["EmptyEnvelope"];
|
|
2997
|
-
};
|
|
2998
|
-
};
|
|
2999
|
-
/** @description Unauthorized */
|
|
3000
|
-
401: {
|
|
3001
|
-
content: {
|
|
3002
|
-
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
3003
|
-
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
3004
|
-
};
|
|
3005
|
-
};
|
|
3006
|
-
/** @description Forbidden */
|
|
3007
|
-
403: {
|
|
3008
|
-
content: {
|
|
3009
|
-
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
3010
|
-
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
3011
|
-
};
|
|
3012
|
-
};
|
|
3013
|
-
};
|
|
3014
|
-
};
|
|
3015
|
-
patch: {
|
|
3016
|
-
parameters: {
|
|
3017
|
-
query: {
|
|
3018
|
-
tenantId: string;
|
|
3019
|
-
"api-version"?: string;
|
|
3020
|
-
};
|
|
3021
|
-
header?: {
|
|
3022
|
-
"x-api-version"?: string;
|
|
3023
|
-
};
|
|
3024
|
-
path: {
|
|
3025
|
-
webPageTagId: string;
|
|
3026
|
-
};
|
|
3027
|
-
};
|
|
3028
|
-
requestBody?: {
|
|
3029
|
-
content: {
|
|
3030
|
-
"application/json": components["schemas"]["Operation"][];
|
|
3031
|
-
"application/xml": components["schemas"]["Operation"][];
|
|
3032
|
-
};
|
|
3033
|
-
};
|
|
3034
|
-
responses: {
|
|
3035
|
-
/** @description OK */
|
|
3036
|
-
200: {
|
|
3037
|
-
content: {
|
|
3038
|
-
"application/json": components["schemas"]["EmptyEnvelope"];
|
|
3039
|
-
"application/xml": components["schemas"]["EmptyEnvelope"];
|
|
3040
|
-
};
|
|
3041
|
-
};
|
|
3042
|
-
/** @description Unauthorized */
|
|
3043
|
-
401: {
|
|
3044
|
-
content: {
|
|
3045
|
-
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
3046
|
-
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
3047
|
-
};
|
|
3048
|
-
};
|
|
3049
|
-
/** @description Forbidden */
|
|
3050
|
-
403: {
|
|
3051
|
-
content: {
|
|
3052
|
-
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
3053
|
-
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
3054
|
-
};
|
|
3055
|
-
};
|
|
3056
|
-
};
|
|
3057
|
-
};
|
|
3058
|
-
};
|
|
3059
|
-
}
|
|
3060
|
-
|
|
3061
|
-
export type webhooks = Record<string, never>;
|
|
3062
|
-
|
|
3063
|
-
export interface components {
|
|
3064
|
-
schemas: {
|
|
3065
|
-
AdvancedOptions: {
|
|
3066
|
-
homePageID?: string | null;
|
|
3067
|
-
cartPageID?: string | null;
|
|
3068
|
-
checkoutPageID?: string | null;
|
|
3069
|
-
privacyPolicyPageID?: string | null;
|
|
3070
|
-
customerAccountPageID?: string | null;
|
|
3071
|
-
termsAndConditionsPageID?: string | null;
|
|
2678
|
+
}
|
|
2679
|
+
|
|
2680
|
+
export type webhooks = Record<string, never>;
|
|
2681
|
+
|
|
2682
|
+
export interface components {
|
|
2683
|
+
schemas: {
|
|
2684
|
+
AdvancedOptions: {
|
|
2685
|
+
homePageID?: string | null;
|
|
2686
|
+
cartPageID?: string | null;
|
|
2687
|
+
checkoutPageID?: string | null;
|
|
2688
|
+
privacyPolicyPageID?: string | null;
|
|
2689
|
+
customerAccountPageID?: string | null;
|
|
2690
|
+
termsAndConditionsPageID?: string | null;
|
|
3072
2691
|
};
|
|
3073
2692
|
AllianceBusinessSuiteIntegrationOptions: {
|
|
3074
2693
|
enable?: boolean;
|
|
@@ -4762,185 +4381,599 @@ export interface components {
|
|
|
4762
4381
|
slug?: string | null;
|
|
4763
4382
|
title?: string | null;
|
|
4764
4383
|
description?: string | null;
|
|
4765
|
-
seoTitle?: string | null;
|
|
4766
|
-
metaDescription?: string | null;
|
|
4767
|
-
cornerstoneContent?: boolean;
|
|
4768
|
-
allowSerachEngines?: boolean;
|
|
4769
|
-
seoKeyPhrases?: string | null;
|
|
4770
|
-
canonicalUrl?: string | null;
|
|
4771
|
-
imageURL?: string | null;
|
|
4772
|
-
image?: string | null;
|
|
4773
|
-
webPortalID?: string | null;
|
|
4774
|
-
businessID?: string | null;
|
|
4384
|
+
seoTitle?: string | null;
|
|
4385
|
+
metaDescription?: string | null;
|
|
4386
|
+
cornerstoneContent?: boolean;
|
|
4387
|
+
allowSerachEngines?: boolean;
|
|
4388
|
+
seoKeyPhrases?: string | null;
|
|
4389
|
+
canonicalUrl?: string | null;
|
|
4390
|
+
imageURL?: string | null;
|
|
4391
|
+
image?: string | null;
|
|
4392
|
+
webPortalID?: string | null;
|
|
4393
|
+
businessID?: string | null;
|
|
4394
|
+
businessProfileRecordID?: string | null;
|
|
4395
|
+
};
|
|
4396
|
+
WebPageTagDtoEnvelope: {
|
|
4397
|
+
isSuccess?: boolean;
|
|
4398
|
+
errorMessage?: string | null;
|
|
4399
|
+
correlationId?: string | null;
|
|
4400
|
+
/** Format: date-time */
|
|
4401
|
+
timestamp?: string;
|
|
4402
|
+
activityId?: string | null;
|
|
4403
|
+
result?: components["schemas"]["WebPageTagDto"];
|
|
4404
|
+
};
|
|
4405
|
+
WebPageTagDtoListEnvelope: {
|
|
4406
|
+
isSuccess?: boolean;
|
|
4407
|
+
errorMessage?: string | null;
|
|
4408
|
+
correlationId?: string | null;
|
|
4409
|
+
/** Format: date-time */
|
|
4410
|
+
timestamp?: string;
|
|
4411
|
+
activityId?: string | null;
|
|
4412
|
+
result?: components["schemas"]["WebPageTagDto"][] | null;
|
|
4413
|
+
};
|
|
4414
|
+
WebPageTagUpdateDto: {
|
|
4415
|
+
slug?: string | null;
|
|
4416
|
+
title?: string | null;
|
|
4417
|
+
description?: string | null;
|
|
4418
|
+
seoTitle?: string | null;
|
|
4419
|
+
metaDescription?: string | null;
|
|
4420
|
+
cornerstoneContent?: boolean;
|
|
4421
|
+
allowSerachEngines?: boolean;
|
|
4422
|
+
seoKeyPhrases?: string | null;
|
|
4423
|
+
canonicalUrl?: string | null;
|
|
4424
|
+
imageURL?: string | null;
|
|
4425
|
+
image?: string | null;
|
|
4426
|
+
};
|
|
4427
|
+
WebPageUpdateDto: {
|
|
4428
|
+
/** Format: int32 */
|
|
4429
|
+
order?: number;
|
|
4430
|
+
slug?: string | null;
|
|
4431
|
+
name?: string | null;
|
|
4432
|
+
title?: string | null;
|
|
4433
|
+
excerpt?: string | null;
|
|
4434
|
+
password?: string | null;
|
|
4435
|
+
description?: string | null;
|
|
4436
|
+
highlightImage?: string | null;
|
|
4437
|
+
canonicalUrl?: string | null;
|
|
4438
|
+
seoTitle?: string | null;
|
|
4439
|
+
seoKeyWords?: string | null;
|
|
4440
|
+
seoKeyPhrases?: string | null;
|
|
4441
|
+
metaDescription?: string | null;
|
|
4442
|
+
twitterImage?: string | null;
|
|
4443
|
+
twitterTitle?: string | null;
|
|
4444
|
+
twitterDescription?: string | null;
|
|
4445
|
+
facebookImage?: string | null;
|
|
4446
|
+
facebookTitle?: string | null;
|
|
4447
|
+
facebookDescription?: string | null;
|
|
4448
|
+
featuredImageURL?: string | null;
|
|
4449
|
+
content?: string | null;
|
|
4450
|
+
code?: string | null;
|
|
4451
|
+
namespace?: string | null;
|
|
4452
|
+
typeName?: string | null;
|
|
4453
|
+
generatedCode?: string | null;
|
|
4454
|
+
compilationPath?: string | null;
|
|
4455
|
+
htmlContent?: string | null;
|
|
4456
|
+
cSharpContent?: string | null;
|
|
4457
|
+
razorContent?: string | null;
|
|
4458
|
+
cssContent?: string | null;
|
|
4459
|
+
jsContent?: string | null;
|
|
4460
|
+
cssFiles?: string | null;
|
|
4461
|
+
jsFiles?: string | null;
|
|
4462
|
+
razorGeneratedCode?: string | null;
|
|
4463
|
+
cSharpGeneratedCode?: string | null;
|
|
4464
|
+
/** Format: int32 */
|
|
4465
|
+
precompiledLogicSize?: number;
|
|
4466
|
+
/** Format: int64 */
|
|
4467
|
+
precompiledLogicSizeLong?: number;
|
|
4468
|
+
/** Format: int32 */
|
|
4469
|
+
precompiledViewSize?: number;
|
|
4470
|
+
/** Format: int64 */
|
|
4471
|
+
precompiledViewSizeLong?: number;
|
|
4472
|
+
/** Format: int32 */
|
|
4473
|
+
precompiledLogicViewSize?: number;
|
|
4474
|
+
template?: boolean;
|
|
4475
|
+
default?: boolean;
|
|
4476
|
+
enable?: boolean;
|
|
4477
|
+
enableComments?: boolean;
|
|
4478
|
+
displaySocialBox?: boolean;
|
|
4479
|
+
published?: boolean;
|
|
4480
|
+
inTrashCan?: boolean;
|
|
4481
|
+
systemLocked?: boolean;
|
|
4482
|
+
allowPingbacks?: boolean;
|
|
4483
|
+
allowTrackbacks?: boolean;
|
|
4484
|
+
cornerstoneContent?: boolean;
|
|
4485
|
+
isEssentialContent?: boolean;
|
|
4486
|
+
allowSearchEngineIndexing?: boolean;
|
|
4487
|
+
isHomePage?: boolean;
|
|
4488
|
+
isStorePage?: boolean;
|
|
4489
|
+
isCartPage?: boolean;
|
|
4490
|
+
isBlogPage?: boolean;
|
|
4491
|
+
isAccountPage?: boolean;
|
|
4492
|
+
isCheckoutPage?: boolean;
|
|
4493
|
+
isWishListsPage?: boolean;
|
|
4494
|
+
isContactPage?: boolean;
|
|
4495
|
+
isPrivacyPolicyPage?: boolean;
|
|
4496
|
+
isTermsOfServicePage?: boolean;
|
|
4497
|
+
};
|
|
4498
|
+
WebPortalCreateDto: {
|
|
4499
|
+
/** Format: uuid */
|
|
4500
|
+
id?: string;
|
|
4501
|
+
/** Format: date-time */
|
|
4502
|
+
timestamp?: string;
|
|
4503
|
+
root?: boolean;
|
|
4504
|
+
title?: string | null;
|
|
4505
|
+
domain?: string | null;
|
|
4506
|
+
disabled?: boolean;
|
|
4507
|
+
businessID?: string | null;
|
|
4508
|
+
description?: string | null;
|
|
4509
|
+
websiteThemeID?: string | null;
|
|
4510
|
+
businessDomainID?: string | null;
|
|
4511
|
+
businessProfileRecordID?: string | null;
|
|
4512
|
+
businessPortalApplicationID?: string | null;
|
|
4513
|
+
};
|
|
4514
|
+
WebPortalDto: {
|
|
4515
|
+
id?: string | null;
|
|
4516
|
+
/** Format: date-time */
|
|
4517
|
+
timestamp?: string | null;
|
|
4518
|
+
root?: boolean;
|
|
4519
|
+
title?: string | null;
|
|
4520
|
+
domain?: string | null;
|
|
4521
|
+
disabled?: boolean;
|
|
4522
|
+
tenantId?: string | null;
|
|
4523
|
+
description?: string | null;
|
|
4524
|
+
websiteThemeID?: string | null;
|
|
4525
|
+
businessDomainID?: string | null;
|
|
4775
4526
|
businessProfileRecordID?: string | null;
|
|
4527
|
+
businessPortalApplicationID?: string | null;
|
|
4776
4528
|
};
|
|
4777
|
-
|
|
4529
|
+
WebPortalDtoEnvelope: {
|
|
4778
4530
|
isSuccess?: boolean;
|
|
4779
4531
|
errorMessage?: string | null;
|
|
4780
4532
|
correlationId?: string | null;
|
|
4781
4533
|
/** Format: date-time */
|
|
4782
4534
|
timestamp?: string;
|
|
4783
4535
|
activityId?: string | null;
|
|
4784
|
-
result?: components["schemas"]["
|
|
4536
|
+
result?: components["schemas"]["WebPortalDto"];
|
|
4537
|
+
};
|
|
4538
|
+
WebPortalUpdateDto: {
|
|
4539
|
+
root?: boolean;
|
|
4540
|
+
title?: string | null;
|
|
4541
|
+
domain?: string | null;
|
|
4542
|
+
disabled?: boolean;
|
|
4543
|
+
description?: string | null;
|
|
4544
|
+
websiteThemeID?: string | null;
|
|
4545
|
+
businessDomainID?: string | null;
|
|
4546
|
+
businessProfileRecordID?: string | null;
|
|
4547
|
+
businessPortalApplicationID?: string | null;
|
|
4548
|
+
};
|
|
4549
|
+
};
|
|
4550
|
+
responses: never;
|
|
4551
|
+
parameters: never;
|
|
4552
|
+
requestBodies: never;
|
|
4553
|
+
headers: never;
|
|
4554
|
+
pathItems: never;
|
|
4555
|
+
}
|
|
4556
|
+
|
|
4557
|
+
export type $defs = Record<string, never>;
|
|
4558
|
+
|
|
4559
|
+
export type external = Record<string, never>;
|
|
4560
|
+
|
|
4561
|
+
export interface operations {
|
|
4562
|
+
|
|
4563
|
+
/** Get the root portal */
|
|
4564
|
+
GetRootPortal: {
|
|
4565
|
+
parameters: {
|
|
4566
|
+
query?: {
|
|
4567
|
+
"api-version"?: string;
|
|
4568
|
+
};
|
|
4569
|
+
header?: {
|
|
4570
|
+
"x-api-version"?: string;
|
|
4571
|
+
};
|
|
4572
|
+
};
|
|
4573
|
+
responses: {
|
|
4574
|
+
/** @description OK */
|
|
4575
|
+
200: {
|
|
4576
|
+
content: {
|
|
4577
|
+
"application/json": components["schemas"]["WebPortalDtoEnvelope"];
|
|
4578
|
+
"application/xml": components["schemas"]["WebPortalDtoEnvelope"];
|
|
4579
|
+
};
|
|
4580
|
+
};
|
|
4581
|
+
/** @description Unauthorized */
|
|
4582
|
+
401: {
|
|
4583
|
+
content: {
|
|
4584
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
4585
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
4586
|
+
};
|
|
4587
|
+
};
|
|
4588
|
+
/** @description Forbidden */
|
|
4589
|
+
403: {
|
|
4590
|
+
content: {
|
|
4591
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
4592
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
4593
|
+
};
|
|
4594
|
+
};
|
|
4595
|
+
};
|
|
4596
|
+
};
|
|
4597
|
+
/** Get the current portal */
|
|
4598
|
+
GetCurrentWebPortal: {
|
|
4599
|
+
parameters: {
|
|
4600
|
+
query?: {
|
|
4601
|
+
"api-version"?: string;
|
|
4602
|
+
};
|
|
4603
|
+
header?: {
|
|
4604
|
+
"x-api-version"?: string;
|
|
4605
|
+
};
|
|
4606
|
+
};
|
|
4607
|
+
responses: {
|
|
4608
|
+
/** @description OK */
|
|
4609
|
+
200: {
|
|
4610
|
+
content: {
|
|
4611
|
+
"application/json": components["schemas"]["WebPortalDtoEnvelope"];
|
|
4612
|
+
"application/xml": components["schemas"]["WebPortalDtoEnvelope"];
|
|
4613
|
+
};
|
|
4614
|
+
};
|
|
4615
|
+
/** @description Unauthorized */
|
|
4616
|
+
401: {
|
|
4617
|
+
content: {
|
|
4618
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
4619
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
4620
|
+
};
|
|
4621
|
+
};
|
|
4622
|
+
/** @description Forbidden */
|
|
4623
|
+
403: {
|
|
4624
|
+
content: {
|
|
4625
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
4626
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
4627
|
+
};
|
|
4628
|
+
};
|
|
4629
|
+
};
|
|
4630
|
+
};
|
|
4631
|
+
/** Initialize the current portal */
|
|
4632
|
+
InitializeCurrentWebPortal: {
|
|
4633
|
+
parameters: {
|
|
4634
|
+
query?: {
|
|
4635
|
+
"api-version"?: string;
|
|
4636
|
+
};
|
|
4637
|
+
header?: {
|
|
4638
|
+
"x-api-version"?: string;
|
|
4639
|
+
};
|
|
4640
|
+
};
|
|
4641
|
+
responses: {
|
|
4642
|
+
/** @description OK */
|
|
4643
|
+
200: {
|
|
4644
|
+
content: {
|
|
4645
|
+
"application/json": components["schemas"]["WebPortalDtoEnvelope"];
|
|
4646
|
+
"application/xml": components["schemas"]["WebPortalDtoEnvelope"];
|
|
4647
|
+
};
|
|
4648
|
+
};
|
|
4649
|
+
/** @description Unauthorized */
|
|
4650
|
+
401: {
|
|
4651
|
+
content: {
|
|
4652
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
4653
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
4654
|
+
};
|
|
4655
|
+
};
|
|
4656
|
+
/** @description Forbidden */
|
|
4657
|
+
403: {
|
|
4658
|
+
content: {
|
|
4659
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
4660
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
4661
|
+
};
|
|
4662
|
+
};
|
|
4663
|
+
};
|
|
4664
|
+
};
|
|
4665
|
+
/** Get the current portal settings */
|
|
4666
|
+
GetCurrentWebPortalOptions: {
|
|
4667
|
+
parameters: {
|
|
4668
|
+
query?: {
|
|
4669
|
+
"api-version"?: string;
|
|
4670
|
+
};
|
|
4671
|
+
header?: {
|
|
4672
|
+
"x-api-version"?: string;
|
|
4673
|
+
};
|
|
4674
|
+
};
|
|
4675
|
+
responses: {
|
|
4676
|
+
/** @description OK */
|
|
4677
|
+
200: {
|
|
4678
|
+
content: {
|
|
4679
|
+
"application/json": components["schemas"]["PortalOptionsEnvelope"];
|
|
4680
|
+
"application/xml": components["schemas"]["PortalOptionsEnvelope"];
|
|
4681
|
+
};
|
|
4682
|
+
};
|
|
4683
|
+
/** @description Unauthorized */
|
|
4684
|
+
401: {
|
|
4685
|
+
content: {
|
|
4686
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
4687
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
4688
|
+
};
|
|
4689
|
+
};
|
|
4690
|
+
/** @description Forbidden */
|
|
4691
|
+
403: {
|
|
4692
|
+
content: {
|
|
4693
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
4694
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
4695
|
+
};
|
|
4696
|
+
};
|
|
4697
|
+
};
|
|
4698
|
+
};
|
|
4699
|
+
/** Search for a portal by its domain */
|
|
4700
|
+
SearchWebPortal: {
|
|
4701
|
+
parameters: {
|
|
4702
|
+
query: {
|
|
4703
|
+
domain: string;
|
|
4704
|
+
"api-version"?: string;
|
|
4705
|
+
};
|
|
4706
|
+
header?: {
|
|
4707
|
+
"x-api-version"?: string;
|
|
4708
|
+
};
|
|
4709
|
+
};
|
|
4710
|
+
responses: {
|
|
4711
|
+
/** @description OK */
|
|
4712
|
+
200: {
|
|
4713
|
+
content: {
|
|
4714
|
+
"application/json": components["schemas"]["WebPortalDtoEnvelope"];
|
|
4715
|
+
"application/xml": components["schemas"]["WebPortalDtoEnvelope"];
|
|
4716
|
+
};
|
|
4717
|
+
};
|
|
4718
|
+
/** @description Unauthorized */
|
|
4719
|
+
401: {
|
|
4720
|
+
content: {
|
|
4721
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
4722
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
4723
|
+
};
|
|
4724
|
+
};
|
|
4725
|
+
/** @description Forbidden */
|
|
4726
|
+
403: {
|
|
4727
|
+
content: {
|
|
4728
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
4729
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
4730
|
+
};
|
|
4731
|
+
};
|
|
4732
|
+
};
|
|
4733
|
+
};
|
|
4734
|
+
/** Get a web portal by its ID */
|
|
4735
|
+
GetWebPortalById: {
|
|
4736
|
+
parameters: {
|
|
4737
|
+
query?: {
|
|
4738
|
+
"api-version"?: string;
|
|
4739
|
+
};
|
|
4740
|
+
header?: {
|
|
4741
|
+
"x-api-version"?: string;
|
|
4742
|
+
};
|
|
4743
|
+
path: {
|
|
4744
|
+
portalId: string;
|
|
4745
|
+
};
|
|
4746
|
+
};
|
|
4747
|
+
responses: {
|
|
4748
|
+
/** @description OK */
|
|
4749
|
+
200: {
|
|
4750
|
+
content: {
|
|
4751
|
+
"application/json": components["schemas"]["WebPortalDtoEnvelope"];
|
|
4752
|
+
"application/xml": components["schemas"]["WebPortalDtoEnvelope"];
|
|
4753
|
+
};
|
|
4754
|
+
};
|
|
4755
|
+
/** @description Unauthorized */
|
|
4756
|
+
401: {
|
|
4757
|
+
content: {
|
|
4758
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
4759
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
4760
|
+
};
|
|
4761
|
+
};
|
|
4762
|
+
/** @description Forbidden */
|
|
4763
|
+
403: {
|
|
4764
|
+
content: {
|
|
4765
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
4766
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
4767
|
+
};
|
|
4768
|
+
};
|
|
4769
|
+
};
|
|
4770
|
+
};
|
|
4771
|
+
/** Update an existing web portal */
|
|
4772
|
+
UpdateWebPortal: {
|
|
4773
|
+
parameters: {
|
|
4774
|
+
query: {
|
|
4775
|
+
tenantId: string;
|
|
4776
|
+
"api-version"?: string;
|
|
4777
|
+
};
|
|
4778
|
+
header?: {
|
|
4779
|
+
"x-api-version"?: string;
|
|
4780
|
+
};
|
|
4781
|
+
path: {
|
|
4782
|
+
portalId: string;
|
|
4783
|
+
};
|
|
4784
|
+
};
|
|
4785
|
+
requestBody?: {
|
|
4786
|
+
content: {
|
|
4787
|
+
"application/json": components["schemas"]["WebPortalUpdateDto"];
|
|
4788
|
+
"application/xml": components["schemas"]["WebPortalUpdateDto"];
|
|
4789
|
+
};
|
|
4790
|
+
};
|
|
4791
|
+
responses: {
|
|
4792
|
+
/** @description OK */
|
|
4793
|
+
200: {
|
|
4794
|
+
content: {
|
|
4795
|
+
"application/json": components["schemas"]["EmptyEnvelope"];
|
|
4796
|
+
"application/xml": components["schemas"]["EmptyEnvelope"];
|
|
4797
|
+
};
|
|
4798
|
+
};
|
|
4799
|
+
/** @description Unauthorized */
|
|
4800
|
+
401: {
|
|
4801
|
+
content: {
|
|
4802
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
4803
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
4804
|
+
};
|
|
4805
|
+
};
|
|
4806
|
+
/** @description Forbidden */
|
|
4807
|
+
403: {
|
|
4808
|
+
content: {
|
|
4809
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
4810
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
4811
|
+
};
|
|
4812
|
+
};
|
|
4813
|
+
};
|
|
4814
|
+
};
|
|
4815
|
+
/** Delete a web portal by its ID */
|
|
4816
|
+
DeleteWebPortal: {
|
|
4817
|
+
parameters: {
|
|
4818
|
+
query: {
|
|
4819
|
+
tenantId: string;
|
|
4820
|
+
"api-version"?: string;
|
|
4821
|
+
};
|
|
4822
|
+
header?: {
|
|
4823
|
+
"x-api-version"?: string;
|
|
4824
|
+
};
|
|
4825
|
+
path: {
|
|
4826
|
+
portalId: string;
|
|
4827
|
+
};
|
|
4828
|
+
};
|
|
4829
|
+
requestBody: {
|
|
4830
|
+
content: {
|
|
4831
|
+
"application/json": components["schemas"]["PortalId"];
|
|
4832
|
+
"application/xml": components["schemas"]["PortalId"];
|
|
4833
|
+
};
|
|
4785
4834
|
};
|
|
4786
|
-
|
|
4787
|
-
|
|
4788
|
-
|
|
4789
|
-
|
|
4790
|
-
|
|
4791
|
-
|
|
4792
|
-
|
|
4793
|
-
|
|
4835
|
+
responses: {
|
|
4836
|
+
/** @description OK */
|
|
4837
|
+
200: {
|
|
4838
|
+
content: {
|
|
4839
|
+
"application/json": components["schemas"]["EmptyEnvelope"];
|
|
4840
|
+
"application/xml": components["schemas"]["EmptyEnvelope"];
|
|
4841
|
+
};
|
|
4842
|
+
};
|
|
4843
|
+
/** @description Unauthorized */
|
|
4844
|
+
401: {
|
|
4845
|
+
content: {
|
|
4846
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
4847
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
4848
|
+
};
|
|
4849
|
+
};
|
|
4850
|
+
/** @description Forbidden */
|
|
4851
|
+
403: {
|
|
4852
|
+
content: {
|
|
4853
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
4854
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
4855
|
+
};
|
|
4856
|
+
};
|
|
4794
4857
|
};
|
|
4795
|
-
|
|
4796
|
-
|
|
4797
|
-
|
|
4798
|
-
|
|
4799
|
-
|
|
4800
|
-
|
|
4801
|
-
|
|
4802
|
-
|
|
4803
|
-
|
|
4804
|
-
|
|
4805
|
-
|
|
4806
|
-
|
|
4858
|
+
};
|
|
4859
|
+
/** Partially update a web portal */
|
|
4860
|
+
PatchWebPortal: {
|
|
4861
|
+
parameters: {
|
|
4862
|
+
query: {
|
|
4863
|
+
tenantId: string;
|
|
4864
|
+
"api-version"?: string;
|
|
4865
|
+
};
|
|
4866
|
+
header?: {
|
|
4867
|
+
"x-api-version"?: string;
|
|
4868
|
+
};
|
|
4869
|
+
path: {
|
|
4870
|
+
portalId: components["schemas"]["PortalId"];
|
|
4871
|
+
};
|
|
4807
4872
|
};
|
|
4808
|
-
|
|
4809
|
-
|
|
4810
|
-
|
|
4811
|
-
|
|
4812
|
-
|
|
4813
|
-
title?: string | null;
|
|
4814
|
-
excerpt?: string | null;
|
|
4815
|
-
password?: string | null;
|
|
4816
|
-
description?: string | null;
|
|
4817
|
-
highlightImage?: string | null;
|
|
4818
|
-
canonicalUrl?: string | null;
|
|
4819
|
-
seoTitle?: string | null;
|
|
4820
|
-
seoKeyWords?: string | null;
|
|
4821
|
-
seoKeyPhrases?: string | null;
|
|
4822
|
-
metaDescription?: string | null;
|
|
4823
|
-
twitterImage?: string | null;
|
|
4824
|
-
twitterTitle?: string | null;
|
|
4825
|
-
twitterDescription?: string | null;
|
|
4826
|
-
facebookImage?: string | null;
|
|
4827
|
-
facebookTitle?: string | null;
|
|
4828
|
-
facebookDescription?: string | null;
|
|
4829
|
-
featuredImageURL?: string | null;
|
|
4830
|
-
content?: string | null;
|
|
4831
|
-
code?: string | null;
|
|
4832
|
-
namespace?: string | null;
|
|
4833
|
-
typeName?: string | null;
|
|
4834
|
-
generatedCode?: string | null;
|
|
4835
|
-
compilationPath?: string | null;
|
|
4836
|
-
htmlContent?: string | null;
|
|
4837
|
-
cSharpContent?: string | null;
|
|
4838
|
-
razorContent?: string | null;
|
|
4839
|
-
cssContent?: string | null;
|
|
4840
|
-
jsContent?: string | null;
|
|
4841
|
-
cssFiles?: string | null;
|
|
4842
|
-
jsFiles?: string | null;
|
|
4843
|
-
razorGeneratedCode?: string | null;
|
|
4844
|
-
cSharpGeneratedCode?: string | null;
|
|
4845
|
-
/** Format: int32 */
|
|
4846
|
-
precompiledLogicSize?: number;
|
|
4847
|
-
/** Format: int64 */
|
|
4848
|
-
precompiledLogicSizeLong?: number;
|
|
4849
|
-
/** Format: int32 */
|
|
4850
|
-
precompiledViewSize?: number;
|
|
4851
|
-
/** Format: int64 */
|
|
4852
|
-
precompiledViewSizeLong?: number;
|
|
4853
|
-
/** Format: int32 */
|
|
4854
|
-
precompiledLogicViewSize?: number;
|
|
4855
|
-
template?: boolean;
|
|
4856
|
-
default?: boolean;
|
|
4857
|
-
enable?: boolean;
|
|
4858
|
-
enableComments?: boolean;
|
|
4859
|
-
displaySocialBox?: boolean;
|
|
4860
|
-
published?: boolean;
|
|
4861
|
-
inTrashCan?: boolean;
|
|
4862
|
-
systemLocked?: boolean;
|
|
4863
|
-
allowPingbacks?: boolean;
|
|
4864
|
-
allowTrackbacks?: boolean;
|
|
4865
|
-
cornerstoneContent?: boolean;
|
|
4866
|
-
isEssentialContent?: boolean;
|
|
4867
|
-
allowSearchEngineIndexing?: boolean;
|
|
4868
|
-
isHomePage?: boolean;
|
|
4869
|
-
isStorePage?: boolean;
|
|
4870
|
-
isCartPage?: boolean;
|
|
4871
|
-
isBlogPage?: boolean;
|
|
4872
|
-
isAccountPage?: boolean;
|
|
4873
|
-
isCheckoutPage?: boolean;
|
|
4874
|
-
isWishListsPage?: boolean;
|
|
4875
|
-
isContactPage?: boolean;
|
|
4876
|
-
isPrivacyPolicyPage?: boolean;
|
|
4877
|
-
isTermsOfServicePage?: boolean;
|
|
4873
|
+
requestBody?: {
|
|
4874
|
+
content: {
|
|
4875
|
+
"application/json": components["schemas"]["Operation"][];
|
|
4876
|
+
"application/xml": components["schemas"]["Operation"][];
|
|
4877
|
+
};
|
|
4878
4878
|
};
|
|
4879
|
-
|
|
4880
|
-
/**
|
|
4881
|
-
|
|
4882
|
-
|
|
4883
|
-
|
|
4884
|
-
|
|
4885
|
-
|
|
4886
|
-
|
|
4887
|
-
|
|
4888
|
-
|
|
4889
|
-
|
|
4890
|
-
|
|
4891
|
-
|
|
4892
|
-
|
|
4893
|
-
|
|
4879
|
+
responses: {
|
|
4880
|
+
/** @description OK */
|
|
4881
|
+
200: {
|
|
4882
|
+
content: {
|
|
4883
|
+
"application/json": components["schemas"]["EmptyEnvelope"];
|
|
4884
|
+
"application/xml": components["schemas"]["EmptyEnvelope"];
|
|
4885
|
+
};
|
|
4886
|
+
};
|
|
4887
|
+
/** @description Unauthorized */
|
|
4888
|
+
401: {
|
|
4889
|
+
content: {
|
|
4890
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
4891
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
4892
|
+
};
|
|
4893
|
+
};
|
|
4894
|
+
/** @description Forbidden */
|
|
4895
|
+
403: {
|
|
4896
|
+
content: {
|
|
4897
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
4898
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
4899
|
+
};
|
|
4900
|
+
};
|
|
4894
4901
|
};
|
|
4895
|
-
|
|
4896
|
-
|
|
4897
|
-
|
|
4898
|
-
|
|
4899
|
-
|
|
4900
|
-
|
|
4901
|
-
|
|
4902
|
-
|
|
4903
|
-
|
|
4904
|
-
|
|
4905
|
-
|
|
4906
|
-
|
|
4907
|
-
|
|
4908
|
-
businessPortalApplicationID?: string | null;
|
|
4902
|
+
};
|
|
4903
|
+
/** Get a web portal's settings by its ID */
|
|
4904
|
+
GetWebPortalSettingsById: {
|
|
4905
|
+
parameters: {
|
|
4906
|
+
query?: {
|
|
4907
|
+
"api-version"?: string;
|
|
4908
|
+
};
|
|
4909
|
+
header?: {
|
|
4910
|
+
"x-api-version"?: string;
|
|
4911
|
+
};
|
|
4912
|
+
path: {
|
|
4913
|
+
portalId: string;
|
|
4914
|
+
};
|
|
4909
4915
|
};
|
|
4910
|
-
|
|
4911
|
-
|
|
4912
|
-
|
|
4913
|
-
|
|
4914
|
-
|
|
4915
|
-
|
|
4916
|
-
|
|
4917
|
-
|
|
4916
|
+
responses: {
|
|
4917
|
+
/** @description OK */
|
|
4918
|
+
200: {
|
|
4919
|
+
content: {
|
|
4920
|
+
"application/json": components["schemas"]["PortalSettingsEnvelope"];
|
|
4921
|
+
"application/xml": components["schemas"]["PortalSettingsEnvelope"];
|
|
4922
|
+
};
|
|
4923
|
+
};
|
|
4924
|
+
/** @description Unauthorized */
|
|
4925
|
+
401: {
|
|
4926
|
+
content: {
|
|
4927
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
4928
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
4929
|
+
};
|
|
4930
|
+
};
|
|
4931
|
+
/** @description Forbidden */
|
|
4932
|
+
403: {
|
|
4933
|
+
content: {
|
|
4934
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
4935
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
4936
|
+
};
|
|
4937
|
+
};
|
|
4918
4938
|
};
|
|
4919
|
-
|
|
4920
|
-
|
|
4921
|
-
|
|
4922
|
-
|
|
4923
|
-
|
|
4924
|
-
|
|
4925
|
-
|
|
4926
|
-
|
|
4927
|
-
|
|
4928
|
-
|
|
4939
|
+
};
|
|
4940
|
+
/** Get a web portal's options by its ID */
|
|
4941
|
+
GetWebPortalOptionsById: {
|
|
4942
|
+
parameters: {
|
|
4943
|
+
query?: {
|
|
4944
|
+
"api-version"?: string;
|
|
4945
|
+
};
|
|
4946
|
+
header?: {
|
|
4947
|
+
"x-api-version"?: string;
|
|
4948
|
+
};
|
|
4949
|
+
path: {
|
|
4950
|
+
portalId: string;
|
|
4951
|
+
};
|
|
4952
|
+
};
|
|
4953
|
+
responses: {
|
|
4954
|
+
/** @description OK */
|
|
4955
|
+
200: {
|
|
4956
|
+
content: {
|
|
4957
|
+
"application/json": components["schemas"]["PortalOptionsEnvelope"];
|
|
4958
|
+
"application/xml": components["schemas"]["PortalOptionsEnvelope"];
|
|
4959
|
+
};
|
|
4960
|
+
};
|
|
4961
|
+
/** @description Unauthorized */
|
|
4962
|
+
401: {
|
|
4963
|
+
content: {
|
|
4964
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
4965
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
4966
|
+
};
|
|
4967
|
+
};
|
|
4968
|
+
/** @description Forbidden */
|
|
4969
|
+
403: {
|
|
4970
|
+
content: {
|
|
4971
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
4972
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
4973
|
+
};
|
|
4974
|
+
};
|
|
4929
4975
|
};
|
|
4930
4976
|
};
|
|
4931
|
-
responses: never;
|
|
4932
|
-
parameters: never;
|
|
4933
|
-
requestBodies: never;
|
|
4934
|
-
headers: never;
|
|
4935
|
-
pathItems: never;
|
|
4936
|
-
}
|
|
4937
|
-
|
|
4938
|
-
export type $defs = Record<string, never>;
|
|
4939
|
-
|
|
4940
|
-
export type external = Record<string, never>;
|
|
4941
|
-
|
|
4942
|
-
export interface operations {
|
|
4943
|
-
|
|
4944
4977
|
/** Create a new web portal */
|
|
4945
4978
|
CreateWebPortal: {
|
|
4946
4979
|
parameters: {
|