@23blocks/angular 6.5.3 → 6.5.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (37) hide show
  1. package/dist/index.esm.js +2544 -161
  2. package/dist/src/lib/assets/assets.service.d.ts +23 -14
  3. package/dist/src/lib/assets/assets.service.d.ts.map +1 -1
  4. package/dist/src/lib/authentication/authentication.service.d.ts +322 -7
  5. package/dist/src/lib/authentication/authentication.service.d.ts.map +1 -1
  6. package/dist/src/lib/campaigns/campaigns.service.d.ts +20 -15
  7. package/dist/src/lib/campaigns/campaigns.service.d.ts.map +1 -1
  8. package/dist/src/lib/company/company.service.d.ts +54 -2
  9. package/dist/src/lib/company/company.service.d.ts.map +1 -1
  10. package/dist/src/lib/content/content.service.d.ts +1 -1
  11. package/dist/src/lib/content/content.service.d.ts.map +1 -1
  12. package/dist/src/lib/conversations/conversations.service.d.ts +60 -4
  13. package/dist/src/lib/conversations/conversations.service.d.ts.map +1 -1
  14. package/dist/src/lib/crm/crm.service.d.ts +100 -2
  15. package/dist/src/lib/crm/crm.service.d.ts.map +1 -1
  16. package/dist/src/lib/files/files.service.d.ts +234 -2
  17. package/dist/src/lib/files/files.service.d.ts.map +1 -1
  18. package/dist/src/lib/forms/forms.service.d.ts +2 -2
  19. package/dist/src/lib/geolocation/geolocation.service.d.ts +190 -2
  20. package/dist/src/lib/geolocation/geolocation.service.d.ts.map +1 -1
  21. package/dist/src/lib/jarvis/jarvis.service.d.ts +113 -2
  22. package/dist/src/lib/jarvis/jarvis.service.d.ts.map +1 -1
  23. package/dist/src/lib/onboarding/onboarding.service.d.ts +27 -2
  24. package/dist/src/lib/onboarding/onboarding.service.d.ts.map +1 -1
  25. package/dist/src/lib/products/products.service.d.ts +1 -1
  26. package/dist/src/lib/products/products.service.d.ts.map +1 -1
  27. package/dist/src/lib/rewards/rewards.service.d.ts +20 -20
  28. package/dist/src/lib/rewards/rewards.service.d.ts.map +1 -1
  29. package/dist/src/lib/sales/sales.service.d.ts +54 -2
  30. package/dist/src/lib/sales/sales.service.d.ts.map +1 -1
  31. package/dist/src/lib/search/search.service.d.ts +1 -1
  32. package/dist/src/lib/search/search.service.d.ts.map +1 -1
  33. package/dist/src/lib/university/university.service.d.ts +73 -29
  34. package/dist/src/lib/university/university.service.d.ts.map +1 -1
  35. package/dist/src/lib/wallet/wallet.service.d.ts +1 -1
  36. package/dist/src/lib/wallet/wallet.service.d.ts.map +1 -1
  37. package/package.json +1 -1
package/dist/index.esm.js CHANGED
@@ -1212,6 +1212,34 @@ typeof SuppressedError === "function" ? SuppressedError : function _SuppressedEr
1212
1212
  return from(this.ensureConfigured().roles.listPermissions());
1213
1213
  }
1214
1214
  // ─────────────────────────────────────────────────────────────────────────────
1215
+ // Permissions Service
1216
+ // ─────────────────────────────────────────────────────────────────────────────
1217
+ /**
1218
+ * List all permissions with pagination
1219
+ */ listPermissionsPaginated(params) {
1220
+ return from(this.ensureConfigured().permissions.list(params));
1221
+ }
1222
+ /**
1223
+ * Get a permission by ID
1224
+ */ getPermission(id) {
1225
+ return from(this.ensureConfigured().permissions.get(id));
1226
+ }
1227
+ /**
1228
+ * Create a new permission
1229
+ */ createPermission(request) {
1230
+ return from(this.ensureConfigured().permissions.create(request));
1231
+ }
1232
+ /**
1233
+ * Update a permission
1234
+ */ updatePermission(id, request) {
1235
+ return from(this.ensureConfigured().permissions.update(id, request));
1236
+ }
1237
+ /**
1238
+ * Delete a permission
1239
+ */ deletePermission(id) {
1240
+ return from(this.ensureConfigured().permissions.delete(id));
1241
+ }
1242
+ // ─────────────────────────────────────────────────────────────────────────────
1215
1243
  // API Keys Service
1216
1244
  // ─────────────────────────────────────────────────────────────────────────────
1217
1245
  listApiKeys() {
@@ -1402,6 +1430,437 @@ typeof SuppressedError === "function" ? SuppressedError : function _SuppressedEr
1402
1430
  return from(this.ensureConfigured().tenants.updateSales(userUniqueId, urlId, request));
1403
1431
  }
1404
1432
  // ─────────────────────────────────────────────────────────────────────────────
1433
+ // Apps Service
1434
+ // ─────────────────────────────────────────────────────────────────────────────
1435
+ /**
1436
+ * List apps with pagination
1437
+ */ listApps(params) {
1438
+ return from(this.ensureConfigured().apps.list(params));
1439
+ }
1440
+ /**
1441
+ * Get an app by ID
1442
+ */ getApp(id) {
1443
+ return from(this.ensureConfigured().apps.get(id));
1444
+ }
1445
+ /**
1446
+ * Create a new app
1447
+ */ createApp(request) {
1448
+ return from(this.ensureConfigured().apps.create(request));
1449
+ }
1450
+ /**
1451
+ * Update an app
1452
+ */ updateApp(id, request) {
1453
+ return from(this.ensureConfigured().apps.update(id, request));
1454
+ }
1455
+ /**
1456
+ * Delete an app
1457
+ */ deleteApp(id) {
1458
+ return from(this.ensureConfigured().apps.delete(id));
1459
+ }
1460
+ /**
1461
+ * Regenerate webhook secret for an app
1462
+ */ regenerateAppWebhookSecret(id) {
1463
+ return from(this.ensureConfigured().apps.regenerateWebhookSecret(id));
1464
+ }
1465
+ // ─────────────────────────────────────────────────────────────────────────────
1466
+ // Blocks Service
1467
+ // ─────────────────────────────────────────────────────────────────────────────
1468
+ /**
1469
+ * List blocks for a company
1470
+ */ listBlocks(companyId, params) {
1471
+ return from(this.ensureConfigured().blocks.list(companyId, params));
1472
+ }
1473
+ /**
1474
+ * Get a block by ID
1475
+ */ getBlock(id) {
1476
+ return from(this.ensureConfigured().blocks.get(id));
1477
+ }
1478
+ /**
1479
+ * Add a block to a company
1480
+ */ addBlock(companyId, blockCode) {
1481
+ return from(this.ensureConfigured().blocks.add(companyId, blockCode));
1482
+ }
1483
+ /**
1484
+ * Remove a block from a company
1485
+ */ removeBlock(id) {
1486
+ return from(this.ensureConfigured().blocks.remove(id));
1487
+ }
1488
+ // ─────────────────────────────────────────────────────────────────────────────
1489
+ // Services Registry Service
1490
+ // ─────────────────────────────────────────────────────────────────────────────
1491
+ /**
1492
+ * List registered services
1493
+ */ listServices(params) {
1494
+ return from(this.ensureConfigured().services.list(params));
1495
+ }
1496
+ /**
1497
+ * Get a service by ID
1498
+ */ getService(id) {
1499
+ return from(this.ensureConfigured().services.get(id));
1500
+ }
1501
+ /**
1502
+ * Get a service by code
1503
+ */ getServiceByCode(code) {
1504
+ return from(this.ensureConfigured().services.getByCode(code));
1505
+ }
1506
+ /**
1507
+ * Health check all services
1508
+ */ healthCheckServices() {
1509
+ return from(this.ensureConfigured().services.healthCheck());
1510
+ }
1511
+ // ─────────────────────────────────────────────────────────────────────────────
1512
+ // Subscription Models Service
1513
+ // ─────────────────────────────────────────────────────────────────────────────
1514
+ /**
1515
+ * List subscription models
1516
+ */ listSubscriptionModels(params) {
1517
+ return from(this.ensureConfigured().subscriptionModels.list(params));
1518
+ }
1519
+ /**
1520
+ * Get a subscription model by ID
1521
+ */ getSubscriptionModel(id) {
1522
+ return from(this.ensureConfigured().subscriptionModels.get(id));
1523
+ }
1524
+ /**
1525
+ * Get a subscription model by code
1526
+ */ getSubscriptionModelByCode(code) {
1527
+ return from(this.ensureConfigured().subscriptionModels.getByCode(code));
1528
+ }
1529
+ /**
1530
+ * List promotional subscription models
1531
+ */ listPromotionalSubscriptionModels() {
1532
+ return from(this.ensureConfigured().subscriptionModels.promotional());
1533
+ }
1534
+ // ─────────────────────────────────────────────────────────────────────────────
1535
+ // User Subscriptions Service
1536
+ // ─────────────────────────────────────────────────────────────────────────────
1537
+ /**
1538
+ * List user subscriptions
1539
+ */ listUserSubscriptions(params) {
1540
+ return from(this.ensureConfigured().userSubscriptions.list(params));
1541
+ }
1542
+ /**
1543
+ * Get a user subscription by ID
1544
+ */ getUserSubscription(id) {
1545
+ return from(this.ensureConfigured().userSubscriptions.get(id));
1546
+ }
1547
+ /**
1548
+ * Get subscriptions for a user
1549
+ */ getSubscriptionsForUser(userUniqueId) {
1550
+ return from(this.ensureConfigured().userSubscriptions.forUser(userUniqueId));
1551
+ }
1552
+ /**
1553
+ * Subscribe a user to a plan
1554
+ */ subscribeUser(userUniqueId, request) {
1555
+ return from(this.ensureConfigured().userSubscriptions.subscribe(userUniqueId, request));
1556
+ }
1557
+ /**
1558
+ * Cancel a user subscription
1559
+ */ cancelUserSubscription(id) {
1560
+ return from(this.ensureConfigured().userSubscriptions.cancel(id));
1561
+ }
1562
+ /**
1563
+ * Reactivate a user subscription
1564
+ */ reactivateUserSubscription(id) {
1565
+ return from(this.ensureConfigured().userSubscriptions.reactivate(id));
1566
+ }
1567
+ // ─────────────────────────────────────────────────────────────────────────────
1568
+ // Company Subscriptions Service
1569
+ // ─────────────────────────────────────────────────────────────────────────────
1570
+ /**
1571
+ * List company subscriptions
1572
+ */ listCompanySubscriptions(params) {
1573
+ return from(this.ensureConfigured().companySubscriptions.list(params));
1574
+ }
1575
+ /**
1576
+ * Get a company subscription by ID
1577
+ */ getCompanySubscription(id) {
1578
+ return from(this.ensureConfigured().companySubscriptions.get(id));
1579
+ }
1580
+ /**
1581
+ * Get subscriptions for a company
1582
+ */ getSubscriptionsForCompany(companyUniqueId) {
1583
+ return from(this.ensureConfigured().companySubscriptions.forCompany(companyUniqueId));
1584
+ }
1585
+ /**
1586
+ * Subscribe a company to a plan
1587
+ */ subscribeCompany(companyUniqueId, request) {
1588
+ return from(this.ensureConfigured().companySubscriptions.subscribe(companyUniqueId, request));
1589
+ }
1590
+ /**
1591
+ * Cancel a company subscription
1592
+ */ cancelCompanySubscription(id) {
1593
+ return from(this.ensureConfigured().companySubscriptions.cancel(id));
1594
+ }
1595
+ /**
1596
+ * Reactivate a company subscription
1597
+ */ reactivateCompanySubscription(id) {
1598
+ return from(this.ensureConfigured().companySubscriptions.reactivate(id));
1599
+ }
1600
+ // ─────────────────────────────────────────────────────────────────────────────
1601
+ // Countries Service
1602
+ // ─────────────────────────────────────────────────────────────────────────────
1603
+ /**
1604
+ * List countries with pagination
1605
+ */ listCountries(params) {
1606
+ return from(this.ensureConfigured().countries.list(params));
1607
+ }
1608
+ /**
1609
+ * Get a country by ID
1610
+ */ getCountry(id) {
1611
+ return from(this.ensureConfigured().countries.get(id));
1612
+ }
1613
+ /**
1614
+ * Get a country by ISO code
1615
+ */ getCountryByIsoCode(isoCode) {
1616
+ return from(this.ensureConfigured().countries.getByIsoCode(isoCode));
1617
+ }
1618
+ /**
1619
+ * Get all countries (no pagination)
1620
+ */ getAllCountries() {
1621
+ return from(this.ensureConfigured().countries.all());
1622
+ }
1623
+ // ─────────────────────────────────────────────────────────────────────────────
1624
+ // States Service
1625
+ // ─────────────────────────────────────────────────────────────────────────────
1626
+ /**
1627
+ * List states with pagination
1628
+ */ listStates(params) {
1629
+ return from(this.ensureConfigured().states.list(params));
1630
+ }
1631
+ /**
1632
+ * Get a state by ID
1633
+ */ getState(id) {
1634
+ return from(this.ensureConfigured().states.get(id));
1635
+ }
1636
+ /**
1637
+ * Get states for a country
1638
+ */ getStatesForCountry(countryId) {
1639
+ return from(this.ensureConfigured().states.forCountry(countryId));
1640
+ }
1641
+ // ─────────────────────────────────────────────────────────────────────────────
1642
+ // Counties Service
1643
+ // ─────────────────────────────────────────────────────────────────────────────
1644
+ /**
1645
+ * List counties with pagination
1646
+ */ listCounties(params) {
1647
+ return from(this.ensureConfigured().counties.list(params));
1648
+ }
1649
+ /**
1650
+ * Get a county by ID
1651
+ */ getCounty(id) {
1652
+ return from(this.ensureConfigured().counties.get(id));
1653
+ }
1654
+ /**
1655
+ * Get counties for a state
1656
+ */ getCountiesForState(stateId) {
1657
+ return from(this.ensureConfigured().counties.forState(stateId));
1658
+ }
1659
+ // ─────────────────────────────────────────────────────────────────────────────
1660
+ // Cities Service
1661
+ // ─────────────────────────────────────────────────────────────────────────────
1662
+ /**
1663
+ * List cities with pagination
1664
+ */ listCities(params) {
1665
+ return from(this.ensureConfigured().cities.list(params));
1666
+ }
1667
+ /**
1668
+ * Get a city by ID
1669
+ */ getCity(id) {
1670
+ return from(this.ensureConfigured().cities.get(id));
1671
+ }
1672
+ /**
1673
+ * Get cities for a state
1674
+ */ getCitiesForState(stateId) {
1675
+ return from(this.ensureConfigured().cities.forState(stateId));
1676
+ }
1677
+ /**
1678
+ * Get cities for a county
1679
+ */ getCitiesForCounty(countyId) {
1680
+ return from(this.ensureConfigured().cities.forCounty(countyId));
1681
+ }
1682
+ /**
1683
+ * Search cities by name
1684
+ */ searchCities(query, params) {
1685
+ return from(this.ensureConfigured().cities.search(query, params));
1686
+ }
1687
+ // ─────────────────────────────────────────────────────────────────────────────
1688
+ // Currencies Service
1689
+ // ─────────────────────────────────────────────────────────────────────────────
1690
+ /**
1691
+ * List currencies with pagination
1692
+ */ listCurrencies(params) {
1693
+ return from(this.ensureConfigured().currencies.list(params));
1694
+ }
1695
+ /**
1696
+ * Get a currency by ID
1697
+ */ getCurrency(id) {
1698
+ return from(this.ensureConfigured().currencies.get(id));
1699
+ }
1700
+ /**
1701
+ * Get a currency by code
1702
+ */ getCurrencyByCode(code) {
1703
+ return from(this.ensureConfigured().currencies.getByCode(code));
1704
+ }
1705
+ /**
1706
+ * Get all currencies (no pagination)
1707
+ */ getAllCurrencies() {
1708
+ return from(this.ensureConfigured().currencies.all());
1709
+ }
1710
+ // ─────────────────────────────────────────────────────────────────────────────
1711
+ // Guests Service
1712
+ // ─────────────────────────────────────────────────────────────────────────────
1713
+ /**
1714
+ * List guests with pagination
1715
+ */ listGuests(params) {
1716
+ return from(this.ensureConfigured().guests.list(params));
1717
+ }
1718
+ /**
1719
+ * Get a guest by ID
1720
+ */ getGuest(id) {
1721
+ return from(this.ensureConfigured().guests.get(id));
1722
+ }
1723
+ /**
1724
+ * Track a guest visit
1725
+ */ trackGuest() {
1726
+ return from(this.ensureConfigured().guests.track());
1727
+ }
1728
+ /**
1729
+ * Convert guest to user (registration)
1730
+ */ convertGuest(id) {
1731
+ return from(this.ensureConfigured().guests.convert(id));
1732
+ }
1733
+ // ─────────────────────────────────────────────────────────────────────────────
1734
+ // Magic Links Service
1735
+ // ─────────────────────────────────────────────────────────────────────────────
1736
+ /**
1737
+ * List magic links with pagination
1738
+ */ listMagicLinks(params) {
1739
+ return from(this.ensureConfigured().magicLinks.list(params));
1740
+ }
1741
+ /**
1742
+ * Get a magic link by ID
1743
+ */ getMagicLink(id) {
1744
+ return from(this.ensureConfigured().magicLinks.get(id));
1745
+ }
1746
+ /**
1747
+ * Create a magic link
1748
+ */ createMagicLink(request) {
1749
+ return from(this.ensureConfigured().magicLinks.create(request));
1750
+ }
1751
+ /**
1752
+ * Validate a magic link token
1753
+ */ validateMagicLink(token) {
1754
+ return from(this.ensureConfigured().magicLinks.validate(token));
1755
+ }
1756
+ /**
1757
+ * Expire a magic link
1758
+ */ expireMagicLink(id) {
1759
+ return from(this.ensureConfigured().magicLinks.expire(id));
1760
+ }
1761
+ // ─────────────────────────────────────────────────────────────────────────────
1762
+ // Refresh Tokens Service
1763
+ // ─────────────────────────────────────────────────────────────────────────────
1764
+ /**
1765
+ * List refresh tokens for the current user
1766
+ */ listRefreshTokens(params) {
1767
+ return from(this.ensureConfigured().refreshTokens.list(params));
1768
+ }
1769
+ /**
1770
+ * Get a refresh token by ID
1771
+ */ getRefreshToken(id) {
1772
+ return from(this.ensureConfigured().refreshTokens.get(id));
1773
+ }
1774
+ /**
1775
+ * Revoke a refresh token
1776
+ */ revokeRefreshToken(id) {
1777
+ return from(this.ensureConfigured().refreshTokens.revoke(id));
1778
+ }
1779
+ /**
1780
+ * Revoke all refresh tokens for current user
1781
+ */ revokeAllRefreshTokens() {
1782
+ return from(this.ensureConfigured().refreshTokens.revokeAll());
1783
+ }
1784
+ /**
1785
+ * Revoke all refresh tokens except current
1786
+ */ revokeOtherRefreshTokens() {
1787
+ return from(this.ensureConfigured().refreshTokens.revokeOthers());
1788
+ }
1789
+ // ─────────────────────────────────────────────────────────────────────────────
1790
+ // User Devices Service
1791
+ // ─────────────────────────────────────────────────────────────────────────────
1792
+ /**
1793
+ * List devices for current user
1794
+ */ listDevices(params) {
1795
+ return from(this.ensureConfigured().userDevices.list(params));
1796
+ }
1797
+ /**
1798
+ * Get a device by ID
1799
+ */ getDevice(id) {
1800
+ return from(this.ensureConfigured().userDevices.get(id));
1801
+ }
1802
+ /**
1803
+ * Register a new device
1804
+ */ registerDevice(request) {
1805
+ return from(this.ensureConfigured().userDevices.register(request));
1806
+ }
1807
+ /**
1808
+ * Update device settings
1809
+ */ updateDevice(id, request) {
1810
+ return from(this.ensureConfigured().userDevices.update(id, request));
1811
+ }
1812
+ /**
1813
+ * Unregister a device
1814
+ */ unregisterDevice(id) {
1815
+ return from(this.ensureConfigured().userDevices.unregister(id));
1816
+ }
1817
+ /**
1818
+ * Set default device
1819
+ */ setDefaultDevice(id) {
1820
+ return from(this.ensureConfigured().userDevices.setDefault(id));
1821
+ }
1822
+ // ─────────────────────────────────────────────────────────────────────────────
1823
+ // Tenant Users Service
1824
+ // ─────────────────────────────────────────────────────────────────────────────
1825
+ /**
1826
+ * Get current tenant user context
1827
+ */ getCurrentTenantUser() {
1828
+ return from(this.ensureConfigured().tenantUsers.current());
1829
+ }
1830
+ /**
1831
+ * Get tenant user by user ID
1832
+ */ getTenantUser(userUniqueId) {
1833
+ return from(this.ensureConfigured().tenantUsers.get(userUniqueId));
1834
+ }
1835
+ /**
1836
+ * List tenant users
1837
+ */ listTenantUsers(params) {
1838
+ return from(this.ensureConfigured().tenantUsers.list(params));
1839
+ }
1840
+ // ─────────────────────────────────────────────────────────────────────────────
1841
+ // Mail Templates Service
1842
+ // ─────────────────────────────────────────────────────────────────────────────
1843
+ /**
1844
+ * List mail templates with pagination
1845
+ */ listMailTemplates(params) {
1846
+ return from(this.ensureConfigured().mailTemplates.list(params));
1847
+ }
1848
+ /**
1849
+ * Get a mail template by ID
1850
+ */ getMailTemplate(id) {
1851
+ return from(this.ensureConfigured().mailTemplates.get(id));
1852
+ }
1853
+ /**
1854
+ * Get a mail template by event name
1855
+ */ getMailTemplateByEvent(eventName) {
1856
+ return from(this.ensureConfigured().mailTemplates.getByEvent(eventName));
1857
+ }
1858
+ /**
1859
+ * Update a mail template
1860
+ */ updateMailTemplate(id, template) {
1861
+ return from(this.ensureConfigured().mailTemplates.update(id, template));
1862
+ }
1863
+ // ─────────────────────────────────────────────────────────────────────────────
1405
1864
  // Token Management (only applicable with provideBlocks23)
1406
1865
  // ─────────────────────────────────────────────────────────────────────────────
1407
1866
  /**
@@ -1504,7 +1963,7 @@ typeof SuppressedError === "function" ? SuppressedError : function _SuppressedEr
1504
1963
  /**
1505
1964
  * Access the underlying block for advanced operations
1506
1965
  * Use this when you need access to services not wrapped by this Angular service
1507
- */ get rawBlock() {
1966
+ */ get authenticationBlock() {
1508
1967
  return this.ensureConfigured();
1509
1968
  }
1510
1969
  constructor(serviceTransport, legacyTransport, config, tokenManager, simpleConfig){
@@ -1698,7 +2157,7 @@ typeof SuppressedError === "function" ? SuppressedError : function _SuppressedEr
1698
2157
  // ─────────────────────────────────────────────────────────────────────────────
1699
2158
  /**
1700
2159
  * Access the underlying block for advanced operations
1701
- */ get rawBlock() {
2160
+ */ get searchBlock() {
1702
2161
  return this.ensureConfigured();
1703
2162
  }
1704
2163
  constructor(serviceTransport, legacyTransport, config){
@@ -2135,7 +2594,7 @@ typeof SuppressedError === "function" ? SuppressedError : function _SuppressedEr
2135
2594
  /**
2136
2595
  * Access the underlying block for advanced operations
2137
2596
  * Use this when you need access to services not wrapped by this Angular service
2138
- */ get rawBlock() {
2597
+ */ get productsBlock() {
2139
2598
  return this.ensureConfigured();
2140
2599
  }
2141
2600
  constructor(serviceTransport, legacyTransport, config){
@@ -2255,6 +2714,48 @@ typeof SuppressedError === "function" ? SuppressedError : function _SuppressedEr
2255
2714
  return from(this.ensureConfigured().contacts.listDeleted(params));
2256
2715
  }
2257
2716
  // ─────────────────────────────────────────────────────────────────────────────
2717
+ // Contact Events Service
2718
+ // ─────────────────────────────────────────────────────────────────────────────
2719
+ listContactEvents(params) {
2720
+ return from(this.ensureConfigured().contactEvents.list(params));
2721
+ }
2722
+ getContactEvent(uniqueId) {
2723
+ return from(this.ensureConfigured().contactEvents.get(uniqueId));
2724
+ }
2725
+ createContactEvent(data) {
2726
+ return from(this.ensureConfigured().contactEvents.create(data));
2727
+ }
2728
+ updateContactEvent(uniqueId, data) {
2729
+ return from(this.ensureConfigured().contactEvents.update(uniqueId, data));
2730
+ }
2731
+ deleteContactEvent(uniqueId) {
2732
+ return from(this.ensureConfigured().contactEvents.delete(uniqueId));
2733
+ }
2734
+ studentConfirmation(uniqueId, request) {
2735
+ return from(this.ensureConfigured().contactEvents.studentConfirmation(uniqueId, request));
2736
+ }
2737
+ studentCheckin(uniqueId, request) {
2738
+ return from(this.ensureConfigured().contactEvents.studentCheckin(uniqueId, request));
2739
+ }
2740
+ teacherConfirmation(uniqueId, request) {
2741
+ return from(this.ensureConfigured().contactEvents.teacherConfirmation(uniqueId, request));
2742
+ }
2743
+ teacherCheckin(uniqueId, request) {
2744
+ return from(this.ensureConfigured().contactEvents.teacherCheckin(uniqueId, request));
2745
+ }
2746
+ checkout(uniqueId, request) {
2747
+ return from(this.ensureConfigured().contactEvents.checkout(uniqueId, request));
2748
+ }
2749
+ checkoutStudent(uniqueId, request) {
2750
+ return from(this.ensureConfigured().contactEvents.checkoutStudent(uniqueId, request));
2751
+ }
2752
+ studentNotes(uniqueId, request) {
2753
+ return from(this.ensureConfigured().contactEvents.studentNotes(uniqueId, request));
2754
+ }
2755
+ adminNotes(uniqueId, request) {
2756
+ return from(this.ensureConfigured().contactEvents.adminNotes(uniqueId, request));
2757
+ }
2758
+ // ─────────────────────────────────────────────────────────────────────────────
2258
2759
  // Leads Service
2259
2760
  // ─────────────────────────────────────────────────────────────────────────────
2260
2761
  listLeads(params) {
@@ -2282,6 +2783,24 @@ typeof SuppressedError === "function" ? SuppressedError : function _SuppressedEr
2282
2783
  return from(this.ensureConfigured().leads.listDeleted(params));
2283
2784
  }
2284
2785
  // ─────────────────────────────────────────────────────────────────────────────
2786
+ // Lead Follows Service
2787
+ // ─────────────────────────────────────────────────────────────────────────────
2788
+ listLeadFollows(leadUniqueId, params) {
2789
+ return from(this.ensureConfigured().leadFollows.list(leadUniqueId, params));
2790
+ }
2791
+ getLeadFollow(leadUniqueId, followUniqueId) {
2792
+ return from(this.ensureConfigured().leadFollows.get(leadUniqueId, followUniqueId));
2793
+ }
2794
+ createLeadFollow(leadUniqueId, data) {
2795
+ return from(this.ensureConfigured().leadFollows.create(leadUniqueId, data));
2796
+ }
2797
+ updateLeadFollow(leadUniqueId, followUniqueId, data) {
2798
+ return from(this.ensureConfigured().leadFollows.update(leadUniqueId, followUniqueId, data));
2799
+ }
2800
+ deleteLeadFollow(leadUniqueId, followUniqueId) {
2801
+ return from(this.ensureConfigured().leadFollows.delete(leadUniqueId, followUniqueId));
2802
+ }
2803
+ // ─────────────────────────────────────────────────────────────────────────────
2285
2804
  // Opportunities Service
2286
2805
  // ─────────────────────────────────────────────────────────────────────────────
2287
2806
  listOpportunities(params) {
@@ -2336,6 +2855,54 @@ typeof SuppressedError === "function" ? SuppressedError : function _SuppressedEr
2336
2855
  return from(this.ensureConfigured().meetings.listDeleted(params));
2337
2856
  }
2338
2857
  // ─────────────────────────────────────────────────────────────────────────────
2858
+ // Meeting Participants Service
2859
+ // ─────────────────────────────────────────────────────────────────────────────
2860
+ listMeetingParticipants(meetingUniqueId, params) {
2861
+ return from(this.ensureConfigured().meetingParticipants.list(meetingUniqueId, params));
2862
+ }
2863
+ createMeetingParticipant(meetingUniqueId, data) {
2864
+ return from(this.ensureConfigured().meetingParticipants.create(meetingUniqueId, data));
2865
+ }
2866
+ deleteMeetingParticipant(meetingUniqueId, participantUniqueId) {
2867
+ return from(this.ensureConfigured().meetingParticipants.delete(meetingUniqueId, participantUniqueId));
2868
+ }
2869
+ // ─────────────────────────────────────────────────────────────────────────────
2870
+ // Meeting Billings Service
2871
+ // ─────────────────────────────────────────────────────────────────────────────
2872
+ listMeetingBillings(meetingUniqueId, params) {
2873
+ return from(this.ensureConfigured().meetingBillings.list(meetingUniqueId, params));
2874
+ }
2875
+ getMeetingBilling(uniqueId) {
2876
+ return from(this.ensureConfigured().meetingBillings.get(uniqueId));
2877
+ }
2878
+ createMeetingBilling(meetingUniqueId, data) {
2879
+ return from(this.ensureConfigured().meetingBillings.create(meetingUniqueId, data));
2880
+ }
2881
+ updateMeetingBilling(uniqueId, data) {
2882
+ return from(this.ensureConfigured().meetingBillings.update(uniqueId, data));
2883
+ }
2884
+ deleteMeetingBilling(uniqueId) {
2885
+ return from(this.ensureConfigured().meetingBillings.delete(uniqueId));
2886
+ }
2887
+ getPaymentSplit(uniqueId) {
2888
+ return from(this.ensureConfigured().meetingBillings.getPaymentSplit(uniqueId));
2889
+ }
2890
+ getEapSessions(participantEmail, payerName) {
2891
+ return from(this.ensureConfigured().meetingBillings.getEapSessions(participantEmail, payerName));
2892
+ }
2893
+ getOutstandingByPayer() {
2894
+ return from(this.ensureConfigured().meetingBillings.getOutstandingByPayer());
2895
+ }
2896
+ getBillingRevenueReport() {
2897
+ return from(this.ensureConfigured().meetingBillings.getRevenueReport());
2898
+ }
2899
+ getBillingAgingReport() {
2900
+ return from(this.ensureConfigured().meetingBillings.getAgingReport());
2901
+ }
2902
+ getBillingParticipantReport(participantEmail) {
2903
+ return from(this.ensureConfigured().meetingBillings.getParticipantReport(participantEmail));
2904
+ }
2905
+ // ─────────────────────────────────────────────────────────────────────────────
2339
2906
  // Quotes Service
2340
2907
  // ─────────────────────────────────────────────────────────────────────────────
2341
2908
  listQuotes(params) {
@@ -2363,23 +2930,263 @@ typeof SuppressedError === "function" ? SuppressedError : function _SuppressedEr
2363
2930
  return from(this.ensureConfigured().quotes.listDeleted(params));
2364
2931
  }
2365
2932
  // ─────────────────────────────────────────────────────────────────────────────
2366
- // Direct Block Access (for advanced usage)
2933
+ // Subscribers Service
2367
2934
  // ─────────────────────────────────────────────────────────────────────────────
2368
- /**
2369
- * Access the underlying block for advanced operations
2370
- * Use this when you need access to services not wrapped by this Angular service
2371
- */ get rawBlock() {
2372
- return this.ensureConfigured();
2935
+ listSubscribers(params) {
2936
+ return from(this.ensureConfigured().subscribers.list(params));
2373
2937
  }
2374
- constructor(serviceTransport, legacyTransport, config){
2375
- const transport = serviceTransport != null ? serviceTransport : legacyTransport;
2376
- this.block = transport ? createCrmBlock(transport, config) : null;
2938
+ getSubscriber(uniqueId) {
2939
+ return from(this.ensureConfigured().subscribers.get(uniqueId));
2377
2940
  }
2378
- }, _classThis = _class, (()=>{
2379
- const _metadata = typeof Symbol === "function" && Symbol.metadata ? Object.create(null) : void 0;
2380
- __esDecorate(null, _classDescriptor = {
2381
- value: _classThis
2382
- }, _classDecorators, {
2941
+ createSubscriber(data) {
2942
+ return from(this.ensureConfigured().subscribers.create(data));
2943
+ }
2944
+ updateSubscriber(uniqueId, data) {
2945
+ return from(this.ensureConfigured().subscribers.update(uniqueId, data));
2946
+ }
2947
+ deleteSubscriber(uniqueId) {
2948
+ return from(this.ensureConfigured().subscribers.delete(uniqueId));
2949
+ }
2950
+ // ─────────────────────────────────────────────────────────────────────────────
2951
+ // Referrals Service
2952
+ // ─────────────────────────────────────────────────────────────────────────────
2953
+ listReferrals(params) {
2954
+ return from(this.ensureConfigured().referrals.list(params));
2955
+ }
2956
+ getReferral(uniqueId) {
2957
+ return from(this.ensureConfigured().referrals.get(uniqueId));
2958
+ }
2959
+ createReferral(data) {
2960
+ return from(this.ensureConfigured().referrals.create(data));
2961
+ }
2962
+ updateReferral(uniqueId, data) {
2963
+ return from(this.ensureConfigured().referrals.update(uniqueId, data));
2964
+ }
2965
+ deleteReferral(uniqueId) {
2966
+ return from(this.ensureConfigured().referrals.delete(uniqueId));
2967
+ }
2968
+ // ─────────────────────────────────────────────────────────────────────────────
2969
+ // Touches Service
2970
+ // ─────────────────────────────────────────────────────────────────────────────
2971
+ listTouches(params) {
2972
+ return from(this.ensureConfigured().touches.list(params));
2973
+ }
2974
+ getTouch(uniqueId) {
2975
+ return from(this.ensureConfigured().touches.get(uniqueId));
2976
+ }
2977
+ createTouch(data) {
2978
+ return from(this.ensureConfigured().touches.create(data));
2979
+ }
2980
+ updateTouch(uniqueId, data) {
2981
+ return from(this.ensureConfigured().touches.update(uniqueId, data));
2982
+ }
2983
+ deleteTouch(uniqueId) {
2984
+ return from(this.ensureConfigured().touches.delete(uniqueId));
2985
+ }
2986
+ // ─────────────────────────────────────────────────────────────────────────────
2987
+ // Categories Service
2988
+ // ─────────────────────────────────────────────────────────────────────────────
2989
+ listCategories(params) {
2990
+ return from(this.ensureConfigured().categories.list(params));
2991
+ }
2992
+ getCategory(uniqueId) {
2993
+ return from(this.ensureConfigured().categories.get(uniqueId));
2994
+ }
2995
+ createCategory(data) {
2996
+ return from(this.ensureConfigured().categories.create(data));
2997
+ }
2998
+ updateCategory(uniqueId, data) {
2999
+ return from(this.ensureConfigured().categories.update(uniqueId, data));
3000
+ }
3001
+ deleteCategory(uniqueId) {
3002
+ return from(this.ensureConfigured().categories.delete(uniqueId));
3003
+ }
3004
+ // ─────────────────────────────────────────────────────────────────────────────
3005
+ // Calendar Accounts Service
3006
+ // ─────────────────────────────────────────────────────────────────────────────
3007
+ listCalendarAccounts(userUniqueId, params) {
3008
+ return from(this.ensureConfigured().calendarAccounts.list(userUniqueId, params));
3009
+ }
3010
+ getCalendarAccount(userUniqueId, id) {
3011
+ return from(this.ensureConfigured().calendarAccounts.get(userUniqueId, id));
3012
+ }
3013
+ createCalendarAccount(userUniqueId, data) {
3014
+ return from(this.ensureConfigured().calendarAccounts.create(userUniqueId, data));
3015
+ }
3016
+ updateCalendarAccount(userUniqueId, id, data) {
3017
+ return from(this.ensureConfigured().calendarAccounts.update(userUniqueId, id, data));
3018
+ }
3019
+ deleteCalendarAccount(userUniqueId, id) {
3020
+ return from(this.ensureConfigured().calendarAccounts.delete(userUniqueId, id));
3021
+ }
3022
+ syncUserCalendar(userUniqueId, request) {
3023
+ return from(this.ensureConfigured().calendarAccounts.syncUser(userUniqueId, request));
3024
+ }
3025
+ syncTenantCalendar(request) {
3026
+ return from(this.ensureConfigured().calendarAccounts.syncTenant(request));
3027
+ }
3028
+ // ─────────────────────────────────────────────────────────────────────────────
3029
+ // Busy Blocks Service
3030
+ // ─────────────────────────────────────────────────────────────────────────────
3031
+ listBusyBlocks(userUniqueId, params) {
3032
+ return from(this.ensureConfigured().busyBlocks.list(userUniqueId, params));
3033
+ }
3034
+ createBusyBlock(userUniqueId, data) {
3035
+ return from(this.ensureConfigured().busyBlocks.create(userUniqueId, data));
3036
+ }
3037
+ deleteBusyBlock(userUniqueId, id) {
3038
+ return from(this.ensureConfigured().busyBlocks.delete(userUniqueId, id));
3039
+ }
3040
+ // ─────────────────────────────────────────────────────────────────────────────
3041
+ // ICS Tokens Service
3042
+ // ─────────────────────────────────────────────────────────────────────────────
3043
+ listIcsTokens(userUniqueId, params) {
3044
+ return from(this.ensureConfigured().icsTokens.list(userUniqueId, params));
3045
+ }
3046
+ createIcsToken(userUniqueId, data) {
3047
+ return from(this.ensureConfigured().icsTokens.create(userUniqueId, data));
3048
+ }
3049
+ deleteIcsToken(userUniqueId, id) {
3050
+ return from(this.ensureConfigured().icsTokens.delete(userUniqueId, id));
3051
+ }
3052
+ // ─────────────────────────────────────────────────────────────────────────────
3053
+ // Zoom Meetings Service
3054
+ // ─────────────────────────────────────────────────────────────────────────────
3055
+ getZoomMeeting(userUniqueId, meetingUniqueId) {
3056
+ return from(this.ensureConfigured().zoomMeetings.get(userUniqueId, meetingUniqueId));
3057
+ }
3058
+ provisionZoomMeeting(userUniqueId, meetingUniqueId, request) {
3059
+ return from(this.ensureConfigured().zoomMeetings.provision(userUniqueId, meetingUniqueId, request));
3060
+ }
3061
+ updateZoomMeeting(userUniqueId, meetingUniqueId, request) {
3062
+ return from(this.ensureConfigured().zoomMeetings.update(userUniqueId, meetingUniqueId, request));
3063
+ }
3064
+ cancelZoomMeeting(userUniqueId, meetingUniqueId) {
3065
+ return from(this.ensureConfigured().zoomMeetings.cancel(userUniqueId, meetingUniqueId));
3066
+ }
3067
+ checkZoomAvailability(userUniqueId) {
3068
+ return from(this.ensureConfigured().zoomMeetings.checkAvailability(userUniqueId));
3069
+ }
3070
+ // ─────────────────────────────────────────────────────────────────────────────
3071
+ // Zoom Hosts Service
3072
+ // ─────────────────────────────────────────────────────────────────────────────
3073
+ listZoomHosts(params) {
3074
+ return from(this.ensureConfigured().zoomHosts.list(params));
3075
+ }
3076
+ getZoomHost(uniqueId) {
3077
+ return from(this.ensureConfigured().zoomHosts.get(uniqueId));
3078
+ }
3079
+ createZoomHost(data) {
3080
+ return from(this.ensureConfigured().zoomHosts.create(data));
3081
+ }
3082
+ updateZoomHost(uniqueId, data) {
3083
+ return from(this.ensureConfigured().zoomHosts.update(uniqueId, data));
3084
+ }
3085
+ deleteZoomHost(uniqueId) {
3086
+ return from(this.ensureConfigured().zoomHosts.delete(uniqueId));
3087
+ }
3088
+ getZoomHostAvailability(uniqueId) {
3089
+ return from(this.ensureConfigured().zoomHosts.getAvailability(uniqueId));
3090
+ }
3091
+ getZoomHostAllocations(uniqueId) {
3092
+ return from(this.ensureConfigured().zoomHosts.getAllocations(uniqueId));
3093
+ }
3094
+ getAvailableZoomUsers() {
3095
+ return from(this.ensureConfigured().zoomHosts.getAvailableUsers());
3096
+ }
3097
+ // ─────────────────────────────────────────────────────────────────────────────
3098
+ // Mail Templates Service
3099
+ // ─────────────────────────────────────────────────────────────────────────────
3100
+ listMailTemplates(params) {
3101
+ return from(this.ensureConfigured().mailTemplates.list(params));
3102
+ }
3103
+ getMailTemplate(uniqueId) {
3104
+ return from(this.ensureConfigured().mailTemplates.get(uniqueId));
3105
+ }
3106
+ createMailTemplate(data) {
3107
+ return from(this.ensureConfigured().mailTemplates.create(data));
3108
+ }
3109
+ updateMailTemplate(uniqueId, data) {
3110
+ return from(this.ensureConfigured().mailTemplates.update(uniqueId, data));
3111
+ }
3112
+ getMandrillStats(uniqueId) {
3113
+ return from(this.ensureConfigured().mailTemplates.getMandrillStats(uniqueId));
3114
+ }
3115
+ createMandrillTemplate(uniqueId, data) {
3116
+ return from(this.ensureConfigured().mailTemplates.createMandrillTemplate(uniqueId, data));
3117
+ }
3118
+ updateMandrillTemplate(uniqueId, data) {
3119
+ return from(this.ensureConfigured().mailTemplates.updateMandrillTemplate(uniqueId, data));
3120
+ }
3121
+ publishMandrill(uniqueId) {
3122
+ return from(this.ensureConfigured().mailTemplates.publishMandrill(uniqueId));
3123
+ }
3124
+ // ─────────────────────────────────────────────────────────────────────────────
3125
+ // Communications Service
3126
+ // ─────────────────────────────────────────────────────────────────────────────
3127
+ unsubscribe(data) {
3128
+ return from(this.ensureConfigured().communications.unsubscribe(data));
3129
+ }
3130
+ // ─────────────────────────────────────────────────────────────────────────────
3131
+ // CRM Users Service
3132
+ // ─────────────────────────────────────────────────────────────────────────────
3133
+ listCrmUsers(params) {
3134
+ return from(this.ensureConfigured().users.list(params));
3135
+ }
3136
+ getCrmUser(uniqueId) {
3137
+ return from(this.ensureConfigured().users.get(uniqueId));
3138
+ }
3139
+ registerCrmUser(uniqueId, data) {
3140
+ return from(this.ensureConfigured().users.register(uniqueId, data));
3141
+ }
3142
+ deleteCrmUser(uniqueId) {
3143
+ return from(this.ensureConfigured().users.delete(uniqueId));
3144
+ }
3145
+ getCrmUserContacts(uniqueId) {
3146
+ return from(this.ensureConfigured().users.getContacts(uniqueId));
3147
+ }
3148
+ getCrmUserMeetings(uniqueId) {
3149
+ return from(this.ensureConfigured().users.getMeetings(uniqueId));
3150
+ }
3151
+ // ─────────────────────────────────────────────────────────────────────────────
3152
+ // Billing Reports Service
3153
+ // ─────────────────────────────────────────────────────────────────────────────
3154
+ getRevenueReport(params) {
3155
+ return from(this.ensureConfigured().billingReports.getRevenueReport(params));
3156
+ }
3157
+ getAgingReport() {
3158
+ return from(this.ensureConfigured().billingReports.getAgingReport());
3159
+ }
3160
+ getParticipantBillingReport(participantEmail) {
3161
+ return from(this.ensureConfigured().billingReports.getParticipantReport(participantEmail));
3162
+ }
3163
+ // ─────────────────────────────────────────────────────────────────────────────
3164
+ // Calendar Sync Service
3165
+ // ─────────────────────────────────────────────────────────────────────────────
3166
+ syncCalendarUser(userUniqueId) {
3167
+ return from(this.ensureConfigured().calendarSync.syncUser(userUniqueId));
3168
+ }
3169
+ syncCalendarTenant() {
3170
+ return from(this.ensureConfigured().calendarSync.syncTenant());
3171
+ }
3172
+ // ─────────────────────────────────────────────────────────────────────────────
3173
+ // Direct Block Access (for advanced usage)
3174
+ // ─────────────────────────────────────────────────────────────────────────────
3175
+ /**
3176
+ * Access the underlying block for advanced operations
3177
+ * Use this when you need access to services not wrapped by this Angular service
3178
+ */ get crmBlock() {
3179
+ return this.ensureConfigured();
3180
+ }
3181
+ constructor(serviceTransport, legacyTransport, config){
3182
+ const transport = serviceTransport != null ? serviceTransport : legacyTransport;
3183
+ this.block = transport ? createCrmBlock(transport, config) : null;
3184
+ }
3185
+ }, _classThis = _class, (()=>{
3186
+ const _metadata = typeof Symbol === "function" && Symbol.metadata ? Object.create(null) : void 0;
3187
+ __esDecorate(null, _classDescriptor = {
3188
+ value: _classThis
3189
+ }, _classDecorators, {
2383
3190
  kind: "class",
2384
3191
  name: _classThis.name,
2385
3192
  metadata: _metadata
@@ -2635,7 +3442,7 @@ typeof SuppressedError === "function" ? SuppressedError : function _SuppressedEr
2635
3442
  /**
2636
3443
  * Access the underlying block for advanced operations
2637
3444
  * Use this when you need access to services not wrapped by this Angular service
2638
- */ get rawBlock() {
3445
+ */ get contentBlock() {
2639
3446
  return this.ensureConfigured();
2640
3447
  }
2641
3448
  constructor(serviceTransport, legacyTransport, config){
@@ -2893,6 +3700,268 @@ typeof SuppressedError === "function" ? SuppressedError : function _SuppressedEr
2893
3700
  return from(this.ensureConfigured().premises.listDeleted(params));
2894
3701
  }
2895
3702
  // ─────────────────────────────────────────────────────────────────────────────
3703
+ // Premise Events Service
3704
+ // ─────────────────────────────────────────────────────────────────────────────
3705
+ /**
3706
+ * List all premise events
3707
+ */ listPremiseEvents(locationUniqueId, premiseUniqueId, params) {
3708
+ return from(this.ensureConfigured().premiseEvents.list(locationUniqueId, premiseUniqueId, params));
3709
+ }
3710
+ /**
3711
+ * Get a premise event by unique ID
3712
+ */ getPremiseEvent(locationUniqueId, premiseUniqueId, uniqueId) {
3713
+ return from(this.ensureConfigured().premiseEvents.get(locationUniqueId, premiseUniqueId, uniqueId));
3714
+ }
3715
+ /**
3716
+ * Create a new premise event
3717
+ */ createPremiseEvent(locationUniqueId, premiseUniqueId, data) {
3718
+ return from(this.ensureConfigured().premiseEvents.create(locationUniqueId, premiseUniqueId, data));
3719
+ }
3720
+ /**
3721
+ * Update a premise event
3722
+ */ updatePremiseEvent(locationUniqueId, premiseUniqueId, uniqueId, data) {
3723
+ return from(this.ensureConfigured().premiseEvents.update(locationUniqueId, premiseUniqueId, uniqueId, data));
3724
+ }
3725
+ /**
3726
+ * Delete a premise event
3727
+ */ deletePremiseEvent(locationUniqueId, premiseUniqueId, uniqueId) {
3728
+ return from(this.ensureConfigured().premiseEvents.delete(locationUniqueId, premiseUniqueId, uniqueId));
3729
+ }
3730
+ // ─────────────────────────────────────────────────────────────────────────────
3731
+ // Route Tracker Service
3732
+ // ─────────────────────────────────────────────────────────────────────────────
3733
+ /**
3734
+ * Record a location point for a route
3735
+ */ recordRouteLocation(userUniqueId, routeUniqueId, data) {
3736
+ return from(this.ensureConfigured().routeTracker.recordLocation(userUniqueId, routeUniqueId, data));
3737
+ }
3738
+ /**
3739
+ * Get route tracking status
3740
+ */ getRouteTrackerStatus(userUniqueId, routeUniqueId) {
3741
+ return from(this.ensureConfigured().routeTracker.getStatus(userUniqueId, routeUniqueId));
3742
+ }
3743
+ /**
3744
+ * List all recorded locations for a route
3745
+ */ listRouteLocations(userUniqueId, routeUniqueId, params) {
3746
+ return from(this.ensureConfigured().routeTracker.listLocations(userUniqueId, routeUniqueId, params));
3747
+ }
3748
+ /**
3749
+ * Start tracking for a route
3750
+ */ startRouteTracking(userUniqueId, routeUniqueId) {
3751
+ return from(this.ensureConfigured().routeTracker.startTracking(userUniqueId, routeUniqueId));
3752
+ }
3753
+ /**
3754
+ * Stop tracking for a route
3755
+ */ stopRouteTracking(userUniqueId, routeUniqueId) {
3756
+ return from(this.ensureConfigured().routeTracker.stopTracking(userUniqueId, routeUniqueId));
3757
+ }
3758
+ // ─────────────────────────────────────────────────────────────────────────────
3759
+ // Location Hours Service
3760
+ // ─────────────────────────────────────────────────────────────────────────────
3761
+ /**
3762
+ * List all hours for a location
3763
+ */ listLocationHours(locationUniqueId) {
3764
+ return from(this.ensureConfigured().locationHours.list(locationUniqueId));
3765
+ }
3766
+ /**
3767
+ * Get a location hour by unique ID
3768
+ */ getLocationHour(locationUniqueId, hourUniqueId) {
3769
+ return from(this.ensureConfigured().locationHours.get(locationUniqueId, hourUniqueId));
3770
+ }
3771
+ /**
3772
+ * Create a new location hour
3773
+ */ createLocationHour(locationUniqueId, data) {
3774
+ return from(this.ensureConfigured().locationHours.create(locationUniqueId, data));
3775
+ }
3776
+ /**
3777
+ * Update a location hour
3778
+ */ updateLocationHour(locationUniqueId, hourUniqueId, data) {
3779
+ return from(this.ensureConfigured().locationHours.update(locationUniqueId, hourUniqueId, data));
3780
+ }
3781
+ /**
3782
+ * Delete a location hour
3783
+ */ deleteLocationHour(locationUniqueId, hourUniqueId) {
3784
+ return from(this.ensureConfigured().locationHours.delete(locationUniqueId, hourUniqueId));
3785
+ }
3786
+ // ─────────────────────────────────────────────────────────────────────────────
3787
+ // Location Images Service
3788
+ // ─────────────────────────────────────────────────────────────────────────────
3789
+ /**
3790
+ * Get a presigned URL for uploading an image
3791
+ */ presignLocationImage(locationUniqueId, data) {
3792
+ return from(this.ensureConfigured().locationImages.presign(locationUniqueId, data));
3793
+ }
3794
+ /**
3795
+ * Create a new location image
3796
+ */ createLocationImage(locationUniqueId, data) {
3797
+ return from(this.ensureConfigured().locationImages.create(locationUniqueId, data));
3798
+ }
3799
+ /**
3800
+ * Delete a location image
3801
+ */ deleteLocationImage(locationUniqueId, imageUniqueId) {
3802
+ return from(this.ensureConfigured().locationImages.delete(locationUniqueId, imageUniqueId));
3803
+ }
3804
+ // ─────────────────────────────────────────────────────────────────────────────
3805
+ // Location Slots Service
3806
+ // ─────────────────────────────────────────────────────────────────────────────
3807
+ /**
3808
+ * List all slots for a location
3809
+ */ listLocationSlots(locationUniqueId) {
3810
+ return from(this.ensureConfigured().locationSlots.list(locationUniqueId));
3811
+ }
3812
+ /**
3813
+ * Get a location slot by unique ID
3814
+ */ getLocationSlot(locationUniqueId, slotUniqueId) {
3815
+ return from(this.ensureConfigured().locationSlots.get(locationUniqueId, slotUniqueId));
3816
+ }
3817
+ /**
3818
+ * Create a new location slot
3819
+ */ createLocationSlot(locationUniqueId, data) {
3820
+ return from(this.ensureConfigured().locationSlots.create(locationUniqueId, data));
3821
+ }
3822
+ /**
3823
+ * Update a location slot
3824
+ */ updateLocationSlot(locationUniqueId, slotUniqueId, data) {
3825
+ return from(this.ensureConfigured().locationSlots.update(locationUniqueId, slotUniqueId, data));
3826
+ }
3827
+ /**
3828
+ * Delete a location slot
3829
+ */ deleteLocationSlot(locationUniqueId, slotUniqueId) {
3830
+ return from(this.ensureConfigured().locationSlots.delete(locationUniqueId, slotUniqueId));
3831
+ }
3832
+ // ─────────────────────────────────────────────────────────────────────────────
3833
+ // Location Taxes Service
3834
+ // ─────────────────────────────────────────────────────────────────────────────
3835
+ /**
3836
+ * Create a new location tax
3837
+ */ createLocationTax(locationUniqueId, data) {
3838
+ return from(this.ensureConfigured().locationTaxes.create(locationUniqueId, data));
3839
+ }
3840
+ /**
3841
+ * Update a location tax
3842
+ */ updateLocationTax(locationUniqueId, taxUniqueId, data) {
3843
+ return from(this.ensureConfigured().locationTaxes.update(locationUniqueId, taxUniqueId, data));
3844
+ }
3845
+ /**
3846
+ * Delete a location tax
3847
+ */ deleteLocationTax(locationUniqueId, taxUniqueId) {
3848
+ return from(this.ensureConfigured().locationTaxes.delete(locationUniqueId, taxUniqueId));
3849
+ }
3850
+ // ─────────────────────────────────────────────────────────────────────────────
3851
+ // Location Groups Service
3852
+ // ─────────────────────────────────────────────────────────────────────────────
3853
+ /**
3854
+ * List all location groups
3855
+ */ listLocationGroups(params) {
3856
+ return from(this.ensureConfigured().locationGroups.list(params));
3857
+ }
3858
+ /**
3859
+ * Get a location group by unique ID
3860
+ */ getLocationGroup(uniqueId) {
3861
+ return from(this.ensureConfigured().locationGroups.get(uniqueId));
3862
+ }
3863
+ /**
3864
+ * Create a new location group
3865
+ */ createLocationGroup(data) {
3866
+ return from(this.ensureConfigured().locationGroups.create(data));
3867
+ }
3868
+ // ─────────────────────────────────────────────────────────────────────────────
3869
+ // Geo Identities Service
3870
+ // ─────────────────────────────────────────────────────────────────────────────
3871
+ /**
3872
+ * List all geo identities
3873
+ */ listGeoIdentities(params) {
3874
+ return from(this.ensureConfigured().identities.list(params));
3875
+ }
3876
+ /**
3877
+ * Get a geo identity by unique ID
3878
+ */ getGeoIdentity(uniqueId) {
3879
+ return from(this.ensureConfigured().identities.get(uniqueId));
3880
+ }
3881
+ /**
3882
+ * Register a geo identity
3883
+ */ registerGeoIdentity(uniqueId, data) {
3884
+ return from(this.ensureConfigured().identities.register(uniqueId, data));
3885
+ }
3886
+ /**
3887
+ * Update a geo identity
3888
+ */ updateGeoIdentity(uniqueId, data) {
3889
+ return from(this.ensureConfigured().identities.update(uniqueId, data));
3890
+ }
3891
+ /**
3892
+ * Delete a geo identity
3893
+ */ deleteGeoIdentity(uniqueId) {
3894
+ return from(this.ensureConfigured().identities.delete(uniqueId));
3895
+ }
3896
+ /**
3897
+ * Add an identity to a location
3898
+ */ addIdentityToLocation(locationUniqueId, data) {
3899
+ return from(this.ensureConfigured().identities.addToLocation(locationUniqueId, data));
3900
+ }
3901
+ /**
3902
+ * Remove an identity from a location
3903
+ */ removeIdentityFromLocation(locationUniqueId, userUniqueId) {
3904
+ return from(this.ensureConfigured().identities.removeFromLocation(locationUniqueId, userUniqueId));
3905
+ }
3906
+ /**
3907
+ * Update a user's location
3908
+ */ updateUserLocation(userUniqueId, data) {
3909
+ return from(this.ensureConfigured().identities.updateLocation(userUniqueId, data));
3910
+ }
3911
+ // ─────────────────────────────────────────────────────────────────────────────
3912
+ // Location Identities Service
3913
+ // ─────────────────────────────────────────────────────────────────────────────
3914
+ /**
3915
+ * List all location identities
3916
+ */ listLocationIdentities(params) {
3917
+ return from(this.ensureConfigured().locationIdentities.list(params));
3918
+ }
3919
+ /**
3920
+ * Get a location identity by unique ID
3921
+ */ getLocationIdentity(uniqueId) {
3922
+ return from(this.ensureConfigured().locationIdentities.get(uniqueId));
3923
+ }
3924
+ /**
3925
+ * Create a new location identity
3926
+ */ createLocationIdentity(data) {
3927
+ return from(this.ensureConfigured().locationIdentities.create(data));
3928
+ }
3929
+ /**
3930
+ * Update a location identity
3931
+ */ updateLocationIdentity(uniqueId, data) {
3932
+ return from(this.ensureConfigured().locationIdentities.update(uniqueId, data));
3933
+ }
3934
+ /**
3935
+ * Delete a location identity
3936
+ */ deleteLocationIdentity(uniqueId) {
3937
+ return from(this.ensureConfigured().locationIdentities.delete(uniqueId));
3938
+ }
3939
+ /**
3940
+ * Check in an identity at a location
3941
+ */ checkInLocationIdentity(locationUniqueId, identityUniqueId, identityType) {
3942
+ return from(this.ensureConfigured().locationIdentities.checkIn(locationUniqueId, identityUniqueId, identityType));
3943
+ }
3944
+ /**
3945
+ * Check out an identity from a location
3946
+ */ checkOutLocationIdentity(uniqueId) {
3947
+ return from(this.ensureConfigured().locationIdentities.checkOut(uniqueId));
3948
+ }
3949
+ /**
3950
+ * List identities by location
3951
+ */ listLocationIdentitiesByLocation(locationUniqueId, params) {
3952
+ return from(this.ensureConfigured().locationIdentities.listByLocation(locationUniqueId, params));
3953
+ }
3954
+ /**
3955
+ * List identities by identity
3956
+ */ listLocationIdentitiesByIdentity(identityUniqueId, identityType, params) {
3957
+ return from(this.ensureConfigured().locationIdentities.listByIdentity(identityUniqueId, identityType, params));
3958
+ }
3959
+ /**
3960
+ * Get current location for an identity
3961
+ */ getCurrentLocationForIdentity(identityUniqueId, identityType) {
3962
+ return from(this.ensureConfigured().locationIdentities.getCurrentLocation(identityUniqueId, identityType));
3963
+ }
3964
+ // ─────────────────────────────────────────────────────────────────────────────
2896
3965
  // Geo Countries Service
2897
3966
  // ─────────────────────────────────────────────────────────────────────────────
2898
3967
  /**
@@ -2952,7 +4021,7 @@ typeof SuppressedError === "function" ? SuppressedError : function _SuppressedEr
2952
4021
  /**
2953
4022
  * Access the underlying block for advanced operations
2954
4023
  * Use this when you need access to services not wrapped by this Angular service
2955
- */ get rawBlock() {
4024
+ */ get geolocationBlock() {
2956
4025
  return this.ensureConfigured();
2957
4026
  }
2958
4027
  constructor(serviceTransport, legacyTransport, config){
@@ -3105,6 +4174,24 @@ typeof SuppressedError === "function" ? SuppressedError : function _SuppressedEr
3105
4174
  return from(this.ensureConfigured().groups.removeMember(uniqueId, memberId));
3106
4175
  }
3107
4176
  // ─────────────────────────────────────────────────────────────────────────────
4177
+ // Group Invites Service
4178
+ // ─────────────────────────────────────────────────────────────────────────────
4179
+ listGroupInvites(groupUniqueId, params) {
4180
+ return from(this.ensureConfigured().groupInvites.list(groupUniqueId, params));
4181
+ }
4182
+ createGroupInvite(groupUniqueId, data) {
4183
+ return from(this.ensureConfigured().groupInvites.create(groupUniqueId, data));
4184
+ }
4185
+ revokeGroupInvite(groupUniqueId, code) {
4186
+ return from(this.ensureConfigured().groupInvites.revoke(groupUniqueId, code));
4187
+ }
4188
+ getGroupInviteQRCode(groupUniqueId, code) {
4189
+ return from(this.ensureConfigured().groupInvites.getQRCode(groupUniqueId, code));
4190
+ }
4191
+ joinGroupByInvite(code, data) {
4192
+ return from(this.ensureConfigured().groupInvites.join(code, data));
4193
+ }
4194
+ // ─────────────────────────────────────────────────────────────────────────────
3108
4195
  // Notifications Service
3109
4196
  // ─────────────────────────────────────────────────────────────────────────────
3110
4197
  listNotifications(params) {
@@ -3140,19 +4227,166 @@ typeof SuppressedError === "function" ? SuppressedError : function _SuppressedEr
3140
4227
  getConversation(params) {
3141
4228
  return from(this.ensureConfigured().conversations.get(params));
3142
4229
  }
3143
- listContexts() {
4230
+ listConversationContexts() {
3144
4231
  return from(this.ensureConfigured().conversations.listContexts());
3145
4232
  }
3146
- deleteContext(context) {
4233
+ deleteConversationContext(context) {
3147
4234
  return from(this.ensureConfigured().conversations.deleteContext(context));
3148
4235
  }
3149
4236
  // ─────────────────────────────────────────────────────────────────────────────
3150
- // Direct Block Access (for advanced usage)
4237
+ // WebSocket Tokens Service
3151
4238
  // ─────────────────────────────────────────────────────────────────────────────
3152
- /**
4239
+ createWebSocketToken(data) {
4240
+ return from(this.ensureConfigured().websocketTokens.create(data));
4241
+ }
4242
+ // ─────────────────────────────────────────────────────────────────────────────
4243
+ // Contexts Service
4244
+ // ─────────────────────────────────────────────────────────────────────────────
4245
+ listContexts(params) {
4246
+ return from(this.ensureConfigured().contexts.list(params));
4247
+ }
4248
+ getContext(uniqueId) {
4249
+ return from(this.ensureConfigured().contexts.get(uniqueId));
4250
+ }
4251
+ createContext(data) {
4252
+ return from(this.ensureConfigured().contexts.create(data));
4253
+ }
4254
+ updateContext(uniqueId, data) {
4255
+ return from(this.ensureConfigured().contexts.update(uniqueId, data));
4256
+ }
4257
+ listContextGroups(contextUniqueId) {
4258
+ return from(this.ensureConfigured().contexts.listGroups(contextUniqueId));
4259
+ }
4260
+ // ─────────────────────────────────────────────────────────────────────────────
4261
+ // Notification Settings Service
4262
+ // ─────────────────────────────────────────────────────────────────────────────
4263
+ getNotificationSettings(userUniqueId) {
4264
+ return from(this.ensureConfigured().notificationSettings.get(userUniqueId));
4265
+ }
4266
+ updateNotificationSettings(userUniqueId, data) {
4267
+ return from(this.ensureConfigured().notificationSettings.update(userUniqueId, data));
4268
+ }
4269
+ // ─────────────────────────────────────────────────────────────────────────────
4270
+ // Availabilities Service
4271
+ // ─────────────────────────────────────────────────────────────────────────────
4272
+ getUserAvailability(userUniqueId) {
4273
+ return from(this.ensureConfigured().availabilities.get(userUniqueId));
4274
+ }
4275
+ goOnline(data) {
4276
+ return from(this.ensureConfigured().availabilities.goOnline(data));
4277
+ }
4278
+ goOffline() {
4279
+ return from(this.ensureConfigured().availabilities.goOffline());
4280
+ }
4281
+ // ─────────────────────────────────────────────────────────────────────────────
4282
+ // Message Files Service
4283
+ // ─────────────────────────────────────────────────────────────────────────────
4284
+ getMessageFile(conversationUniqueId, fileUniqueId) {
4285
+ return from(this.ensureConfigured().messageFiles.get(conversationUniqueId, fileUniqueId));
4286
+ }
4287
+ createMessageFile(conversationUniqueId, data) {
4288
+ return from(this.ensureConfigured().messageFiles.create(conversationUniqueId, data));
4289
+ }
4290
+ deleteMessageFile(conversationUniqueId, fileUniqueId) {
4291
+ return from(this.ensureConfigured().messageFiles.delete(conversationUniqueId, fileUniqueId));
4292
+ }
4293
+ presignMessageFile(conversationUniqueId, data) {
4294
+ return from(this.ensureConfigured().messageFiles.presign(conversationUniqueId, data));
4295
+ }
4296
+ // ─────────────────────────────────────────────────────────────────────────────
4297
+ // Sources Service
4298
+ // ─────────────────────────────────────────────────────────────────────────────
4299
+ getSource(uniqueId) {
4300
+ return from(this.ensureConfigured().sources.get(uniqueId));
4301
+ }
4302
+ // ─────────────────────────────────────────────────────────────────────────────
4303
+ // Users Service
4304
+ // ─────────────────────────────────────────────────────────────────────────────
4305
+ listConversationsUsers(params) {
4306
+ return from(this.ensureConfigured().users.list(params));
4307
+ }
4308
+ getConversationsUser(uniqueId) {
4309
+ return from(this.ensureConfigured().users.get(uniqueId));
4310
+ }
4311
+ registerConversationsUser(uniqueId, data) {
4312
+ return from(this.ensureConfigured().users.register(uniqueId, data));
4313
+ }
4314
+ updateConversationsUser(uniqueId, data) {
4315
+ return from(this.ensureConfigured().users.update(uniqueId, data));
4316
+ }
4317
+ listUserGroups(uniqueId) {
4318
+ return from(this.ensureConfigured().users.listGroups(uniqueId));
4319
+ }
4320
+ listUserConversations(uniqueId, params) {
4321
+ return from(this.ensureConfigured().users.listConversations(uniqueId, params));
4322
+ }
4323
+ listUserGroupConversations(uniqueId, params) {
4324
+ return from(this.ensureConfigured().users.listGroupConversations(uniqueId, params));
4325
+ }
4326
+ listUserContextGroups(uniqueId, contextUniqueId) {
4327
+ return from(this.ensureConfigured().users.listContextGroups(uniqueId, contextUniqueId));
4328
+ }
4329
+ // ─────────────────────────────────────────────────────────────────────────────
4330
+ // Meetings Service
4331
+ // ─────────────────────────────────────────────────────────────────────────────
4332
+ listMeetings(params) {
4333
+ return from(this.ensureConfigured().meetings.list(params));
4334
+ }
4335
+ getMeeting(uniqueId) {
4336
+ return from(this.ensureConfigured().meetings.get(uniqueId));
4337
+ }
4338
+ createMeeting(data) {
4339
+ return from(this.ensureConfigured().meetings.create(data));
4340
+ }
4341
+ updateMeeting(uniqueId, data) {
4342
+ return from(this.ensureConfigured().meetings.update(uniqueId, data));
4343
+ }
4344
+ deleteMeeting(uniqueId) {
4345
+ return from(this.ensureConfigured().meetings.delete(uniqueId));
4346
+ }
4347
+ createMeetingSession(uniqueId) {
4348
+ return from(this.ensureConfigured().meetings.createSession(uniqueId));
4349
+ }
4350
+ startMeeting(uniqueId) {
4351
+ return from(this.ensureConfigured().meetings.start(uniqueId));
4352
+ }
4353
+ endMeeting(uniqueId) {
4354
+ return from(this.ensureConfigured().meetings.end(uniqueId));
4355
+ }
4356
+ // ─────────────────────────────────────────────────────────────────────────────
4357
+ // Web Notifications Service
4358
+ // ─────────────────────────────────────────────────────────────────────────────
4359
+ listWebNotifications(params) {
4360
+ return from(this.ensureConfigured().webNotifications.list(params));
4361
+ }
4362
+ getWebNotification(uniqueId) {
4363
+ return from(this.ensureConfigured().webNotifications.get(uniqueId));
4364
+ }
4365
+ sendWebNotification(data) {
4366
+ return from(this.ensureConfigured().webNotifications.send(data));
4367
+ }
4368
+ sendBulkWebNotifications(data) {
4369
+ return from(this.ensureConfigured().webNotifications.sendBulk(data));
4370
+ }
4371
+ markWebNotificationAsRead(uniqueId) {
4372
+ return from(this.ensureConfigured().webNotifications.markAsRead(uniqueId));
4373
+ }
4374
+ markWebNotificationAsClicked(uniqueId) {
4375
+ return from(this.ensureConfigured().webNotifications.markAsClicked(uniqueId));
4376
+ }
4377
+ markAllWebNotificationsAsRead(recipientUniqueId) {
4378
+ return from(this.ensureConfigured().webNotifications.markAllAsRead(recipientUniqueId));
4379
+ }
4380
+ deleteWebNotification(uniqueId) {
4381
+ return from(this.ensureConfigured().webNotifications.delete(uniqueId));
4382
+ }
4383
+ // ─────────────────────────────────────────────────────────────────────────────
4384
+ // Direct Block Access (for advanced usage)
4385
+ // ─────────────────────────────────────────────────────────────────────────────
4386
+ /**
3153
4387
  * Access the underlying block for advanced operations
3154
4388
  * Use this when you need access to services not wrapped by this Angular service
3155
- */ get rawBlock() {
4389
+ */ get conversationsBlock() {
3156
4390
  return this.ensureConfigured();
3157
4391
  }
3158
4392
  constructor(serviceTransport, legacyTransport, config){
@@ -3295,47 +4529,352 @@ typeof SuppressedError === "function" ? SuppressedError : function _SuppressedEr
3295
4529
  return from(this.ensureConfigured().fileSchemas.delete(uniqueId));
3296
4530
  }
3297
4531
  // ─────────────────────────────────────────────────────────────────────────────
4532
+ // User Files Service
4533
+ // ─────────────────────────────────────────────────────────────────────────────
4534
+ /**
4535
+ * List user files
4536
+ */ listUserFiles(userUniqueId, params) {
4537
+ return from(this.ensureConfigured().userFiles.list(userUniqueId, params));
4538
+ }
4539
+ /**
4540
+ * Get a user file
4541
+ */ getUserFile(userUniqueId, fileUniqueId) {
4542
+ return from(this.ensureConfigured().userFiles.get(userUniqueId, fileUniqueId));
4543
+ }
4544
+ /**
4545
+ * Add a user file
4546
+ */ addUserFile(userUniqueId, data) {
4547
+ return from(this.ensureConfigured().userFiles.add(userUniqueId, data));
4548
+ }
4549
+ /**
4550
+ * Update a user file
4551
+ */ updateUserFile(userUniqueId, fileUniqueId, data) {
4552
+ return from(this.ensureConfigured().userFiles.update(userUniqueId, fileUniqueId, data));
4553
+ }
4554
+ /**
4555
+ * Delete a user file
4556
+ */ deleteUserFile(userUniqueId, fileUniqueId) {
4557
+ return from(this.ensureConfigured().userFiles.delete(userUniqueId, fileUniqueId));
4558
+ }
4559
+ /**
4560
+ * Get presigned upload URL for user file
4561
+ */ presignUserFileUpload(userUniqueId, data) {
4562
+ return from(this.ensureConfigured().userFiles.presignUpload(userUniqueId, data));
4563
+ }
4564
+ /**
4565
+ * Get presigned URLs for multipart upload
4566
+ */ multipartPresignUserFile(userUniqueId, data) {
4567
+ return from(this.ensureConfigured().userFiles.multipartPresign(userUniqueId, data));
4568
+ }
4569
+ /**
4570
+ * Complete multipart upload for user file
4571
+ */ multipartCompleteUserFile(userUniqueId, data) {
4572
+ return from(this.ensureConfigured().userFiles.multipartComplete(userUniqueId, data));
4573
+ }
4574
+ /**
4575
+ * Approve a user file
4576
+ */ approveUserFile(userUniqueId, fileUniqueId) {
4577
+ return from(this.ensureConfigured().userFiles.approve(userUniqueId, fileUniqueId));
4578
+ }
4579
+ /**
4580
+ * Reject a user file
4581
+ */ rejectUserFile(userUniqueId, fileUniqueId) {
4582
+ return from(this.ensureConfigured().userFiles.reject(userUniqueId, fileUniqueId));
4583
+ }
4584
+ /**
4585
+ * Publish a user file
4586
+ */ publishUserFile(userUniqueId, fileUniqueId) {
4587
+ return from(this.ensureConfigured().userFiles.publish(userUniqueId, fileUniqueId));
4588
+ }
4589
+ /**
4590
+ * Unpublish a user file
4591
+ */ unpublishUserFile(userUniqueId, fileUniqueId) {
4592
+ return from(this.ensureConfigured().userFiles.unpublish(userUniqueId, fileUniqueId));
4593
+ }
4594
+ /**
4595
+ * Add tag to user file
4596
+ */ addTagToUserFile(userUniqueId, fileUniqueId, tagUniqueId) {
4597
+ return from(this.ensureConfigured().userFiles.addTag(userUniqueId, fileUniqueId, tagUniqueId));
4598
+ }
4599
+ /**
4600
+ * Remove tag from user file
4601
+ */ removeTagFromUserFile(userUniqueId, fileUniqueId, tagUniqueId) {
4602
+ return from(this.ensureConfigured().userFiles.removeTag(userUniqueId, fileUniqueId, tagUniqueId));
4603
+ }
4604
+ /**
4605
+ * Bulk update tags for user files
4606
+ */ bulkUpdateUserFileTags(userUniqueId, tagUniqueIds) {
4607
+ return from(this.ensureConfigured().userFiles.bulkUpdateTags(userUniqueId, tagUniqueIds));
4608
+ }
4609
+ /**
4610
+ * Request access to a user file
4611
+ */ requestUserFileAccess(userUniqueId, fileUniqueId) {
4612
+ return from(this.ensureConfigured().userFiles.requestAccess(userUniqueId, fileUniqueId));
4613
+ }
4614
+ /**
4615
+ * Get access list for a user file
4616
+ */ getUserFileAccess(userUniqueId, fileUniqueId) {
4617
+ return from(this.ensureConfigured().userFiles.getAccess(userUniqueId, fileUniqueId));
4618
+ }
4619
+ /**
4620
+ * Grant access to a user file
4621
+ */ grantUserFileAccess(userUniqueId, fileUniqueId, data) {
4622
+ return from(this.ensureConfigured().userFiles.grantAccess(userUniqueId, fileUniqueId, data));
4623
+ }
4624
+ /**
4625
+ * Revoke access to a user file
4626
+ */ revokeUserFileAccess(userUniqueId, fileUniqueId, accessUniqueId) {
4627
+ return from(this.ensureConfigured().userFiles.revokeAccess(userUniqueId, fileUniqueId, accessUniqueId));
4628
+ }
4629
+ /**
4630
+ * Make user file public
4631
+ */ makeUserFilePublic(userUniqueId, fileUniqueId) {
4632
+ return from(this.ensureConfigured().userFiles.makePublic(userUniqueId, fileUniqueId));
4633
+ }
4634
+ /**
4635
+ * Make user file private
4636
+ */ makeUserFilePrivate(userUniqueId, fileUniqueId) {
4637
+ return from(this.ensureConfigured().userFiles.makePrivate(userUniqueId, fileUniqueId));
4638
+ }
4639
+ /**
4640
+ * Bulk grant access to user files
4641
+ */ bulkGrantUserFileAccess(userUniqueId, fileUniqueIds, granteeUniqueIds) {
4642
+ return from(this.ensureConfigured().userFiles.bulkGrantAccess(userUniqueId, fileUniqueIds, granteeUniqueIds));
4643
+ }
4644
+ /**
4645
+ * Bulk revoke access to user files
4646
+ */ bulkRevokeUserFileAccess(userUniqueId, fileUniqueIds, granteeUniqueIds) {
4647
+ return from(this.ensureConfigured().userFiles.bulkRevokeAccess(userUniqueId, fileUniqueIds, granteeUniqueIds));
4648
+ }
4649
+ /**
4650
+ * List access requests for a user file
4651
+ */ listUserFileAccessRequests(userUniqueId, fileUniqueId) {
4652
+ return from(this.ensureConfigured().userFiles.listAccessRequests(userUniqueId, fileUniqueId));
4653
+ }
4654
+ /**
4655
+ * Approve access request for a user file
4656
+ */ approveUserFileAccessRequest(userUniqueId, fileUniqueId, requestUniqueId) {
4657
+ return from(this.ensureConfigured().userFiles.approveAccessRequest(userUniqueId, fileUniqueId, requestUniqueId));
4658
+ }
4659
+ /**
4660
+ * Deny access request for a user file
4661
+ */ denyUserFileAccessRequest(userUniqueId, fileUniqueId, requestUniqueId) {
4662
+ return from(this.ensureConfigured().userFiles.denyAccessRequest(userUniqueId, fileUniqueId, requestUniqueId));
4663
+ }
4664
+ /**
4665
+ * List granted delegations for a user
4666
+ */ listUserGrantedDelegations(userUniqueId) {
4667
+ return from(this.ensureConfigured().userFiles.listGrantedDelegations(userUniqueId));
4668
+ }
4669
+ /**
4670
+ * List received delegations for a user
4671
+ */ listUserReceivedDelegations(userUniqueId) {
4672
+ return from(this.ensureConfigured().userFiles.listReceivedDelegations(userUniqueId));
4673
+ }
4674
+ /**
4675
+ * Get a user delegation
4676
+ */ getUserDelegation(userUniqueId, delegationUniqueId) {
4677
+ return from(this.ensureConfigured().userFiles.getDelegation(userUniqueId, delegationUniqueId));
4678
+ }
4679
+ /**
4680
+ * Create a user delegation
4681
+ */ createUserDelegation(userUniqueId, data) {
4682
+ return from(this.ensureConfigured().userFiles.createDelegation(userUniqueId, data));
4683
+ }
4684
+ /**
4685
+ * Revoke a user delegation
4686
+ */ revokeUserDelegation(userUniqueId, delegationUniqueId) {
4687
+ return from(this.ensureConfigured().userFiles.revokeDelegation(userUniqueId, delegationUniqueId));
4688
+ }
4689
+ // ─────────────────────────────────────────────────────────────────────────────
4690
+ // File Categories Service
4691
+ // ─────────────────────────────────────────────────────────────────────────────
4692
+ /**
4693
+ * List file categories
4694
+ */ listFileCategories(params) {
4695
+ return from(this.ensureConfigured().fileCategories.list(params));
4696
+ }
4697
+ /**
4698
+ * Get a file category
4699
+ */ getFileCategory(uniqueId) {
4700
+ return from(this.ensureConfigured().fileCategories.get(uniqueId));
4701
+ }
4702
+ /**
4703
+ * Create a file category
4704
+ */ createFileCategory(data) {
4705
+ return from(this.ensureConfigured().fileCategories.create(data));
4706
+ }
4707
+ /**
4708
+ * Update a file category
4709
+ */ updateFileCategory(uniqueId, data) {
4710
+ return from(this.ensureConfigured().fileCategories.update(uniqueId, data));
4711
+ }
4712
+ /**
4713
+ * Delete a file category
4714
+ */ deleteFileCategory(uniqueId) {
4715
+ return from(this.ensureConfigured().fileCategories.delete(uniqueId));
4716
+ }
4717
+ /**
4718
+ * List children of a file category
4719
+ */ listFileCategoryChildren(parentUniqueId) {
4720
+ return from(this.ensureConfigured().fileCategories.listChildren(parentUniqueId));
4721
+ }
4722
+ // ─────────────────────────────────────────────────────────────────────────────
4723
+ // File Tags Service
4724
+ // ─────────────────────────────────────────────────────────────────────────────
4725
+ /**
4726
+ * List file tags
4727
+ */ listFileTags(params) {
4728
+ return from(this.ensureConfigured().fileTags.list(params));
4729
+ }
4730
+ /**
4731
+ * Get a file tag
4732
+ */ getFileTag(uniqueId) {
4733
+ return from(this.ensureConfigured().fileTags.get(uniqueId));
4734
+ }
4735
+ /**
4736
+ * Create a file tag
4737
+ */ createFileTag(data) {
4738
+ return from(this.ensureConfigured().fileTags.create(data));
4739
+ }
4740
+ /**
4741
+ * Update a file tag
4742
+ */ updateFileTag(uniqueId, data) {
4743
+ return from(this.ensureConfigured().fileTags.update(uniqueId, data));
4744
+ }
4745
+ /**
4746
+ * Delete a file tag
4747
+ */ deleteFileTag(uniqueId) {
4748
+ return from(this.ensureConfigured().fileTags.delete(uniqueId));
4749
+ }
4750
+ /**
4751
+ * Add a tag to a file
4752
+ */ addFileTag(userUniqueId, fileUniqueId, tagUniqueId) {
4753
+ return from(this.ensureConfigured().fileTags.addToFile(userUniqueId, fileUniqueId, tagUniqueId));
4754
+ }
4755
+ /**
4756
+ * Remove a tag from a file
4757
+ */ removeFileTag(userUniqueId, fileUniqueId, tagUniqueId) {
4758
+ return from(this.ensureConfigured().fileTags.removeFromFile(userUniqueId, fileUniqueId, tagUniqueId));
4759
+ }
4760
+ // ─────────────────────────────────────────────────────────────────────────────
4761
+ // Delegations Service
4762
+ // ─────────────────────────────────────────────────────────────────────────────
4763
+ /**
4764
+ * List file delegations for a user
4765
+ */ listDelegations(userUniqueId, params) {
4766
+ return from(this.ensureConfigured().delegations.list(userUniqueId, params));
4767
+ }
4768
+ /**
4769
+ * Get a file delegation
4770
+ */ getDelegation(userUniqueId, uniqueId) {
4771
+ return from(this.ensureConfigured().delegations.get(userUniqueId, uniqueId));
4772
+ }
4773
+ /**
4774
+ * Create a file delegation
4775
+ */ createDelegation(userUniqueId, data) {
4776
+ return from(this.ensureConfigured().delegations.create(userUniqueId, data));
4777
+ }
4778
+ /**
4779
+ * Update a file delegation
4780
+ */ updateDelegation(userUniqueId, uniqueId, data) {
4781
+ return from(this.ensureConfigured().delegations.update(userUniqueId, uniqueId, data));
4782
+ }
4783
+ /**
4784
+ * Delete a file delegation
4785
+ */ deleteDelegation(userUniqueId, uniqueId) {
4786
+ return from(this.ensureConfigured().delegations.delete(userUniqueId, uniqueId));
4787
+ }
4788
+ /**
4789
+ * List received delegations for a user
4790
+ */ listReceivedDelegations(userUniqueId) {
4791
+ return from(this.ensureConfigured().delegations.listReceivedDelegations(userUniqueId));
4792
+ }
4793
+ // ─────────────────────────────────────────────────────────────────────────────
4794
+ // File Access Service
4795
+ // ─────────────────────────────────────────────────────────────────────────────
4796
+ /**
4797
+ * List file accesses
4798
+ */ listFileAccess(params) {
4799
+ return from(this.ensureConfigured().fileAccess.list(params));
4800
+ }
4801
+ /**
4802
+ * Get a file access
4803
+ */ getFileAccess(uniqueId) {
4804
+ return from(this.ensureConfigured().fileAccess.get(uniqueId));
4805
+ }
4806
+ /**
4807
+ * Grant file access
4808
+ */ grantFileAccess(data) {
4809
+ return from(this.ensureConfigured().fileAccess.grant(data));
4810
+ }
4811
+ /**
4812
+ * Update file access
4813
+ */ updateFileAccess(uniqueId, data) {
4814
+ return from(this.ensureConfigured().fileAccess.update(uniqueId, data));
4815
+ }
4816
+ /**
4817
+ * Revoke file access
4818
+ */ revokeFileAccess(uniqueId) {
4819
+ return from(this.ensureConfigured().fileAccess.revoke(uniqueId));
4820
+ }
4821
+ /**
4822
+ * List file accesses by file
4823
+ */ listFileAccessByFile(fileUniqueId, params) {
4824
+ return from(this.ensureConfigured().fileAccess.listByFile(fileUniqueId, params));
4825
+ }
4826
+ /**
4827
+ * List file accesses by grantee
4828
+ */ listFileAccessByGrantee(granteeUniqueId, granteeType, params) {
4829
+ return from(this.ensureConfigured().fileAccess.listByGrantee(granteeUniqueId, granteeType, params));
4830
+ }
4831
+ /**
4832
+ * Check if a grantee has access to a file
4833
+ */ checkFileAccess(fileUniqueId, granteeUniqueId) {
4834
+ return from(this.ensureConfigured().fileAccess.checkAccess(fileUniqueId, granteeUniqueId));
4835
+ }
4836
+ // ─────────────────────────────────────────────────────────────────────────────
3298
4837
  // File Access Requests Service
3299
4838
  // ─────────────────────────────────────────────────────────────────────────────
3300
4839
  /**
3301
4840
  * List file access requests
3302
4841
  */ listFileAccessRequests(params) {
3303
- return from(this.ensureConfigured().accessRequests.list(params));
4842
+ return from(this.ensureConfigured().fileAccessRequests.list(params));
3304
4843
  }
3305
4844
  /**
3306
4845
  * Get a file access request
3307
4846
  */ getFileAccessRequest(uniqueId) {
3308
- return from(this.ensureConfigured().accessRequests.get(uniqueId));
4847
+ return from(this.ensureConfigured().fileAccessRequests.get(uniqueId));
3309
4848
  }
3310
4849
  /**
3311
4850
  * Create a file access request
3312
4851
  */ createFileAccessRequest(data) {
3313
- return from(this.ensureConfigured().accessRequests.create(data));
4852
+ return from(this.ensureConfigured().fileAccessRequests.create(data));
3314
4853
  }
3315
4854
  /**
3316
4855
  * Review (approve/reject) a file access request
3317
4856
  */ reviewFileAccessRequest(uniqueId, review) {
3318
- return from(this.ensureConfigured().accessRequests.review(uniqueId, review));
4857
+ return from(this.ensureConfigured().fileAccessRequests.review(uniqueId, review));
3319
4858
  }
3320
4859
  /**
3321
4860
  * Cancel a file access request
3322
4861
  */ cancelFileAccessRequest(uniqueId) {
3323
- return from(this.ensureConfigured().accessRequests.cancel(uniqueId));
4862
+ return from(this.ensureConfigured().fileAccessRequests.cancel(uniqueId));
3324
4863
  }
3325
4864
  /**
3326
4865
  * List access requests for a file
3327
4866
  */ listAccessRequestsByFile(fileUniqueId, params) {
3328
- return from(this.ensureConfigured().accessRequests.listByFile(fileUniqueId, params));
4867
+ return from(this.ensureConfigured().fileAccessRequests.listByFile(fileUniqueId, params));
3329
4868
  }
3330
4869
  /**
3331
4870
  * List access requests by requester
3332
4871
  */ listAccessRequestsByRequester(requesterUniqueId, params) {
3333
- return from(this.ensureConfigured().accessRequests.listByRequester(requesterUniqueId, params));
4872
+ return from(this.ensureConfigured().fileAccessRequests.listByRequester(requesterUniqueId, params));
3334
4873
  }
3335
4874
  /**
3336
4875
  * Get pending access requests count
3337
4876
  */ getPendingAccessRequestsCount() {
3338
- return from(this.ensureConfigured().accessRequests.getPendingCount());
4877
+ return from(this.ensureConfigured().fileAccessRequests.getPendingCount());
3339
4878
  }
3340
4879
  // ─────────────────────────────────────────────────────────────────────────────
3341
4880
  // Direct Block Access (for advanced usage)
@@ -3343,7 +4882,7 @@ typeof SuppressedError === "function" ? SuppressedError : function _SuppressedEr
3343
4882
  /**
3344
4883
  * Access the underlying block for advanced operations
3345
4884
  * Use this when you need access to services not wrapped by this Angular service
3346
- */ get rawBlock() {
4885
+ */ get filesBlock() {
3347
4886
  return this.ensureConfigured();
3348
4887
  }
3349
4888
  constructor(serviceTransport, legacyTransport, config){
@@ -3519,8 +5058,8 @@ typeof SuppressedError === "function" ? SuppressedError : function _SuppressedEr
3519
5058
  getLanding(formUniqueId, uniqueId) {
3520
5059
  return from(this.ensureConfigured().landings.get(formUniqueId, uniqueId));
3521
5060
  }
3522
- createLanding(formUniqueId, data) {
3523
- return from(this.ensureConfigured().landings.create(formUniqueId, data));
5061
+ submitLanding(formUniqueId, data) {
5062
+ return from(this.ensureConfigured().landings.submit(formUniqueId, data));
3524
5063
  }
3525
5064
  updateLanding(formUniqueId, uniqueId, data) {
3526
5065
  return from(this.ensureConfigured().landings.update(formUniqueId, uniqueId, data));
@@ -3537,8 +5076,8 @@ typeof SuppressedError === "function" ? SuppressedError : function _SuppressedEr
3537
5076
  getSubscription(formUniqueId, uniqueId) {
3538
5077
  return from(this.ensureConfigured().subscriptions.get(formUniqueId, uniqueId));
3539
5078
  }
3540
- createSubscription(formUniqueId, data) {
3541
- return from(this.ensureConfigured().subscriptions.create(formUniqueId, data));
5079
+ submitSubscription(formUniqueId, data) {
5080
+ return from(this.ensureConfigured().subscriptions.submit(formUniqueId, data));
3542
5081
  }
3543
5082
  updateSubscription(formUniqueId, uniqueId, data) {
3544
5083
  return from(this.ensureConfigured().subscriptions.update(formUniqueId, uniqueId, data));
@@ -3766,6 +5305,9 @@ typeof SuppressedError === "function" ? SuppressedError : function _SuppressedEr
3766
5305
  deleteAsset(uniqueId) {
3767
5306
  return from(this.ensureConfigured().assets.delete(uniqueId));
3768
5307
  }
5308
+ listAssetsTrash() {
5309
+ return from(this.ensureConfigured().assets.listTrash());
5310
+ }
3769
5311
  transferAsset(uniqueId, data) {
3770
5312
  return from(this.ensureConfigured().assets.transfer(uniqueId, data));
3771
5313
  }
@@ -3781,47 +5323,71 @@ typeof SuppressedError === "function" ? SuppressedError : function _SuppressedEr
3781
5323
  listAssetsByAssignee(assignedToUniqueId, params) {
3782
5324
  return from(this.ensureConfigured().assets.listByAssignee(assignedToUniqueId, params));
3783
5325
  }
5326
+ addAssetToCategory(uniqueId, data) {
5327
+ return from(this.ensureConfigured().assets.addToCategory(uniqueId, data));
5328
+ }
5329
+ addAssetParts(uniqueId, data) {
5330
+ return from(this.ensureConfigured().assets.addParts(uniqueId, data));
5331
+ }
5332
+ removeAssetParts(uniqueId, data) {
5333
+ return from(this.ensureConfigured().assets.removeParts(uniqueId, data));
5334
+ }
5335
+ updateAssetMaintenance(uniqueId, data) {
5336
+ return from(this.ensureConfigured().assets.updateMaintenance(uniqueId, data));
5337
+ }
5338
+ lendAsset(uniqueId, data) {
5339
+ return from(this.ensureConfigured().assets.lend(uniqueId, data));
5340
+ }
5341
+ createAssetOTP(uniqueId, data) {
5342
+ return from(this.ensureConfigured().assets.createOTP(uniqueId, data));
5343
+ }
3784
5344
  // ───────────────────────────────────────────────────────────────────────────
3785
5345
  // Asset Events Service
3786
5346
  // ───────────────────────────────────────────────────────────────────────────
3787
- listAssetEvents(params) {
3788
- return from(this.ensureConfigured().events.list(params));
5347
+ listAssetEvents(assetUniqueId, params) {
5348
+ return from(this.ensureConfigured().events.list(assetUniqueId, params));
5349
+ }
5350
+ getAssetEvent(assetUniqueId, eventUniqueId) {
5351
+ return from(this.ensureConfigured().events.get(assetUniqueId, eventUniqueId));
5352
+ }
5353
+ createAssetEvent(assetUniqueId, data) {
5354
+ return from(this.ensureConfigured().events.create(assetUniqueId, data));
3789
5355
  }
3790
- getAssetEvent(uniqueId) {
3791
- return from(this.ensureConfigured().events.get(uniqueId));
5356
+ updateAssetEvent(assetUniqueId, eventUniqueId, data) {
5357
+ return from(this.ensureConfigured().events.update(assetUniqueId, eventUniqueId, data));
3792
5358
  }
3793
- createAssetEvent(data) {
3794
- return from(this.ensureConfigured().events.create(data));
5359
+ getEventReportList(params) {
5360
+ return from(this.ensureConfigured().events.reportList(params));
3795
5361
  }
3796
- updateAssetEvent(uniqueId, data) {
3797
- return from(this.ensureConfigured().events.update(uniqueId, data));
5362
+ getEventReportSummary(params) {
5363
+ return from(this.ensureConfigured().events.reportSummary(params));
3798
5364
  }
3799
- deleteAssetEvent(uniqueId) {
3800
- return from(this.ensureConfigured().events.delete(uniqueId));
5365
+ presignEventImage(assetUniqueId, eventUniqueId) {
5366
+ return from(this.ensureConfigured().events.presignImage(assetUniqueId, eventUniqueId));
3801
5367
  }
3802
- listAssetEventsByAsset(assetUniqueId, params) {
3803
- return from(this.ensureConfigured().events.listByAsset(assetUniqueId, params));
5368
+ createEventImage(assetUniqueId, eventUniqueId, data) {
5369
+ return from(this.ensureConfigured().events.createImage(assetUniqueId, eventUniqueId, data));
5370
+ }
5371
+ deleteEventImage(assetUniqueId, eventUniqueId, imageUniqueId) {
5372
+ return from(this.ensureConfigured().events.deleteImage(assetUniqueId, eventUniqueId, imageUniqueId));
3804
5373
  }
3805
5374
  // ───────────────────────────────────────────────────────────────────────────
3806
5375
  // Asset Audits Service
3807
5376
  // ───────────────────────────────────────────────────────────────────────────
3808
- listAssetAudits(params) {
3809
- return from(this.ensureConfigured().audits.list(params));
3810
- }
3811
- getAssetAudit(uniqueId) {
3812
- return from(this.ensureConfigured().audits.get(uniqueId));
5377
+ listAssetAudits(assetUniqueId, params) {
5378
+ return from(this.ensureConfigured().audits.list(assetUniqueId, params));
3813
5379
  }
3814
- createAssetAudit(data) {
3815
- return from(this.ensureConfigured().audits.create(data));
5380
+ getAssetAudit(assetUniqueId, auditUniqueId) {
5381
+ return from(this.ensureConfigured().audits.get(assetUniqueId, auditUniqueId));
3816
5382
  }
3817
- updateAssetAudit(uniqueId, data) {
3818
- return from(this.ensureConfigured().audits.update(uniqueId, data));
5383
+ createAssetAudit(assetUniqueId, data) {
5384
+ return from(this.ensureConfigured().audits.create(assetUniqueId, data));
3819
5385
  }
3820
- deleteAssetAudit(uniqueId) {
3821
- return from(this.ensureConfigured().audits.delete(uniqueId));
5386
+ updateAssetAudit(assetUniqueId, auditUniqueId, data) {
5387
+ return from(this.ensureConfigured().audits.update(assetUniqueId, auditUniqueId, data));
3822
5388
  }
3823
- listAssetAuditsByAsset(assetUniqueId, params) {
3824
- return from(this.ensureConfigured().audits.listByAsset(assetUniqueId, params));
5389
+ deleteAssetAudit(assetUniqueId, auditUniqueId) {
5390
+ return from(this.ensureConfigured().audits.delete(assetUniqueId, auditUniqueId));
3825
5391
  }
3826
5392
  // ───────────────────────────────────────────────────────────────────────────
3827
5393
  // Categories Service
@@ -4024,7 +5590,7 @@ typeof SuppressedError === "function" ? SuppressedError : function _SuppressedEr
4024
5590
  /**
4025
5591
  * Access the underlying block for advanced operations
4026
5592
  * Use this when you need access to services not wrapped by this Angular service
4027
- */ get rawBlock() {
5593
+ */ get assetsBlock() {
4028
5594
  return this.ensureConfigured();
4029
5595
  }
4030
5596
  constructor(serviceTransport, legacyTransport, config){
@@ -4122,26 +5688,26 @@ typeof SuppressedError === "function" ? SuppressedError : function _SuppressedEr
4122
5688
  // ─────────────────────────────────────────────────────────────────────────────
4123
5689
  // Campaign Media Service
4124
5690
  // ─────────────────────────────────────────────────────────────────────────────
4125
- listMedia(params) {
4126
- return from(this.ensureConfigured().media.list(params));
5691
+ listCampaignMedia(params) {
5692
+ return from(this.ensureConfigured().campaignMedia.list(params));
4127
5693
  }
4128
- getMedia(uniqueId) {
4129
- return from(this.ensureConfigured().media.get(uniqueId));
5694
+ getCampaignMedia(uniqueId) {
5695
+ return from(this.ensureConfigured().campaignMedia.get(uniqueId));
4130
5696
  }
4131
- createMedia(data) {
4132
- return from(this.ensureConfigured().media.create(data));
5697
+ createCampaignMedia(data) {
5698
+ return from(this.ensureConfigured().campaignMedia.create(data));
4133
5699
  }
4134
- updateMedia(uniqueId, data) {
4135
- return from(this.ensureConfigured().media.update(uniqueId, data));
5700
+ updateCampaignMedia(uniqueId, data) {
5701
+ return from(this.ensureConfigured().campaignMedia.update(uniqueId, data));
4136
5702
  }
4137
- deleteMedia(uniqueId) {
4138
- return from(this.ensureConfigured().media.delete(uniqueId));
5703
+ deleteCampaignMedia(uniqueId) {
5704
+ return from(this.ensureConfigured().campaignMedia.delete(uniqueId));
4139
5705
  }
4140
- listMediaByCampaign(campaignUniqueId) {
4141
- return from(this.ensureConfigured().media.listByCampaign(campaignUniqueId));
5706
+ listCampaignMediaByCampaign(campaignUniqueId) {
5707
+ return from(this.ensureConfigured().campaignMedia.listByCampaign(campaignUniqueId));
4142
5708
  }
4143
- getMediaResults(uniqueId) {
4144
- return from(this.ensureConfigured().media.getResults(uniqueId));
5709
+ getCampaignMediaResults(uniqueId) {
5710
+ return from(this.ensureConfigured().campaignMedia.getResults(uniqueId));
4145
5711
  }
4146
5712
  // ─────────────────────────────────────────────────────────────────────────────
4147
5713
  // Landing Pages Service
@@ -4230,7 +5796,7 @@ typeof SuppressedError === "function" ? SuppressedError : function _SuppressedEr
4230
5796
  // ─────────────────────────────────────────────────────────────────────────────
4231
5797
  // Campaign Results Service
4232
5798
  // ─────────────────────────────────────────────────────────────────────────────
4233
- listCampaignResults(params) {
5799
+ listCampaignResultsData(params) {
4234
5800
  return from(this.ensureConfigured().results.list(params));
4235
5801
  }
4236
5802
  getCampaignResult(uniqueId) {
@@ -4317,28 +5883,46 @@ typeof SuppressedError === "function" ? SuppressedError : function _SuppressedEr
4317
5883
  // ─────────────────────────────────────────────────────────────────────────────
4318
5884
  // Campaign Media Results Service
4319
5885
  // ─────────────────────────────────────────────────────────────────────────────
4320
- listCampaignMediaResults(params) {
5886
+ listCampaignMediaResultsData(params) {
4321
5887
  return from(this.ensureConfigured().mediaResults.list(params));
4322
5888
  }
4323
- getCampaignMediaResult(uniqueId) {
5889
+ getCampaignMediaResultData(uniqueId) {
4324
5890
  return from(this.ensureConfigured().mediaResults.get(uniqueId));
4325
5891
  }
4326
- createCampaignMediaResult(data) {
5892
+ createCampaignMediaResultData(data) {
4327
5893
  return from(this.ensureConfigured().mediaResults.create(data));
4328
5894
  }
4329
- updateCampaignMediaResult(uniqueId, data) {
5895
+ updateCampaignMediaResultData(uniqueId, data) {
4330
5896
  return from(this.ensureConfigured().mediaResults.update(uniqueId, data));
4331
5897
  }
4332
- deleteCampaignMediaResult(uniqueId) {
5898
+ deleteCampaignMediaResultData(uniqueId) {
4333
5899
  return from(this.ensureConfigured().mediaResults.delete(uniqueId));
4334
5900
  }
4335
5901
  // ─────────────────────────────────────────────────────────────────────────────
5902
+ // Media Service (Medium entities - TV, Radio, Digital channels)
5903
+ // ─────────────────────────────────────────────────────────────────────────────
5904
+ listMedia(params) {
5905
+ return from(this.ensureConfigured().media.list(params));
5906
+ }
5907
+ getMedia(uniqueId) {
5908
+ return from(this.ensureConfigured().media.get(uniqueId));
5909
+ }
5910
+ createMedia(data) {
5911
+ return from(this.ensureConfigured().media.create(data));
5912
+ }
5913
+ updateMedia(uniqueId, data) {
5914
+ return from(this.ensureConfigured().media.update(uniqueId, data));
5915
+ }
5916
+ deleteMedia(uniqueId) {
5917
+ return from(this.ensureConfigured().media.delete(uniqueId));
5918
+ }
5919
+ // ─────────────────────────────────────────────────────────────────────────────
4336
5920
  // Direct Block Access (for advanced usage)
4337
5921
  // ─────────────────────────────────────────────────────────────────────────────
4338
5922
  /**
4339
5923
  * Access the underlying block for advanced operations
4340
5924
  * Use this when you need access to services not wrapped by this Angular service
4341
- */ get rawBlock() {
5925
+ */ get campaignsBlock() {
4342
5926
  return this.ensureConfigured();
4343
5927
  }
4344
5928
  constructor(serviceTransport, legacyTransport, config){
@@ -4506,25 +6090,96 @@ typeof SuppressedError === "function" ? SuppressedError : function _SuppressedEr
4506
6090
  return from(this.ensureConfigured().quarters.delete(uniqueId));
4507
6091
  }
4508
6092
  // ─────────────────────────────────────────────────────────────────────────────
4509
- // Direct Block Access (for advanced usage)
6093
+ // Positions Service
4510
6094
  // ─────────────────────────────────────────────────────────────────────────────
4511
6095
  /**
4512
- * Access the underlying block for advanced operations
4513
- * Use this when you need access to services not wrapped by this Angular service
4514
- */ get rawBlock() {
4515
- return this.ensureConfigured();
6096
+ * List positions with optional filtering and pagination
6097
+ */ listPositions(params) {
6098
+ return from(this.ensureConfigured().positions.list(params));
4516
6099
  }
4517
- constructor(serviceTransport, legacyTransport, config){
4518
- const transport = serviceTransport != null ? serviceTransport : legacyTransport;
4519
- this.block = transport ? createCompanyBlock(transport, config) : null;
6100
+ /**
6101
+ * Get a position by unique ID
6102
+ */ getPosition(uniqueId) {
6103
+ return from(this.ensureConfigured().positions.get(uniqueId));
4520
6104
  }
4521
- }, _classThis = _class, (()=>{
4522
- const _metadata = typeof Symbol === "function" && Symbol.metadata ? Object.create(null) : void 0;
4523
- __esDecorate(null, _classDescriptor = {
4524
- value: _classThis
4525
- }, _classDecorators, {
4526
- kind: "class",
4527
- name: _classThis.name,
6105
+ /**
6106
+ * Create a new position
6107
+ */ createPosition(request) {
6108
+ return from(this.ensureConfigured().positions.create(request));
6109
+ }
6110
+ /**
6111
+ * Update an existing position
6112
+ */ updatePosition(uniqueId, request) {
6113
+ return from(this.ensureConfigured().positions.update(uniqueId, request));
6114
+ }
6115
+ /**
6116
+ * Delete a position
6117
+ */ deletePosition(uniqueId) {
6118
+ return from(this.ensureConfigured().positions.delete(uniqueId));
6119
+ }
6120
+ /**
6121
+ * List positions by department
6122
+ */ listPositionsByDepartment(departmentUniqueId) {
6123
+ return from(this.ensureConfigured().positions.listByDepartment(departmentUniqueId));
6124
+ }
6125
+ // ─────────────────────────────────────────────────────────────────────────────
6126
+ // Employee Assignments Service
6127
+ // ─────────────────────────────────────────────────────────────────────────────
6128
+ /**
6129
+ * List employee assignments with optional filtering and pagination
6130
+ */ listEmployeeAssignments(params) {
6131
+ return from(this.ensureConfigured().employeeAssignments.list(params));
6132
+ }
6133
+ /**
6134
+ * Get an employee assignment by unique ID
6135
+ */ getEmployeeAssignment(uniqueId) {
6136
+ return from(this.ensureConfigured().employeeAssignments.get(uniqueId));
6137
+ }
6138
+ /**
6139
+ * Create a new employee assignment
6140
+ */ createEmployeeAssignment(request) {
6141
+ return from(this.ensureConfigured().employeeAssignments.create(request));
6142
+ }
6143
+ /**
6144
+ * Update an existing employee assignment
6145
+ */ updateEmployeeAssignment(uniqueId, request) {
6146
+ return from(this.ensureConfigured().employeeAssignments.update(uniqueId, request));
6147
+ }
6148
+ /**
6149
+ * Delete an employee assignment
6150
+ */ deleteEmployeeAssignment(uniqueId) {
6151
+ return from(this.ensureConfigured().employeeAssignments.delete(uniqueId));
6152
+ }
6153
+ /**
6154
+ * List employee assignments by user
6155
+ */ listEmployeeAssignmentsByUser(userUniqueId) {
6156
+ return from(this.ensureConfigured().employeeAssignments.listByUser(userUniqueId));
6157
+ }
6158
+ /**
6159
+ * List employee assignments by position
6160
+ */ listEmployeeAssignmentsByPosition(positionUniqueId) {
6161
+ return from(this.ensureConfigured().employeeAssignments.listByPosition(positionUniqueId));
6162
+ }
6163
+ // ─────────────────────────────────────────────────────────────────────────────
6164
+ // Direct Block Access (for advanced usage)
6165
+ // ─────────────────────────────────────────────────────────────────────────────
6166
+ /**
6167
+ * Access the underlying block for advanced operations
6168
+ * Use this when you need access to services not wrapped by this Angular service
6169
+ */ get companyBlock() {
6170
+ return this.ensureConfigured();
6171
+ }
6172
+ constructor(serviceTransport, legacyTransport, config){
6173
+ const transport = serviceTransport != null ? serviceTransport : legacyTransport;
6174
+ this.block = transport ? createCompanyBlock(transport, config) : null;
6175
+ }
6176
+ }, _classThis = _class, (()=>{
6177
+ const _metadata = typeof Symbol === "function" && Symbol.metadata ? Object.create(null) : void 0;
6178
+ __esDecorate(null, _classDescriptor = {
6179
+ value: _classThis
6180
+ }, _classDecorators, {
6181
+ kind: "class",
6182
+ name: _classThis.name,
4528
6183
  metadata: _metadata
4529
6184
  }, null, _classExtraInitializers);
4530
6185
  _classThis = _classDescriptor.value;
@@ -4772,17 +6427,17 @@ typeof SuppressedError === "function" ? SuppressedError : function _SuppressedEr
4772
6427
  // Badge Categories Service
4773
6428
  // ─────────────────────────────────────────────────────────────────────────────
4774
6429
  /**
4775
- * List badge categories
4776
- */ listBadgeCategories() {
4777
- return from(this.ensureConfigured().badgeCategories.list());
6430
+ * List badge categories with optional pagination
6431
+ */ listBadgeCategories(page, perPage) {
6432
+ return from(this.ensureConfigured().badgeCategories.list(page, perPage));
4778
6433
  }
4779
6434
  /**
4780
- * Get a badge category
6435
+ * Get a badge category by unique ID
4781
6436
  */ getBadgeCategory(uniqueId) {
4782
6437
  return from(this.ensureConfigured().badgeCategories.get(uniqueId));
4783
6438
  }
4784
6439
  /**
4785
- * Create a badge category
6440
+ * Create a new badge category
4786
6441
  */ createBadgeCategory(data) {
4787
6442
  return from(this.ensureConfigured().badgeCategories.create(data));
4788
6443
  }
@@ -4805,24 +6460,24 @@ typeof SuppressedError === "function" ? SuppressedError : function _SuppressedEr
4805
6460
  return from(this.ensureConfigured().moneyRules.list(loyaltyUniqueId));
4806
6461
  }
4807
6462
  /**
4808
- * Get a money rule
4809
- */ getMoneyRule(uniqueId) {
4810
- return from(this.ensureConfigured().moneyRules.get(uniqueId));
6463
+ * Get a money rule by unique ID
6464
+ */ getMoneyRule(loyaltyUniqueId, ruleUniqueId) {
6465
+ return from(this.ensureConfigured().moneyRules.get(loyaltyUniqueId, ruleUniqueId));
4811
6466
  }
4812
6467
  /**
4813
- * Create a money rule
6468
+ * Create a new money rule
4814
6469
  */ createMoneyRule(loyaltyUniqueId, data) {
4815
6470
  return from(this.ensureConfigured().moneyRules.create(loyaltyUniqueId, data));
4816
6471
  }
4817
6472
  /**
4818
6473
  * Update a money rule
4819
- */ updateMoneyRule(uniqueId, data) {
4820
- return from(this.ensureConfigured().moneyRules.update(uniqueId, data));
6474
+ */ updateMoneyRule(loyaltyUniqueId, ruleUniqueId, data) {
6475
+ return from(this.ensureConfigured().moneyRules.update(loyaltyUniqueId, ruleUniqueId, data));
4821
6476
  }
4822
6477
  /**
4823
6478
  * Delete a money rule
4824
- */ deleteMoneyRule(uniqueId) {
4825
- return from(this.ensureConfigured().moneyRules.delete(uniqueId));
6479
+ */ deleteMoneyRule(loyaltyUniqueId, ruleUniqueId) {
6480
+ return from(this.ensureConfigured().moneyRules.delete(loyaltyUniqueId, ruleUniqueId));
4826
6481
  }
4827
6482
  // ─────────────────────────────────────────────────────────────────────────────
4828
6483
  // Product Rules Service
@@ -4833,24 +6488,24 @@ typeof SuppressedError === "function" ? SuppressedError : function _SuppressedEr
4833
6488
  return from(this.ensureConfigured().productRules.list(loyaltyUniqueId));
4834
6489
  }
4835
6490
  /**
4836
- * Get a product rule
4837
- */ getProductRule(uniqueId) {
4838
- return from(this.ensureConfigured().productRules.get(uniqueId));
6491
+ * Get a product rule by unique ID
6492
+ */ getProductRule(loyaltyUniqueId, ruleUniqueId) {
6493
+ return from(this.ensureConfigured().productRules.get(loyaltyUniqueId, ruleUniqueId));
4839
6494
  }
4840
6495
  /**
4841
- * Create a product rule
6496
+ * Create a new product rule
4842
6497
  */ createProductRule(loyaltyUniqueId, data) {
4843
6498
  return from(this.ensureConfigured().productRules.create(loyaltyUniqueId, data));
4844
6499
  }
4845
6500
  /**
4846
6501
  * Update a product rule
4847
- */ updateProductRule(uniqueId, data) {
4848
- return from(this.ensureConfigured().productRules.update(uniqueId, data));
6502
+ */ updateProductRule(loyaltyUniqueId, ruleUniqueId, data) {
6503
+ return from(this.ensureConfigured().productRules.update(loyaltyUniqueId, ruleUniqueId, data));
4849
6504
  }
4850
6505
  /**
4851
6506
  * Delete a product rule
4852
- */ deleteProductRule(uniqueId) {
4853
- return from(this.ensureConfigured().productRules.delete(uniqueId));
6507
+ */ deleteProductRule(loyaltyUniqueId, ruleUniqueId) {
6508
+ return from(this.ensureConfigured().productRules.delete(loyaltyUniqueId, ruleUniqueId));
4854
6509
  }
4855
6510
  // ─────────────────────────────────────────────────────────────────────────────
4856
6511
  // Event Rules Service
@@ -4861,24 +6516,24 @@ typeof SuppressedError === "function" ? SuppressedError : function _SuppressedEr
4861
6516
  return from(this.ensureConfigured().eventRules.list(loyaltyUniqueId));
4862
6517
  }
4863
6518
  /**
4864
- * Get an event rule
4865
- */ getEventRule(uniqueId) {
4866
- return from(this.ensureConfigured().eventRules.get(uniqueId));
6519
+ * Get an event rule by unique ID
6520
+ */ getEventRule(loyaltyUniqueId, ruleUniqueId) {
6521
+ return from(this.ensureConfigured().eventRules.get(loyaltyUniqueId, ruleUniqueId));
4867
6522
  }
4868
6523
  /**
4869
- * Create an event rule
6524
+ * Create a new event rule
4870
6525
  */ createEventRule(loyaltyUniqueId, data) {
4871
6526
  return from(this.ensureConfigured().eventRules.create(loyaltyUniqueId, data));
4872
6527
  }
4873
6528
  /**
4874
6529
  * Update an event rule
4875
- */ updateEventRule(uniqueId, data) {
4876
- return from(this.ensureConfigured().eventRules.update(uniqueId, data));
6530
+ */ updateEventRule(loyaltyUniqueId, ruleUniqueId, data) {
6531
+ return from(this.ensureConfigured().eventRules.update(loyaltyUniqueId, ruleUniqueId, data));
4877
6532
  }
4878
6533
  /**
4879
6534
  * Delete an event rule
4880
- */ deleteEventRule(uniqueId) {
4881
- return from(this.ensureConfigured().eventRules.delete(uniqueId));
6535
+ */ deleteEventRule(loyaltyUniqueId, ruleUniqueId) {
6536
+ return from(this.ensureConfigured().eventRules.delete(loyaltyUniqueId, ruleUniqueId));
4882
6537
  }
4883
6538
  // ─────────────────────────────────────────────────────────────────────────────
4884
6539
  // Direct Block Access (for advanced usage)
@@ -4886,7 +6541,7 @@ typeof SuppressedError === "function" ? SuppressedError : function _SuppressedEr
4886
6541
  /**
4887
6542
  * Access the underlying block for advanced operations
4888
6543
  * Use this when you need access to services not wrapped by this Angular service
4889
- */ get rawBlock() {
6544
+ */ get rewardsBlock() {
4890
6545
  return this.ensureConfigured();
4891
6546
  }
4892
6547
  constructor(serviceTransport, legacyTransport, config){
@@ -5162,12 +6817,83 @@ typeof SuppressedError === "function" ? SuppressedError : function _SuppressedEr
5162
6817
  return from(this.ensureConfigured().vendorPayments.update(uniqueId, data));
5163
6818
  }
5164
6819
  // ───────────────────────────────────────────────────────────────────────────
6820
+ // Stripe Service
6821
+ // ───────────────────────────────────────────────────────────────────────────
6822
+ /**
6823
+ * Create a Stripe customer
6824
+ */ createStripeCustomer(data) {
6825
+ return from(this.ensureConfigured().stripe.createCustomer(data));
6826
+ }
6827
+ /**
6828
+ * Create a Stripe checkout session
6829
+ */ createStripeCheckoutSession(data) {
6830
+ return from(this.ensureConfigured().stripe.createCheckoutSession(data));
6831
+ }
6832
+ /**
6833
+ * Create a Stripe payment intent
6834
+ */ createStripePaymentIntent(data) {
6835
+ return from(this.ensureConfigured().stripe.createPaymentIntent(data));
6836
+ }
6837
+ /**
6838
+ * Create a Stripe customer portal session
6839
+ */ createStripeCustomerPortal(uniqueId, data) {
6840
+ return from(this.ensureConfigured().stripe.createCustomerPortal(uniqueId, data));
6841
+ }
6842
+ /**
6843
+ * List Stripe subscriptions
6844
+ */ listStripeSubscriptions(params) {
6845
+ return from(this.ensureConfigured().stripe.listSubscriptions(params));
6846
+ }
6847
+ /**
6848
+ * Create a Stripe subscription
6849
+ */ createStripeSubscription(data) {
6850
+ return from(this.ensureConfigured().stripe.createSubscription(data));
6851
+ }
6852
+ /**
6853
+ * Update a Stripe subscription
6854
+ */ updateStripeSubscription(stripeSubscriptionId, data) {
6855
+ return from(this.ensureConfigured().stripe.updateSubscription(stripeSubscriptionId, data));
6856
+ }
6857
+ /**
6858
+ * Cancel a Stripe subscription
6859
+ */ cancelStripeSubscription(stripeSubscriptionId) {
6860
+ return from(this.ensureConfigured().stripe.cancelSubscription(stripeSubscriptionId));
6861
+ }
6862
+ /**
6863
+ * List Stripe webhooks
6864
+ */ listStripeWebhooks() {
6865
+ return from(this.ensureConfigured().stripe.listWebhooks());
6866
+ }
6867
+ /**
6868
+ * Create a Stripe webhook
6869
+ */ createStripeWebhook(data) {
6870
+ return from(this.ensureConfigured().stripe.createWebhook(data));
6871
+ }
6872
+ // ───────────────────────────────────────────────────────────────────────────
6873
+ // MercadoPago Service
6874
+ // ───────────────────────────────────────────────────────────────────────────
6875
+ /**
6876
+ * List available MercadoPago payment methods
6877
+ */ listMercadoPagoPaymentMethods() {
6878
+ return from(this.ensureConfigured().mercadopago.listPaymentMethods());
6879
+ }
6880
+ /**
6881
+ * Create a MercadoPago payment intent
6882
+ */ createMercadoPagoPaymentIntent(data) {
6883
+ return from(this.ensureConfigured().mercadopago.createPaymentIntent(data));
6884
+ }
6885
+ /**
6886
+ * Create a MercadoPago PSE payment intent (Colombia bank transfer)
6887
+ */ createMercadoPagoPSEIntent(data) {
6888
+ return from(this.ensureConfigured().mercadopago.createPSEIntent(data));
6889
+ }
6890
+ // ───────────────────────────────────────────────────────────────────────────
5165
6891
  // Direct Block Access (for advanced usage)
5166
6892
  // ───────────────────────────────────────────────────────────────────────────
5167
6893
  /**
5168
6894
  * Access the underlying block for advanced operations
5169
6895
  * Use this when you need access to services not wrapped by this Angular service
5170
- */ get rawBlock() {
6896
+ */ get salesBlock() {
5171
6897
  return this.ensureConfigured();
5172
6898
  }
5173
6899
  constructor(serviceTransport, legacyTransport, config){
@@ -5328,7 +7054,7 @@ typeof SuppressedError === "function" ? SuppressedError : function _SuppressedEr
5328
7054
  /**
5329
7055
  * Access the underlying block for advanced operations
5330
7056
  * Use this when you need access to services not wrapped by this Angular service
5331
- */ get rawBlock() {
7057
+ */ get walletBlock() {
5332
7058
  return this.ensureConfigured();
5333
7059
  }
5334
7060
  constructor(serviceTransport, legacyTransport, config){
@@ -5508,12 +7234,375 @@ typeof SuppressedError === "function" ? SuppressedError : function _SuppressedEr
5508
7234
  return from(this.ensureConfigured().conversations.clear(uniqueId));
5509
7235
  }
5510
7236
  // ─────────────────────────────────────────────────────────────────────────────
7237
+ // AI Models Service
7238
+ // ─────────────────────────────────────────────────────────────────────────────
7239
+ listAIModels(params) {
7240
+ return from(this.ensureConfigured().aiModels.list(params));
7241
+ }
7242
+ getAIModel(uniqueId) {
7243
+ return from(this.ensureConfigured().aiModels.get(uniqueId));
7244
+ }
7245
+ createAIModel(data) {
7246
+ return from(this.ensureConfigured().aiModels.create(data));
7247
+ }
7248
+ updateAIModel(uniqueId, data) {
7249
+ return from(this.ensureConfigured().aiModels.update(uniqueId, data));
7250
+ }
7251
+ deleteAIModel(uniqueId) {
7252
+ return from(this.ensureConfigured().aiModels.delete(uniqueId));
7253
+ }
7254
+ // ─────────────────────────────────────────────────────────────────────────────
7255
+ // Entities Service
7256
+ // ─────────────────────────────────────────────────────────────────────────────
7257
+ listEntities(params) {
7258
+ return from(this.ensureConfigured().entities.list(params));
7259
+ }
7260
+ getEntity(uniqueId) {
7261
+ return from(this.ensureConfigured().entities.get(uniqueId));
7262
+ }
7263
+ registerEntity(uniqueId, data) {
7264
+ return from(this.ensureConfigured().entities.register(uniqueId, data));
7265
+ }
7266
+ updateEntity(uniqueId, data) {
7267
+ return from(this.ensureConfigured().entities.update(uniqueId, data));
7268
+ }
7269
+ deleteEntity(uniqueId) {
7270
+ return from(this.ensureConfigured().entities.delete(uniqueId));
7271
+ }
7272
+ addEntityPrompt(uniqueId, promptUniqueId) {
7273
+ return from(this.ensureConfigured().entities.addPrompt(uniqueId, promptUniqueId));
7274
+ }
7275
+ getEntityContext(uniqueId, contextUniqueId) {
7276
+ return from(this.ensureConfigured().entities.getContext(uniqueId, contextUniqueId));
7277
+ }
7278
+ createEntityContext(uniqueId, data) {
7279
+ return from(this.ensureConfigured().entities.createContext(uniqueId, data));
7280
+ }
7281
+ getEntityConversation(uniqueId, contextUniqueId) {
7282
+ return from(this.ensureConfigured().entities.getConversation(uniqueId, contextUniqueId));
7283
+ }
7284
+ sendEntityMessage(uniqueId, contextUniqueId, data) {
7285
+ return from(this.ensureConfigured().entities.sendMessage(uniqueId, contextUniqueId, data));
7286
+ }
7287
+ queryEntityFile(uniqueId, fileUniqueId, data) {
7288
+ return from(this.ensureConfigured().entities.queryFile(uniqueId, fileUniqueId, data));
7289
+ }
7290
+ // ─────────────────────────────────────────────────────────────────────────────
7291
+ // Clusters Service
7292
+ // ─────────────────────────────────────────────────────────────────────────────
7293
+ listClusters(userUniqueId, params) {
7294
+ return from(this.ensureConfigured().clusters.list(userUniqueId, params));
7295
+ }
7296
+ getCluster(userUniqueId, uniqueId) {
7297
+ return from(this.ensureConfigured().clusters.get(userUniqueId, uniqueId));
7298
+ }
7299
+ createCluster(userUniqueId, data) {
7300
+ return from(this.ensureConfigured().clusters.create(userUniqueId, data));
7301
+ }
7302
+ updateCluster(userUniqueId, uniqueId, data) {
7303
+ return from(this.ensureConfigured().clusters.update(userUniqueId, uniqueId, data));
7304
+ }
7305
+ deleteCluster(userUniqueId, uniqueId) {
7306
+ return from(this.ensureConfigured().clusters.delete(userUniqueId, uniqueId));
7307
+ }
7308
+ addClusterMember(userUniqueId, uniqueId, entityUniqueId) {
7309
+ return from(this.ensureConfigured().clusters.addMember(userUniqueId, uniqueId, entityUniqueId));
7310
+ }
7311
+ removeClusterMember(userUniqueId, uniqueId, entityUniqueId) {
7312
+ return from(this.ensureConfigured().clusters.removeMember(userUniqueId, uniqueId, entityUniqueId));
7313
+ }
7314
+ addClusterPrompt(userUniqueId, uniqueId, promptUniqueId) {
7315
+ return from(this.ensureConfigured().clusters.addPrompt(userUniqueId, uniqueId, promptUniqueId));
7316
+ }
7317
+ getClusterContext(userUniqueId, uniqueId, contextUniqueId) {
7318
+ return from(this.ensureConfigured().clusters.getContext(userUniqueId, uniqueId, contextUniqueId));
7319
+ }
7320
+ createClusterContext(userUniqueId, uniqueId, data) {
7321
+ return from(this.ensureConfigured().clusters.createContext(userUniqueId, uniqueId, data));
7322
+ }
7323
+ getClusterConversation(userUniqueId, uniqueId, contextUniqueId) {
7324
+ return from(this.ensureConfigured().clusters.getConversation(userUniqueId, uniqueId, contextUniqueId));
7325
+ }
7326
+ sendClusterMessage(userUniqueId, uniqueId, contextUniqueId, data) {
7327
+ return from(this.ensureConfigured().clusters.sendMessage(userUniqueId, uniqueId, contextUniqueId, data));
7328
+ }
7329
+ // ─────────────────────────────────────────────────────────────────────────────
7330
+ // Jarvis Users Service
7331
+ // ─────────────────────────────────────────────────────────────────────────────
7332
+ listJarvisUsers(params) {
7333
+ return from(this.ensureConfigured().users.list(params));
7334
+ }
7335
+ getJarvisUser(uniqueId) {
7336
+ return from(this.ensureConfigured().users.get(uniqueId));
7337
+ }
7338
+ registerJarvisUser(uniqueId, data) {
7339
+ return from(this.ensureConfigured().users.register(uniqueId, data));
7340
+ }
7341
+ updateJarvisUser(uniqueId, data) {
7342
+ return from(this.ensureConfigured().users.update(uniqueId, data));
7343
+ }
7344
+ addJarvisUserPrompt(uniqueId, promptUniqueId) {
7345
+ return from(this.ensureConfigured().users.addPrompt(uniqueId, promptUniqueId));
7346
+ }
7347
+ getJarvisUserContext(uniqueId, contextUniqueId) {
7348
+ return from(this.ensureConfigured().users.getContext(uniqueId, contextUniqueId));
7349
+ }
7350
+ createJarvisUserContext(uniqueId, data) {
7351
+ return from(this.ensureConfigured().users.createContext(uniqueId, data));
7352
+ }
7353
+ getJarvisUserConversation(uniqueId, contextUniqueId) {
7354
+ return from(this.ensureConfigured().users.getConversation(uniqueId, contextUniqueId));
7355
+ }
7356
+ sendJarvisUserMessage(uniqueId, contextUniqueId, data) {
7357
+ return from(this.ensureConfigured().users.sendMessage(uniqueId, contextUniqueId, data));
7358
+ }
7359
+ getJarvisUserContentContext(uniqueId, contentIdentityUniqueId, contextUniqueId) {
7360
+ return from(this.ensureConfigured().users.getContentContext(uniqueId, contentIdentityUniqueId, contextUniqueId));
7361
+ }
7362
+ createJarvisUserContentContext(uniqueId, contentIdentityUniqueId, data) {
7363
+ return from(this.ensureConfigured().users.createContentContext(uniqueId, contentIdentityUniqueId, data));
7364
+ }
7365
+ getJarvisUserContentConversation(uniqueId, contentIdentityUniqueId, contextUniqueId) {
7366
+ return from(this.ensureConfigured().users.getContentConversation(uniqueId, contentIdentityUniqueId, contextUniqueId));
7367
+ }
7368
+ sendJarvisUserContentMessage(uniqueId, contentIdentityUniqueId, contextUniqueId, data) {
7369
+ return from(this.ensureConfigured().users.sendContentMessage(uniqueId, contentIdentityUniqueId, contextUniqueId, data));
7370
+ }
7371
+ // ─────────────────────────────────────────────────────────────────────────────
7372
+ // Workflow Participants Service
7373
+ // ─────────────────────────────────────────────────────────────────────────────
7374
+ listWorkflowParticipants(workflowUniqueId, params) {
7375
+ return from(this.ensureConfigured().workflowParticipants.list(workflowUniqueId, params));
7376
+ }
7377
+ getWorkflowParticipant(workflowUniqueId, uniqueId) {
7378
+ return from(this.ensureConfigured().workflowParticipants.get(workflowUniqueId, uniqueId));
7379
+ }
7380
+ addWorkflowParticipant(workflowUniqueId, data) {
7381
+ return from(this.ensureConfigured().workflowParticipants.add(workflowUniqueId, data));
7382
+ }
7383
+ updateWorkflowParticipant(workflowUniqueId, uniqueId, data) {
7384
+ return from(this.ensureConfigured().workflowParticipants.update(workflowUniqueId, uniqueId, data));
7385
+ }
7386
+ removeWorkflowParticipant(workflowUniqueId, uniqueId) {
7387
+ return from(this.ensureConfigured().workflowParticipants.remove(workflowUniqueId, uniqueId));
7388
+ }
7389
+ // ─────────────────────────────────────────────────────────────────────────────
7390
+ // Workflow Steps Service
7391
+ // ─────────────────────────────────────────────────────────────────────────────
7392
+ getWorkflowStep(workflowUniqueId, stepUniqueId) {
7393
+ return from(this.ensureConfigured().workflowSteps.get(workflowUniqueId, stepUniqueId));
7394
+ }
7395
+ addWorkflowStep(workflowUniqueId, data) {
7396
+ return from(this.ensureConfigured().workflowSteps.add(workflowUniqueId, data));
7397
+ }
7398
+ updateWorkflowStep(workflowUniqueId, stepUniqueId, data) {
7399
+ return from(this.ensureConfigured().workflowSteps.update(workflowUniqueId, stepUniqueId, data));
7400
+ }
7401
+ removeWorkflowStep(workflowUniqueId, stepUniqueId) {
7402
+ return from(this.ensureConfigured().workflowSteps.remove(workflowUniqueId, stepUniqueId));
7403
+ }
7404
+ addStepPrompt(stepUniqueId, data) {
7405
+ return from(this.ensureConfigured().workflowSteps.addPrompt(stepUniqueId, data));
7406
+ }
7407
+ addStepAgent(stepUniqueId, data) {
7408
+ return from(this.ensureConfigured().workflowSteps.addAgent(stepUniqueId, data));
7409
+ }
7410
+ // ─────────────────────────────────────────────────────────────────────────────
7411
+ // Workflow Instances Service
7412
+ // ─────────────────────────────────────────────────────────────────────────────
7413
+ startWorkflowInstance(workflowUniqueId, data) {
7414
+ return from(this.ensureConfigured().workflowInstances.start(workflowUniqueId, data));
7415
+ }
7416
+ getWorkflowInstance(workflowUniqueId, instanceUniqueId) {
7417
+ return from(this.ensureConfigured().workflowInstances.get(workflowUniqueId, instanceUniqueId));
7418
+ }
7419
+ getWorkflowInstanceDetails(workflowUniqueId, instanceUniqueId) {
7420
+ return from(this.ensureConfigured().workflowInstances.getDetails(workflowUniqueId, instanceUniqueId));
7421
+ }
7422
+ stepWorkflowInstance(workflowUniqueId, instanceUniqueId, data) {
7423
+ return from(this.ensureConfigured().workflowInstances.step(workflowUniqueId, instanceUniqueId, data));
7424
+ }
7425
+ logWorkflowStep(workflowUniqueId, instanceUniqueId, data) {
7426
+ return from(this.ensureConfigured().workflowInstances.logStep(workflowUniqueId, instanceUniqueId, data));
7427
+ }
7428
+ suspendWorkflowInstance(workflowUniqueId, instanceUniqueId) {
7429
+ return from(this.ensureConfigured().workflowInstances.suspend(workflowUniqueId, instanceUniqueId));
7430
+ }
7431
+ resumeWorkflowInstance(workflowUniqueId, instanceUniqueId) {
7432
+ return from(this.ensureConfigured().workflowInstances.resume(workflowUniqueId, instanceUniqueId));
7433
+ }
7434
+ // ─────────────────────────────────────────────────────────────────────────────
7435
+ // Agent Runtime Service
7436
+ // ─────────────────────────────────────────────────────────────────────────────
7437
+ getAgentContext(agentUniqueId, contextUniqueId) {
7438
+ return from(this.ensureConfigured().agentRuntime.getContext(agentUniqueId, contextUniqueId));
7439
+ }
7440
+ createAgentContext(agentUniqueId, data) {
7441
+ return from(this.ensureConfigured().agentRuntime.createContext(agentUniqueId, data));
7442
+ }
7443
+ getAgentConversation(agentUniqueId, contextUniqueId) {
7444
+ return from(this.ensureConfigured().agentRuntime.getConversation(agentUniqueId, contextUniqueId));
7445
+ }
7446
+ getAgentThread(agentUniqueId, threadId) {
7447
+ return from(this.ensureConfigured().agentRuntime.getThread(agentUniqueId, threadId));
7448
+ }
7449
+ createAgentThread(agentUniqueId, data) {
7450
+ return from(this.ensureConfigured().agentRuntime.createThread(agentUniqueId, data));
7451
+ }
7452
+ sendAgentThreadMessage(agentUniqueId, threadId, data) {
7453
+ return from(this.ensureConfigured().agentRuntime.sendMessage(agentUniqueId, threadId, data));
7454
+ }
7455
+ sendAgentThreadMessageStream(agentUniqueId, threadId, data) {
7456
+ return from(this.ensureConfigured().agentRuntime.sendMessageStream(agentUniqueId, threadId, data));
7457
+ }
7458
+ runAgentThread(agentUniqueId, threadId, data) {
7459
+ return from(this.ensureConfigured().agentRuntime.runThread(agentUniqueId, threadId, data));
7460
+ }
7461
+ getAgentRun(agentUniqueId, threadId, runId) {
7462
+ return from(this.ensureConfigured().agentRuntime.getRun(agentUniqueId, threadId, runId));
7463
+ }
7464
+ getAgentMessages(agentUniqueId, threadId) {
7465
+ return from(this.ensureConfigured().agentRuntime.getMessages(agentUniqueId, threadId));
7466
+ }
7467
+ listAgentExecutions(agentUniqueId, params) {
7468
+ return from(this.ensureConfigured().agentRuntime.listExecutions(agentUniqueId, params));
7469
+ }
7470
+ getAgentExecution(agentUniqueId, executionUniqueId) {
7471
+ return from(this.ensureConfigured().agentRuntime.getExecution(agentUniqueId, executionUniqueId));
7472
+ }
7473
+ // ─────────────────────────────────────────────────────────────────────────────
7474
+ // Mail Templates Service
7475
+ // ─────────────────────────────────────────────────────────────────────────────
7476
+ listMailTemplates(params) {
7477
+ return from(this.ensureConfigured().mailTemplates.list(params));
7478
+ }
7479
+ getMailTemplate(uniqueId) {
7480
+ return from(this.ensureConfigured().mailTemplates.get(uniqueId));
7481
+ }
7482
+ createMailTemplate(data) {
7483
+ return from(this.ensureConfigured().mailTemplates.create(data));
7484
+ }
7485
+ updateMailTemplate(uniqueId, data) {
7486
+ return from(this.ensureConfigured().mailTemplates.update(uniqueId, data));
7487
+ }
7488
+ createMandrillTemplate(uniqueId, data) {
7489
+ return from(this.ensureConfigured().mailTemplates.createMandrillTemplate(uniqueId, data));
7490
+ }
7491
+ updateMandrillTemplate(uniqueId, data) {
7492
+ return from(this.ensureConfigured().mailTemplates.updateMandrillTemplate(uniqueId, data));
7493
+ }
7494
+ publishMandrill(uniqueId) {
7495
+ return from(this.ensureConfigured().mailTemplates.publishMandrill(uniqueId));
7496
+ }
7497
+ getMandrillStats(uniqueId) {
7498
+ return from(this.ensureConfigured().mailTemplates.getMandrillStats(uniqueId));
7499
+ }
7500
+ // ─────────────────────────────────────────────────────────────────────────────
7501
+ // Marvin Chat Service
7502
+ // ─────────────────────────────────────────────────────────────────────────────
7503
+ marvinChat(data) {
7504
+ return from(this.ensureConfigured().marvinChat.chat(data));
7505
+ }
7506
+ marvinChatV2(data) {
7507
+ return from(this.ensureConfigured().marvinChat.chatV2(data));
7508
+ }
7509
+ marvinChatV3(data) {
7510
+ return from(this.ensureConfigured().marvinChat.chatV3(data));
7511
+ }
7512
+ getMarvinContext(uniqueId) {
7513
+ return from(this.ensureConfigured().marvinChat.getContext(uniqueId));
7514
+ }
7515
+ createMarvinContext(data) {
7516
+ return from(this.ensureConfigured().marvinChat.createContext(data));
7517
+ }
7518
+ sendMarvinMessage(contextUniqueId, data) {
7519
+ return from(this.ensureConfigured().marvinChat.sendMessage(contextUniqueId, data));
7520
+ }
7521
+ // ─────────────────────────────────────────────────────────────────────────────
7522
+ // Prompt Comments Service
7523
+ // ─────────────────────────────────────────────────────────────────────────────
7524
+ listPromptComments(promptUniqueId, params) {
7525
+ return from(this.ensureConfigured().promptComments.list(promptUniqueId, params));
7526
+ }
7527
+ getPromptComment(promptUniqueId, uniqueId) {
7528
+ return from(this.ensureConfigured().promptComments.get(promptUniqueId, uniqueId));
7529
+ }
7530
+ createPromptComment(promptUniqueId, data) {
7531
+ return from(this.ensureConfigured().promptComments.create(promptUniqueId, data));
7532
+ }
7533
+ updatePromptComment(promptUniqueId, uniqueId, data) {
7534
+ return from(this.ensureConfigured().promptComments.update(promptUniqueId, uniqueId, data));
7535
+ }
7536
+ deletePromptComment(promptUniqueId, uniqueId) {
7537
+ return from(this.ensureConfigured().promptComments.delete(promptUniqueId, uniqueId));
7538
+ }
7539
+ likePromptComment(promptUniqueId, uniqueId) {
7540
+ return from(this.ensureConfigured().promptComments.like(promptUniqueId, uniqueId));
7541
+ }
7542
+ dislikePromptComment(promptUniqueId, uniqueId) {
7543
+ return from(this.ensureConfigured().promptComments.dislike(promptUniqueId, uniqueId));
7544
+ }
7545
+ replyToPromptComment(promptUniqueId, uniqueId, data) {
7546
+ return from(this.ensureConfigured().promptComments.reply(promptUniqueId, uniqueId, data));
7547
+ }
7548
+ followPromptComment(promptUniqueId, uniqueId) {
7549
+ return from(this.ensureConfigured().promptComments.follow(promptUniqueId, uniqueId));
7550
+ }
7551
+ unfollowPromptComment(promptUniqueId, uniqueId) {
7552
+ return from(this.ensureConfigured().promptComments.unfollow(promptUniqueId, uniqueId));
7553
+ }
7554
+ savePromptComment(promptUniqueId, uniqueId) {
7555
+ return from(this.ensureConfigured().promptComments.save(promptUniqueId, uniqueId));
7556
+ }
7557
+ unsavePromptComment(promptUniqueId, uniqueId) {
7558
+ return from(this.ensureConfigured().promptComments.unsave(promptUniqueId, uniqueId));
7559
+ }
7560
+ // ─────────────────────────────────────────────────────────────────────────────
7561
+ // Execution Comments Service
7562
+ // ─────────────────────────────────────────────────────────────────────────────
7563
+ listExecutionComments(promptUniqueId, executionUniqueId, params) {
7564
+ return from(this.ensureConfigured().executionComments.list(promptUniqueId, executionUniqueId, params));
7565
+ }
7566
+ getExecutionComment(promptUniqueId, executionUniqueId, uniqueId) {
7567
+ return from(this.ensureConfigured().executionComments.get(promptUniqueId, executionUniqueId, uniqueId));
7568
+ }
7569
+ createExecutionComment(promptUniqueId, executionUniqueId, data) {
7570
+ return from(this.ensureConfigured().executionComments.create(promptUniqueId, executionUniqueId, data));
7571
+ }
7572
+ updateExecutionComment(promptUniqueId, executionUniqueId, uniqueId, data) {
7573
+ return from(this.ensureConfigured().executionComments.update(promptUniqueId, executionUniqueId, uniqueId, data));
7574
+ }
7575
+ deleteExecutionComment(promptUniqueId, executionUniqueId, uniqueId) {
7576
+ return from(this.ensureConfigured().executionComments.delete(promptUniqueId, executionUniqueId, uniqueId));
7577
+ }
7578
+ likeExecutionComment(promptUniqueId, executionUniqueId, uniqueId) {
7579
+ return from(this.ensureConfigured().executionComments.like(promptUniqueId, executionUniqueId, uniqueId));
7580
+ }
7581
+ dislikeExecutionComment(promptUniqueId, executionUniqueId, uniqueId) {
7582
+ return from(this.ensureConfigured().executionComments.dislike(promptUniqueId, executionUniqueId, uniqueId));
7583
+ }
7584
+ replyToExecutionComment(promptUniqueId, executionUniqueId, uniqueId, data) {
7585
+ return from(this.ensureConfigured().executionComments.reply(promptUniqueId, executionUniqueId, uniqueId, data));
7586
+ }
7587
+ followExecutionComment(promptUniqueId, executionUniqueId, uniqueId) {
7588
+ return from(this.ensureConfigured().executionComments.follow(promptUniqueId, executionUniqueId, uniqueId));
7589
+ }
7590
+ unfollowExecutionComment(promptUniqueId, executionUniqueId, uniqueId) {
7591
+ return from(this.ensureConfigured().executionComments.unfollow(promptUniqueId, executionUniqueId, uniqueId));
7592
+ }
7593
+ saveExecutionComment(promptUniqueId, executionUniqueId, uniqueId) {
7594
+ return from(this.ensureConfigured().executionComments.save(promptUniqueId, executionUniqueId, uniqueId));
7595
+ }
7596
+ unsaveExecutionComment(promptUniqueId, executionUniqueId, uniqueId) {
7597
+ return from(this.ensureConfigured().executionComments.unsave(promptUniqueId, executionUniqueId, uniqueId));
7598
+ }
7599
+ // ─────────────────────────────────────────────────────────────────────────────
5511
7600
  // Direct Block Access (for advanced usage)
5512
7601
  // ─────────────────────────────────────────────────────────────────────────────
5513
7602
  /**
5514
7603
  * Access the underlying block for advanced operations
5515
7604
  * Use this when you need access to services not wrapped by this Angular service
5516
- */ get rawBlock() {
7605
+ */ get jarvisBlock() {
5517
7606
  return this.ensureConfigured();
5518
7607
  }
5519
7608
  constructor(serviceTransport, legacyTransport, config){
@@ -5600,6 +7689,18 @@ typeof SuppressedError === "function" ? SuppressedError : function _SuppressedEr
5600
7689
  deleteOnboarding(uniqueId) {
5601
7690
  return from(this.ensureConfigured().onboardings.delete(uniqueId));
5602
7691
  }
7692
+ addOnboardingStep(uniqueId, data) {
7693
+ return from(this.ensureConfigured().onboardings.addStep(uniqueId, data));
7694
+ }
7695
+ updateOnboardingStep(uniqueId, stepUniqueId, data) {
7696
+ return from(this.ensureConfigured().onboardings.updateStep(uniqueId, stepUniqueId, data));
7697
+ }
7698
+ deleteOnboardingStep(uniqueId, stepUniqueId) {
7699
+ return from(this.ensureConfigured().onboardings.deleteStep(uniqueId, stepUniqueId));
7700
+ }
7701
+ stepUser(uniqueId, userUniqueId, stepData) {
7702
+ return from(this.ensureConfigured().onboardings.stepUser(uniqueId, userUniqueId, stepData));
7703
+ }
5603
7704
  // ─────────────────────────────────────────────────────────────────────────────
5604
7705
  // Flows Service
5605
7706
  // ─────────────────────────────────────────────────────────────────────────────
@@ -5621,6 +7722,12 @@ typeof SuppressedError === "function" ? SuppressedError : function _SuppressedEr
5621
7722
  listFlowsByOnboarding(onboardingUniqueId) {
5622
7723
  return from(this.ensureConfigured().flows.listByOnboarding(onboardingUniqueId));
5623
7724
  }
7725
+ getFlowBySource(uniqueId, sourceUniqueId) {
7726
+ return from(this.ensureConfigured().flows.getBySource(uniqueId, sourceUniqueId));
7727
+ }
7728
+ stepFlowBySource(uniqueId, sourceUniqueId, stepData) {
7729
+ return from(this.ensureConfigured().flows.stepBySource(uniqueId, sourceUniqueId, stepData));
7730
+ }
5624
7731
  // ─────────────────────────────────────────────────────────────────────────────
5625
7732
  // User Journeys Service
5626
7733
  // ─────────────────────────────────────────────────────────────────────────────
@@ -5645,6 +7752,15 @@ typeof SuppressedError === "function" ? SuppressedError : function _SuppressedEr
5645
7752
  getJourneyProgress(uniqueId) {
5646
7753
  return from(this.ensureConfigured().userJourneys.getProgress(uniqueId));
5647
7754
  }
7755
+ listJourneyByUserAndOnboarding(userUniqueId, onboardingUniqueId) {
7756
+ return from(this.ensureConfigured().userJourneys.listByUserAndOnboarding(userUniqueId, onboardingUniqueId));
7757
+ }
7758
+ reportJourneyList(params) {
7759
+ return from(this.ensureConfigured().userJourneys.reportList(params));
7760
+ }
7761
+ reportJourneySummary(params) {
7762
+ return from(this.ensureConfigured().userJourneys.reportSummary(params));
7763
+ }
5648
7764
  // ─────────────────────────────────────────────────────────────────────────────
5649
7765
  // User Identities Service
5650
7766
  // ─────────────────────────────────────────────────────────────────────────────
@@ -5667,12 +7783,69 @@ typeof SuppressedError === "function" ? SuppressedError : function _SuppressedEr
5667
7783
  return from(this.ensureConfigured().userIdentities.listByUser(userUniqueId));
5668
7784
  }
5669
7785
  // ─────────────────────────────────────────────────────────────────────────────
7786
+ // Onboard Service
7787
+ // ─────────────────────────────────────────────────────────────────────────────
7788
+ startOnboard(uniqueId, data) {
7789
+ return from(this.ensureConfigured().onboard.start(uniqueId, data));
7790
+ }
7791
+ getOnboard(uniqueId) {
7792
+ return from(this.ensureConfigured().onboard.get(uniqueId));
7793
+ }
7794
+ getOnboardDetails(uniqueId) {
7795
+ return from(this.ensureConfigured().onboard.getDetails(uniqueId));
7796
+ }
7797
+ stepOnboard(uniqueId, data) {
7798
+ return from(this.ensureConfigured().onboard.step(uniqueId, data));
7799
+ }
7800
+ logOnboard(uniqueId, data) {
7801
+ return from(this.ensureConfigured().onboard.log(uniqueId, data));
7802
+ }
7803
+ suspendOnboard(uniqueId) {
7804
+ return from(this.ensureConfigured().onboard.suspend(uniqueId));
7805
+ }
7806
+ resumeOnboard(uniqueId) {
7807
+ return from(this.ensureConfigured().onboard.resume(uniqueId));
7808
+ }
7809
+ // ─────────────────────────────────────────────────────────────────────────────
7810
+ // Mail Templates Service
7811
+ // ─────────────────────────────────────────────────────────────────────────────
7812
+ listMailTemplates(params) {
7813
+ return from(this.ensureConfigured().mailTemplates.list(params));
7814
+ }
7815
+ getMailTemplate(uniqueId) {
7816
+ return from(this.ensureConfigured().mailTemplates.get(uniqueId));
7817
+ }
7818
+ createMailTemplate(data) {
7819
+ return from(this.ensureConfigured().mailTemplates.create(data));
7820
+ }
7821
+ updateMailTemplate(uniqueId, data) {
7822
+ return from(this.ensureConfigured().mailTemplates.update(uniqueId, data));
7823
+ }
7824
+ getMandrillStats(uniqueId) {
7825
+ return from(this.ensureConfigured().mailTemplates.getMandrillStats(uniqueId));
7826
+ }
7827
+ createMandrillTemplate(uniqueId, data) {
7828
+ return from(this.ensureConfigured().mailTemplates.createMandrillTemplate(uniqueId, data));
7829
+ }
7830
+ updateMandrillTemplate(uniqueId, data) {
7831
+ return from(this.ensureConfigured().mailTemplates.updateMandrillTemplate(uniqueId, data));
7832
+ }
7833
+ publishMandrill(uniqueId) {
7834
+ return from(this.ensureConfigured().mailTemplates.publishMandrill(uniqueId));
7835
+ }
7836
+ // ─────────────────────────────────────────────────────────────────────────────
7837
+ // Remarketing Service
7838
+ // ─────────────────────────────────────────────────────────────────────────────
7839
+ listAbandonedJourneys(params) {
7840
+ return from(this.ensureConfigured().remarketing.listAbandonedJourneys(params));
7841
+ }
7842
+ // ─────────────────────────────────────────────────────────────────────────────
5670
7843
  // Direct Block Access (for advanced usage)
5671
7844
  // ─────────────────────────────────────────────────────────────────────────────
5672
7845
  /**
5673
7846
  * Access the underlying block for advanced operations
5674
7847
  * Use this when you need access to services not wrapped by this Angular service
5675
- */ get rawBlock() {
7848
+ */ get onboardingBlock() {
5676
7849
  return this.ensureConfigured();
5677
7850
  }
5678
7851
  constructor(serviceTransport, legacyTransport, config){
@@ -6106,58 +8279,268 @@ typeof SuppressedError === "function" ? SuppressedError : function _SuppressedEr
6106
8279
  // ─────────────────────────────────────────────────────────────────────────────
6107
8280
  // Registration Tokens Service
6108
8281
  // ─────────────────────────────────────────────────────────────────────────────
6109
- /**
6110
- * List registration tokens
6111
- */ listRegistrationTokens(params) {
8282
+ listRegistrationTokens(params) {
6112
8283
  return from(this.ensureConfigured().registrationTokens.list(params));
6113
8284
  }
6114
- /**
6115
- * Get a registration token
6116
- */ getRegistrationToken(uniqueId) {
8285
+ getRegistrationToken(uniqueId) {
6117
8286
  return from(this.ensureConfigured().registrationTokens.get(uniqueId));
6118
8287
  }
6119
- /**
6120
- * Create a registration token
6121
- */ createRegistrationToken(data) {
8288
+ createRegistrationToken(data) {
6122
8289
  return from(this.ensureConfigured().registrationTokens.create(data));
6123
8290
  }
6124
- /**
6125
- * Update a registration token
6126
- */ updateRegistrationToken(uniqueId, data) {
8291
+ updateRegistrationToken(uniqueId, data) {
6127
8292
  return from(this.ensureConfigured().registrationTokens.update(uniqueId, data));
6128
8293
  }
6129
- /**
6130
- * Delete a registration token
6131
- */ deleteRegistrationToken(uniqueId) {
8294
+ deleteRegistrationToken(uniqueId) {
6132
8295
  return from(this.ensureConfigured().registrationTokens.delete(uniqueId));
6133
8296
  }
6134
- /**
6135
- * Validate a token code
6136
- */ validateRegistrationToken(tokenCode) {
8297
+ validateRegistrationToken(tokenCode) {
6137
8298
  return from(this.ensureConfigured().registrationTokens.validate(tokenCode));
6138
8299
  }
6139
- /**
6140
- * Use a token to register a user
6141
- */ useRegistrationToken(tokenCode, userUniqueId) {
8300
+ useRegistrationToken(tokenCode, userUniqueId) {
6142
8301
  return from(this.ensureConfigured().registrationTokens.use(tokenCode, userUniqueId));
6143
8302
  }
6144
- /**
6145
- * Revoke a registration token
6146
- */ revokeRegistrationToken(uniqueId) {
8303
+ revokeRegistrationToken(uniqueId) {
6147
8304
  return from(this.ensureConfigured().registrationTokens.revoke(uniqueId));
6148
8305
  }
6149
- /**
6150
- * Generate a batch of tokens
6151
- */ generateRegistrationTokenBatch(request) {
8306
+ generateRegistrationTokenBatch(request) {
6152
8307
  return from(this.ensureConfigured().registrationTokens.generateBatch(request));
6153
8308
  }
6154
8309
  // ─────────────────────────────────────────────────────────────────────────────
8310
+ // Placements Service
8311
+ // ─────────────────────────────────────────────────────────────────────────────
8312
+ getPlacement(uniqueId) {
8313
+ return from(this.ensureConfigured().placements.get(uniqueId));
8314
+ }
8315
+ listPlacementsByCourse(courseUniqueId, params) {
8316
+ return from(this.ensureConfigured().placements.listByCourse(courseUniqueId, params));
8317
+ }
8318
+ createPlacement(courseUniqueId, data) {
8319
+ return from(this.ensureConfigured().placements.create(courseUniqueId, data));
8320
+ }
8321
+ getPlacementSection(placementUniqueId, sectionId) {
8322
+ return from(this.ensureConfigured().placements.getSection(placementUniqueId, sectionId));
8323
+ }
8324
+ createPlacementSection(placementUniqueId, data) {
8325
+ return from(this.ensureConfigured().placements.createSection(placementUniqueId, data));
8326
+ }
8327
+ getPlacementQuestion(placementUniqueId, questionId) {
8328
+ return from(this.ensureConfigured().placements.getQuestion(placementUniqueId, questionId));
8329
+ }
8330
+ createPlacementQuestion(placementUniqueId, data) {
8331
+ return from(this.ensureConfigured().placements.createQuestion(placementUniqueId, data));
8332
+ }
8333
+ addQuestionToPlacementSection(placementUniqueId, sectionId, questionId) {
8334
+ return from(this.ensureConfigured().placements.addQuestionToSection(placementUniqueId, sectionId, questionId));
8335
+ }
8336
+ listPlacementOptions() {
8337
+ return from(this.ensureConfigured().placements.listOptions());
8338
+ }
8339
+ createPlacementOption(data) {
8340
+ return from(this.ensureConfigured().placements.createOption(data));
8341
+ }
8342
+ addOptionToPlacementQuestion(placementUniqueId, questionId, optionId) {
8343
+ return from(this.ensureConfigured().placements.addOptionToQuestion(placementUniqueId, questionId, optionId));
8344
+ }
8345
+ setPlacementRightOption(placementUniqueId, questionId, optionId) {
8346
+ return from(this.ensureConfigured().placements.setRightOption(placementUniqueId, questionId, optionId));
8347
+ }
8348
+ removePlacementOption(placementUniqueId, questionId, optionId) {
8349
+ return from(this.ensureConfigured().placements.removeOption(placementUniqueId, questionId, optionId));
8350
+ }
8351
+ createPlacementRule(placementUniqueId, data) {
8352
+ return from(this.ensureConfigured().placements.createRule(placementUniqueId, data));
8353
+ }
8354
+ getUserPlacement(userUniqueId) {
8355
+ return from(this.ensureConfigured().placements.getUserPlacement(userUniqueId));
8356
+ }
8357
+ startPlacement(userUniqueId, placementUniqueId) {
8358
+ return from(this.ensureConfigured().placements.startPlacement(userUniqueId, placementUniqueId));
8359
+ }
8360
+ submitPlacementResponse(userUniqueId, instanceUniqueId, responses) {
8361
+ return from(this.ensureConfigured().placements.submitResponse(userUniqueId, instanceUniqueId, responses));
8362
+ }
8363
+ finishPlacement(userUniqueId, instanceUniqueId) {
8364
+ return from(this.ensureConfigured().placements.finishPlacement(userUniqueId, instanceUniqueId));
8365
+ }
8366
+ // ─────────────────────────────────────────────────────────────────────────────
8367
+ // Calendars Service
8368
+ // ─────────────────────────────────────────────────────────────────────────────
8369
+ getCalendarStudentAvailability(userUniqueId) {
8370
+ return from(this.ensureConfigured().calendars.getStudentAvailability(userUniqueId));
8371
+ }
8372
+ addCalendarStudentAvailability(userUniqueId, data) {
8373
+ return from(this.ensureConfigured().calendars.addStudentAvailability(userUniqueId, data));
8374
+ }
8375
+ updateCalendarStudentAvailability(userUniqueId, availabilityUniqueId, data) {
8376
+ return from(this.ensureConfigured().calendars.updateStudentAvailability(userUniqueId, availabilityUniqueId, data));
8377
+ }
8378
+ updateCalendarStudentAvailabilities(userUniqueId, data) {
8379
+ return from(this.ensureConfigured().calendars.updateStudentAvailabilities(userUniqueId, data));
8380
+ }
8381
+ deleteCalendarStudentAvailability(userUniqueId, availabilityUniqueId) {
8382
+ return from(this.ensureConfigured().calendars.deleteStudentAvailability(userUniqueId, availabilityUniqueId));
8383
+ }
8384
+ deleteAllCalendarStudentAvailability(userUniqueId) {
8385
+ return from(this.ensureConfigured().calendars.deleteAllStudentAvailability(userUniqueId));
8386
+ }
8387
+ getCalendarTeacherAvailability(teacherUniqueId) {
8388
+ return from(this.ensureConfigured().calendars.getTeacherAvailability(teacherUniqueId));
8389
+ }
8390
+ addCalendarTeacherAvailability(teacherUniqueId, data) {
8391
+ return from(this.ensureConfigured().calendars.addTeacherAvailability(teacherUniqueId, data));
8392
+ }
8393
+ updateCalendarTeacherAvailability(teacherUniqueId, availabilityUniqueId, data) {
8394
+ return from(this.ensureConfigured().calendars.updateTeacherAvailability(teacherUniqueId, availabilityUniqueId, data));
8395
+ }
8396
+ deleteCalendarTeacherAvailability(teacherUniqueId, availabilityUniqueId) {
8397
+ return from(this.ensureConfigured().calendars.deleteTeacherAvailability(teacherUniqueId, availabilityUniqueId));
8398
+ }
8399
+ deleteAllCalendarTeacherAvailability(teacherUniqueId) {
8400
+ return from(this.ensureConfigured().calendars.deleteAllTeacherAvailability(teacherUniqueId));
8401
+ }
8402
+ listCalendarEvents(params) {
8403
+ return from(this.ensureConfigured().calendars.listEvents(params));
8404
+ }
8405
+ getCalendarEvent(uniqueId) {
8406
+ return from(this.ensureConfigured().calendars.getEvent(uniqueId));
8407
+ }
8408
+ createCalendarEvent(data) {
8409
+ return from(this.ensureConfigured().calendars.createEvent(data));
8410
+ }
8411
+ updateCalendarEvent(uniqueId, data) {
8412
+ return from(this.ensureConfigured().calendars.updateEvent(uniqueId, data));
8413
+ }
8414
+ deleteCalendarEvent(uniqueId) {
8415
+ return from(this.ensureConfigured().calendars.deleteEvent(uniqueId));
8416
+ }
8417
+ // ─────────────────────────────────────────────────────────────────────────────
8418
+ // Matches Service
8419
+ // ─────────────────────────────────────────────────────────────────────────────
8420
+ createMatch(data) {
8421
+ return from(this.ensureConfigured().matches.create(data));
8422
+ }
8423
+ activateMatch(uniqueId) {
8424
+ return from(this.ensureConfigured().matches.activate(uniqueId));
8425
+ }
8426
+ deactivateMatch(uniqueId) {
8427
+ return from(this.ensureConfigured().matches.deactivate(uniqueId));
8428
+ }
8429
+ deleteMatch(uniqueId) {
8430
+ return from(this.ensureConfigured().matches.delete(uniqueId));
8431
+ }
8432
+ getActiveMatchByStudent(studentUniqueId) {
8433
+ return from(this.ensureConfigured().matches.getActiveByStudent(studentUniqueId));
8434
+ }
8435
+ getAllMatchesByStudent(studentUniqueId) {
8436
+ return from(this.ensureConfigured().matches.getAllByStudent(studentUniqueId));
8437
+ }
8438
+ getAvailableMatchesByStudent(studentUniqueId) {
8439
+ return from(this.ensureConfigured().matches.getAvailableByStudent(studentUniqueId));
8440
+ }
8441
+ getActiveMatchByTeacher(teacherUniqueId) {
8442
+ return from(this.ensureConfigured().matches.getActiveByTeacher(teacherUniqueId));
8443
+ }
8444
+ getAllMatchesByTeacher(teacherUniqueId) {
8445
+ return from(this.ensureConfigured().matches.getAllByTeacher(teacherUniqueId));
8446
+ }
8447
+ getAvailableMatchesByTeacher(teacherUniqueId) {
8448
+ return from(this.ensureConfigured().matches.getAvailableByTeacher(teacherUniqueId));
8449
+ }
8450
+ findCoaches(studentUniqueId, request) {
8451
+ return from(this.ensureConfigured().matches.findCoaches(studentUniqueId, request));
8452
+ }
8453
+ findCoachees(teacherUniqueId, request) {
8454
+ return from(this.ensureConfigured().matches.findCoachees(teacherUniqueId, request));
8455
+ }
8456
+ evaluateMatches(request) {
8457
+ return from(this.ensureConfigured().matches.evaluateMatches(request));
8458
+ }
8459
+ evaluateAvailabilities(request) {
8460
+ return from(this.ensureConfigured().matches.evaluateAvailabilities(request));
8461
+ }
8462
+ // ─────────────────────────────────────────────────────────────────────────────
8463
+ // Attendance Service
8464
+ // ─────────────────────────────────────────────────────────────────────────────
8465
+ listAttendance(params) {
8466
+ return from(this.ensureConfigured().attendance.list(params));
8467
+ }
8468
+ getAttendance(uniqueId) {
8469
+ return from(this.ensureConfigured().attendance.get(uniqueId));
8470
+ }
8471
+ createAttendance(data) {
8472
+ return from(this.ensureConfigured().attendance.create(data));
8473
+ }
8474
+ updateAttendance(uniqueId, data) {
8475
+ return from(this.ensureConfigured().attendance.update(uniqueId, data));
8476
+ }
8477
+ deleteAttendance(uniqueId) {
8478
+ return from(this.ensureConfigured().attendance.delete(uniqueId));
8479
+ }
8480
+ bulkCreateAttendance(data) {
8481
+ return from(this.ensureConfigured().attendance.bulkCreate(data));
8482
+ }
8483
+ listAttendanceByLesson(lessonUniqueId, params) {
8484
+ return from(this.ensureConfigured().attendance.listByLesson(lessonUniqueId, params));
8485
+ }
8486
+ listAttendanceByStudent(studentUniqueId, params) {
8487
+ return from(this.ensureConfigured().attendance.listByStudent(studentUniqueId, params));
8488
+ }
8489
+ listAttendanceByCourse(courseUniqueId, params) {
8490
+ return from(this.ensureConfigured().attendance.listByCourse(courseUniqueId, params));
8491
+ }
8492
+ getStudentAttendanceStats(studentUniqueId, courseUniqueId) {
8493
+ return from(this.ensureConfigured().attendance.getStudentStats(studentUniqueId, courseUniqueId));
8494
+ }
8495
+ verifyAttendance(uniqueId) {
8496
+ return from(this.ensureConfigured().attendance.verify(uniqueId));
8497
+ }
8498
+ // ─────────────────────────────────────────────────────────────────────────────
8499
+ // Notes Service
8500
+ // ─────────────────────────────────────────────────────────────────────────────
8501
+ listNotes(params) {
8502
+ return from(this.ensureConfigured().notes.list(params));
8503
+ }
8504
+ getNote(uniqueId) {
8505
+ return from(this.ensureConfigured().notes.get(uniqueId));
8506
+ }
8507
+ createNote(data) {
8508
+ return from(this.ensureConfigured().notes.create(data));
8509
+ }
8510
+ updateNote(uniqueId, data) {
8511
+ return from(this.ensureConfigured().notes.update(uniqueId, data));
8512
+ }
8513
+ deleteNote(uniqueId) {
8514
+ return from(this.ensureConfigured().notes.delete(uniqueId));
8515
+ }
8516
+ listNotesByAuthor(authorUniqueId, params) {
8517
+ return from(this.ensureConfigured().notes.listByAuthor(authorUniqueId, params));
8518
+ }
8519
+ listNotesByTarget(targetUniqueId, targetType, params) {
8520
+ return from(this.ensureConfigured().notes.listByTarget(targetUniqueId, targetType, params));
8521
+ }
8522
+ listNotesByCourse(courseUniqueId, params) {
8523
+ return from(this.ensureConfigured().notes.listByCourse(courseUniqueId, params));
8524
+ }
8525
+ listNotesByLesson(lessonUniqueId, params) {
8526
+ return from(this.ensureConfigured().notes.listByLesson(lessonUniqueId, params));
8527
+ }
8528
+ pinNote(uniqueId) {
8529
+ return from(this.ensureConfigured().notes.pin(uniqueId));
8530
+ }
8531
+ unpinNote(uniqueId) {
8532
+ return from(this.ensureConfigured().notes.unpin(uniqueId));
8533
+ }
8534
+ getNoteReplies(uniqueId) {
8535
+ return from(this.ensureConfigured().notes.getReplies(uniqueId));
8536
+ }
8537
+ // ─────────────────────────────────────────────────────────────────────────────
6155
8538
  // Direct Block Access (for advanced usage)
6156
8539
  // ─────────────────────────────────────────────────────────────────────────────
6157
8540
  /**
6158
8541
  * Access the underlying block for advanced operations
6159
8542
  * Use this when you need access to services not wrapped by this Angular service
6160
- */ get rawBlock() {
8543
+ */ get universityBlock() {
6161
8544
  return this.ensureConfigured();
6162
8545
  }
6163
8546
  constructor(serviceTransport, legacyTransport, config){