@23blocks/angular 6.5.3 → 6.5.5

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 (38) hide show
  1. package/dist/index.esm.js +2561 -157
  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 +23 -3
  19. package/dist/src/lib/forms/forms.service.d.ts.map +1 -1
  20. package/dist/src/lib/geolocation/geolocation.service.d.ts +190 -2
  21. package/dist/src/lib/geolocation/geolocation.service.d.ts.map +1 -1
  22. package/dist/src/lib/jarvis/jarvis.service.d.ts +113 -2
  23. package/dist/src/lib/jarvis/jarvis.service.d.ts.map +1 -1
  24. package/dist/src/lib/onboarding/onboarding.service.d.ts +27 -2
  25. package/dist/src/lib/onboarding/onboarding.service.d.ts.map +1 -1
  26. package/dist/src/lib/products/products.service.d.ts +1 -1
  27. package/dist/src/lib/products/products.service.d.ts.map +1 -1
  28. package/dist/src/lib/rewards/rewards.service.d.ts +20 -20
  29. package/dist/src/lib/rewards/rewards.service.d.ts.map +1 -1
  30. package/dist/src/lib/sales/sales.service.d.ts +54 -2
  31. package/dist/src/lib/sales/sales.service.d.ts.map +1 -1
  32. package/dist/src/lib/search/search.service.d.ts +1 -1
  33. package/dist/src/lib/search/search.service.d.ts.map +1 -1
  34. package/dist/src/lib/university/university.service.d.ts +73 -29
  35. package/dist/src/lib/university/university.service.d.ts.map +1 -1
  36. package/dist/src/lib/wallet/wallet.service.d.ts +1 -1
  37. package/dist/src/lib/wallet/wallet.service.d.ts.map +1 -1
  38. 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));
@@ -3645,7 +5184,11 @@ typeof SuppressedError === "function" ? SuppressedError : function _SuppressedEr
3645
5184
  // ───────────────────────────────────────────────────────────────────────────
3646
5185
  // Application Forms Service (magic link access)
3647
5186
  // ───────────────────────────────────────────────────────────────────────────
3648
- getApplicationForm(urlId) {
5187
+ /**
5188
+ * Get public form via magic link.
5189
+ * If OTP verification is required, returns form with verificationStatus: 'pending'
5190
+ * and limited fields (no schema/uiSchema until verified).
5191
+ */ getApplicationForm(urlId) {
3649
5192
  return from(this.ensureConfigured().applicationForms.get(urlId));
3650
5193
  }
3651
5194
  submitApplicationForm(urlId, data) {
@@ -3654,6 +5197,23 @@ typeof SuppressedError === "function" ? SuppressedError : function _SuppressedEr
3654
5197
  saveApplicationFormDraft(urlId, data) {
3655
5198
  return from(this.ensureConfigured().applicationForms.draft(urlId, data));
3656
5199
  }
5200
+ /**
5201
+ * Send OTP verification code to user's email.
5202
+ * @throws Error with code RATE_LIMITED if called too frequently (60s cooldown)
5203
+ * @throws Error with code ALREADY_VERIFIED if form is already verified
5204
+ * @throws Error with code OTP_NOT_REQUIRED if form doesn't require OTP
5205
+ */ sendApplicationFormOtp(urlId) {
5206
+ return from(this.ensureConfigured().applicationForms.sendOtp(urlId));
5207
+ }
5208
+ /**
5209
+ * Verify OTP code and get full form access.
5210
+ * On success, returns full form with schema and fields.
5211
+ * @throws Error with code INVALID_CODE if code is wrong (includes attemptsRemaining)
5212
+ * @throws Error with code CODE_EXPIRED if code has expired (10 min lifetime)
5213
+ * @throws Error with code ATTEMPTS_EXCEEDED if max attempts (5) reached
5214
+ */ verifyApplicationFormOtp(urlId, data) {
5215
+ return from(this.ensureConfigured().applicationForms.verifyOtp(urlId, data));
5216
+ }
3657
5217
  // ───────────────────────────────────────────────────────────────────────────
3658
5218
  // CRM Sync Service
3659
5219
  // ───────────────────────────────────────────────────────────────────────────
@@ -3766,6 +5326,9 @@ typeof SuppressedError === "function" ? SuppressedError : function _SuppressedEr
3766
5326
  deleteAsset(uniqueId) {
3767
5327
  return from(this.ensureConfigured().assets.delete(uniqueId));
3768
5328
  }
5329
+ listAssetsTrash() {
5330
+ return from(this.ensureConfigured().assets.listTrash());
5331
+ }
3769
5332
  transferAsset(uniqueId, data) {
3770
5333
  return from(this.ensureConfigured().assets.transfer(uniqueId, data));
3771
5334
  }
@@ -3781,47 +5344,71 @@ typeof SuppressedError === "function" ? SuppressedError : function _SuppressedEr
3781
5344
  listAssetsByAssignee(assignedToUniqueId, params) {
3782
5345
  return from(this.ensureConfigured().assets.listByAssignee(assignedToUniqueId, params));
3783
5346
  }
5347
+ addAssetToCategory(uniqueId, data) {
5348
+ return from(this.ensureConfigured().assets.addToCategory(uniqueId, data));
5349
+ }
5350
+ addAssetParts(uniqueId, data) {
5351
+ return from(this.ensureConfigured().assets.addParts(uniqueId, data));
5352
+ }
5353
+ removeAssetParts(uniqueId, data) {
5354
+ return from(this.ensureConfigured().assets.removeParts(uniqueId, data));
5355
+ }
5356
+ updateAssetMaintenance(uniqueId, data) {
5357
+ return from(this.ensureConfigured().assets.updateMaintenance(uniqueId, data));
5358
+ }
5359
+ lendAsset(uniqueId, data) {
5360
+ return from(this.ensureConfigured().assets.lend(uniqueId, data));
5361
+ }
5362
+ createAssetOTP(uniqueId, data) {
5363
+ return from(this.ensureConfigured().assets.createOTP(uniqueId, data));
5364
+ }
3784
5365
  // ───────────────────────────────────────────────────────────────────────────
3785
5366
  // Asset Events Service
3786
5367
  // ───────────────────────────────────────────────────────────────────────────
3787
- listAssetEvents(params) {
3788
- return from(this.ensureConfigured().events.list(params));
5368
+ listAssetEvents(assetUniqueId, params) {
5369
+ return from(this.ensureConfigured().events.list(assetUniqueId, params));
5370
+ }
5371
+ getAssetEvent(assetUniqueId, eventUniqueId) {
5372
+ return from(this.ensureConfigured().events.get(assetUniqueId, eventUniqueId));
3789
5373
  }
3790
- getAssetEvent(uniqueId) {
3791
- return from(this.ensureConfigured().events.get(uniqueId));
5374
+ createAssetEvent(assetUniqueId, data) {
5375
+ return from(this.ensureConfigured().events.create(assetUniqueId, data));
3792
5376
  }
3793
- createAssetEvent(data) {
3794
- return from(this.ensureConfigured().events.create(data));
5377
+ updateAssetEvent(assetUniqueId, eventUniqueId, data) {
5378
+ return from(this.ensureConfigured().events.update(assetUniqueId, eventUniqueId, data));
3795
5379
  }
3796
- updateAssetEvent(uniqueId, data) {
3797
- return from(this.ensureConfigured().events.update(uniqueId, data));
5380
+ getEventReportList(params) {
5381
+ return from(this.ensureConfigured().events.reportList(params));
3798
5382
  }
3799
- deleteAssetEvent(uniqueId) {
3800
- return from(this.ensureConfigured().events.delete(uniqueId));
5383
+ getEventReportSummary(params) {
5384
+ return from(this.ensureConfigured().events.reportSummary(params));
3801
5385
  }
3802
- listAssetEventsByAsset(assetUniqueId, params) {
3803
- return from(this.ensureConfigured().events.listByAsset(assetUniqueId, params));
5386
+ presignEventImage(assetUniqueId, eventUniqueId) {
5387
+ return from(this.ensureConfigured().events.presignImage(assetUniqueId, eventUniqueId));
5388
+ }
5389
+ createEventImage(assetUniqueId, eventUniqueId, data) {
5390
+ return from(this.ensureConfigured().events.createImage(assetUniqueId, eventUniqueId, data));
5391
+ }
5392
+ deleteEventImage(assetUniqueId, eventUniqueId, imageUniqueId) {
5393
+ return from(this.ensureConfigured().events.deleteImage(assetUniqueId, eventUniqueId, imageUniqueId));
3804
5394
  }
3805
5395
  // ───────────────────────────────────────────────────────────────────────────
3806
5396
  // Asset Audits Service
3807
5397
  // ───────────────────────────────────────────────────────────────────────────
3808
- listAssetAudits(params) {
3809
- return from(this.ensureConfigured().audits.list(params));
5398
+ listAssetAudits(assetUniqueId, params) {
5399
+ return from(this.ensureConfigured().audits.list(assetUniqueId, params));
3810
5400
  }
3811
- getAssetAudit(uniqueId) {
3812
- return from(this.ensureConfigured().audits.get(uniqueId));
5401
+ getAssetAudit(assetUniqueId, auditUniqueId) {
5402
+ return from(this.ensureConfigured().audits.get(assetUniqueId, auditUniqueId));
3813
5403
  }
3814
- createAssetAudit(data) {
3815
- return from(this.ensureConfigured().audits.create(data));
5404
+ createAssetAudit(assetUniqueId, data) {
5405
+ return from(this.ensureConfigured().audits.create(assetUniqueId, data));
3816
5406
  }
3817
- updateAssetAudit(uniqueId, data) {
3818
- return from(this.ensureConfigured().audits.update(uniqueId, data));
5407
+ updateAssetAudit(assetUniqueId, auditUniqueId, data) {
5408
+ return from(this.ensureConfigured().audits.update(assetUniqueId, auditUniqueId, data));
3819
5409
  }
3820
- deleteAssetAudit(uniqueId) {
3821
- return from(this.ensureConfigured().audits.delete(uniqueId));
3822
- }
3823
- listAssetAuditsByAsset(assetUniqueId, params) {
3824
- return from(this.ensureConfigured().audits.listByAsset(assetUniqueId, params));
5410
+ deleteAssetAudit(assetUniqueId, auditUniqueId) {
5411
+ return from(this.ensureConfigured().audits.delete(assetUniqueId, auditUniqueId));
3825
5412
  }
3826
5413
  // ───────────────────────────────────────────────────────────────────────────
3827
5414
  // Categories Service
@@ -4024,7 +5611,7 @@ typeof SuppressedError === "function" ? SuppressedError : function _SuppressedEr
4024
5611
  /**
4025
5612
  * Access the underlying block for advanced operations
4026
5613
  * Use this when you need access to services not wrapped by this Angular service
4027
- */ get rawBlock() {
5614
+ */ get assetsBlock() {
4028
5615
  return this.ensureConfigured();
4029
5616
  }
4030
5617
  constructor(serviceTransport, legacyTransport, config){
@@ -4122,26 +5709,26 @@ typeof SuppressedError === "function" ? SuppressedError : function _SuppressedEr
4122
5709
  // ─────────────────────────────────────────────────────────────────────────────
4123
5710
  // Campaign Media Service
4124
5711
  // ─────────────────────────────────────────────────────────────────────────────
4125
- listMedia(params) {
4126
- return from(this.ensureConfigured().media.list(params));
5712
+ listCampaignMedia(params) {
5713
+ return from(this.ensureConfigured().campaignMedia.list(params));
4127
5714
  }
4128
- getMedia(uniqueId) {
4129
- return from(this.ensureConfigured().media.get(uniqueId));
5715
+ getCampaignMedia(uniqueId) {
5716
+ return from(this.ensureConfigured().campaignMedia.get(uniqueId));
4130
5717
  }
4131
- createMedia(data) {
4132
- return from(this.ensureConfigured().media.create(data));
5718
+ createCampaignMedia(data) {
5719
+ return from(this.ensureConfigured().campaignMedia.create(data));
4133
5720
  }
4134
- updateMedia(uniqueId, data) {
4135
- return from(this.ensureConfigured().media.update(uniqueId, data));
5721
+ updateCampaignMedia(uniqueId, data) {
5722
+ return from(this.ensureConfigured().campaignMedia.update(uniqueId, data));
4136
5723
  }
4137
- deleteMedia(uniqueId) {
4138
- return from(this.ensureConfigured().media.delete(uniqueId));
5724
+ deleteCampaignMedia(uniqueId) {
5725
+ return from(this.ensureConfigured().campaignMedia.delete(uniqueId));
4139
5726
  }
4140
- listMediaByCampaign(campaignUniqueId) {
4141
- return from(this.ensureConfigured().media.listByCampaign(campaignUniqueId));
5727
+ listCampaignMediaByCampaign(campaignUniqueId) {
5728
+ return from(this.ensureConfigured().campaignMedia.listByCampaign(campaignUniqueId));
4142
5729
  }
4143
- getMediaResults(uniqueId) {
4144
- return from(this.ensureConfigured().media.getResults(uniqueId));
5730
+ getCampaignMediaResults(uniqueId) {
5731
+ return from(this.ensureConfigured().campaignMedia.getResults(uniqueId));
4145
5732
  }
4146
5733
  // ─────────────────────────────────────────────────────────────────────────────
4147
5734
  // Landing Pages Service
@@ -4230,7 +5817,7 @@ typeof SuppressedError === "function" ? SuppressedError : function _SuppressedEr
4230
5817
  // ─────────────────────────────────────────────────────────────────────────────
4231
5818
  // Campaign Results Service
4232
5819
  // ─────────────────────────────────────────────────────────────────────────────
4233
- listCampaignResults(params) {
5820
+ listCampaignResultsData(params) {
4234
5821
  return from(this.ensureConfigured().results.list(params));
4235
5822
  }
4236
5823
  getCampaignResult(uniqueId) {
@@ -4317,28 +5904,46 @@ typeof SuppressedError === "function" ? SuppressedError : function _SuppressedEr
4317
5904
  // ─────────────────────────────────────────────────────────────────────────────
4318
5905
  // Campaign Media Results Service
4319
5906
  // ─────────────────────────────────────────────────────────────────────────────
4320
- listCampaignMediaResults(params) {
5907
+ listCampaignMediaResultsData(params) {
4321
5908
  return from(this.ensureConfigured().mediaResults.list(params));
4322
5909
  }
4323
- getCampaignMediaResult(uniqueId) {
5910
+ getCampaignMediaResultData(uniqueId) {
4324
5911
  return from(this.ensureConfigured().mediaResults.get(uniqueId));
4325
5912
  }
4326
- createCampaignMediaResult(data) {
5913
+ createCampaignMediaResultData(data) {
4327
5914
  return from(this.ensureConfigured().mediaResults.create(data));
4328
5915
  }
4329
- updateCampaignMediaResult(uniqueId, data) {
5916
+ updateCampaignMediaResultData(uniqueId, data) {
4330
5917
  return from(this.ensureConfigured().mediaResults.update(uniqueId, data));
4331
5918
  }
4332
- deleteCampaignMediaResult(uniqueId) {
5919
+ deleteCampaignMediaResultData(uniqueId) {
4333
5920
  return from(this.ensureConfigured().mediaResults.delete(uniqueId));
4334
5921
  }
4335
5922
  // ─────────────────────────────────────────────────────────────────────────────
5923
+ // Media Service (Medium entities - TV, Radio, Digital channels)
5924
+ // ─────────────────────────────────────────────────────────────────────────────
5925
+ listMedia(params) {
5926
+ return from(this.ensureConfigured().media.list(params));
5927
+ }
5928
+ getMedia(uniqueId) {
5929
+ return from(this.ensureConfigured().media.get(uniqueId));
5930
+ }
5931
+ createMedia(data) {
5932
+ return from(this.ensureConfigured().media.create(data));
5933
+ }
5934
+ updateMedia(uniqueId, data) {
5935
+ return from(this.ensureConfigured().media.update(uniqueId, data));
5936
+ }
5937
+ deleteMedia(uniqueId) {
5938
+ return from(this.ensureConfigured().media.delete(uniqueId));
5939
+ }
5940
+ // ─────────────────────────────────────────────────────────────────────────────
4336
5941
  // Direct Block Access (for advanced usage)
4337
5942
  // ─────────────────────────────────────────────────────────────────────────────
4338
5943
  /**
4339
5944
  * Access the underlying block for advanced operations
4340
5945
  * Use this when you need access to services not wrapped by this Angular service
4341
- */ get rawBlock() {
5946
+ */ get campaignsBlock() {
4342
5947
  return this.ensureConfigured();
4343
5948
  }
4344
5949
  constructor(serviceTransport, legacyTransport, config){
@@ -4506,20 +6111,91 @@ typeof SuppressedError === "function" ? SuppressedError : function _SuppressedEr
4506
6111
  return from(this.ensureConfigured().quarters.delete(uniqueId));
4507
6112
  }
4508
6113
  // ─────────────────────────────────────────────────────────────────────────────
4509
- // Direct Block Access (for advanced usage)
6114
+ // Positions Service
4510
6115
  // ─────────────────────────────────────────────────────────────────────────────
4511
6116
  /**
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();
6117
+ * List positions with optional filtering and pagination
6118
+ */ listPositions(params) {
6119
+ return from(this.ensureConfigured().positions.list(params));
4516
6120
  }
4517
- constructor(serviceTransport, legacyTransport, config){
4518
- const transport = serviceTransport != null ? serviceTransport : legacyTransport;
4519
- this.block = transport ? createCompanyBlock(transport, config) : null;
6121
+ /**
6122
+ * Get a position by unique ID
6123
+ */ getPosition(uniqueId) {
6124
+ return from(this.ensureConfigured().positions.get(uniqueId));
4520
6125
  }
4521
- }, _classThis = _class, (()=>{
4522
- const _metadata = typeof Symbol === "function" && Symbol.metadata ? Object.create(null) : void 0;
6126
+ /**
6127
+ * Create a new position
6128
+ */ createPosition(request) {
6129
+ return from(this.ensureConfigured().positions.create(request));
6130
+ }
6131
+ /**
6132
+ * Update an existing position
6133
+ */ updatePosition(uniqueId, request) {
6134
+ return from(this.ensureConfigured().positions.update(uniqueId, request));
6135
+ }
6136
+ /**
6137
+ * Delete a position
6138
+ */ deletePosition(uniqueId) {
6139
+ return from(this.ensureConfigured().positions.delete(uniqueId));
6140
+ }
6141
+ /**
6142
+ * List positions by department
6143
+ */ listPositionsByDepartment(departmentUniqueId) {
6144
+ return from(this.ensureConfigured().positions.listByDepartment(departmentUniqueId));
6145
+ }
6146
+ // ─────────────────────────────────────────────────────────────────────────────
6147
+ // Employee Assignments Service
6148
+ // ─────────────────────────────────────────────────────────────────────────────
6149
+ /**
6150
+ * List employee assignments with optional filtering and pagination
6151
+ */ listEmployeeAssignments(params) {
6152
+ return from(this.ensureConfigured().employeeAssignments.list(params));
6153
+ }
6154
+ /**
6155
+ * Get an employee assignment by unique ID
6156
+ */ getEmployeeAssignment(uniqueId) {
6157
+ return from(this.ensureConfigured().employeeAssignments.get(uniqueId));
6158
+ }
6159
+ /**
6160
+ * Create a new employee assignment
6161
+ */ createEmployeeAssignment(request) {
6162
+ return from(this.ensureConfigured().employeeAssignments.create(request));
6163
+ }
6164
+ /**
6165
+ * Update an existing employee assignment
6166
+ */ updateEmployeeAssignment(uniqueId, request) {
6167
+ return from(this.ensureConfigured().employeeAssignments.update(uniqueId, request));
6168
+ }
6169
+ /**
6170
+ * Delete an employee assignment
6171
+ */ deleteEmployeeAssignment(uniqueId) {
6172
+ return from(this.ensureConfigured().employeeAssignments.delete(uniqueId));
6173
+ }
6174
+ /**
6175
+ * List employee assignments by user
6176
+ */ listEmployeeAssignmentsByUser(userUniqueId) {
6177
+ return from(this.ensureConfigured().employeeAssignments.listByUser(userUniqueId));
6178
+ }
6179
+ /**
6180
+ * List employee assignments by position
6181
+ */ listEmployeeAssignmentsByPosition(positionUniqueId) {
6182
+ return from(this.ensureConfigured().employeeAssignments.listByPosition(positionUniqueId));
6183
+ }
6184
+ // ─────────────────────────────────────────────────────────────────────────────
6185
+ // Direct Block Access (for advanced usage)
6186
+ // ─────────────────────────────────────────────────────────────────────────────
6187
+ /**
6188
+ * Access the underlying block for advanced operations
6189
+ * Use this when you need access to services not wrapped by this Angular service
6190
+ */ get companyBlock() {
6191
+ return this.ensureConfigured();
6192
+ }
6193
+ constructor(serviceTransport, legacyTransport, config){
6194
+ const transport = serviceTransport != null ? serviceTransport : legacyTransport;
6195
+ this.block = transport ? createCompanyBlock(transport, config) : null;
6196
+ }
6197
+ }, _classThis = _class, (()=>{
6198
+ const _metadata = typeof Symbol === "function" && Symbol.metadata ? Object.create(null) : void 0;
4523
6199
  __esDecorate(null, _classDescriptor = {
4524
6200
  value: _classThis
4525
6201
  }, _classDecorators, {
@@ -4772,17 +6448,17 @@ typeof SuppressedError === "function" ? SuppressedError : function _SuppressedEr
4772
6448
  // Badge Categories Service
4773
6449
  // ─────────────────────────────────────────────────────────────────────────────
4774
6450
  /**
4775
- * List badge categories
4776
- */ listBadgeCategories() {
4777
- return from(this.ensureConfigured().badgeCategories.list());
6451
+ * List badge categories with optional pagination
6452
+ */ listBadgeCategories(page, perPage) {
6453
+ return from(this.ensureConfigured().badgeCategories.list(page, perPage));
4778
6454
  }
4779
6455
  /**
4780
- * Get a badge category
6456
+ * Get a badge category by unique ID
4781
6457
  */ getBadgeCategory(uniqueId) {
4782
6458
  return from(this.ensureConfigured().badgeCategories.get(uniqueId));
4783
6459
  }
4784
6460
  /**
4785
- * Create a badge category
6461
+ * Create a new badge category
4786
6462
  */ createBadgeCategory(data) {
4787
6463
  return from(this.ensureConfigured().badgeCategories.create(data));
4788
6464
  }
@@ -4805,24 +6481,24 @@ typeof SuppressedError === "function" ? SuppressedError : function _SuppressedEr
4805
6481
  return from(this.ensureConfigured().moneyRules.list(loyaltyUniqueId));
4806
6482
  }
4807
6483
  /**
4808
- * Get a money rule
4809
- */ getMoneyRule(uniqueId) {
4810
- return from(this.ensureConfigured().moneyRules.get(uniqueId));
6484
+ * Get a money rule by unique ID
6485
+ */ getMoneyRule(loyaltyUniqueId, ruleUniqueId) {
6486
+ return from(this.ensureConfigured().moneyRules.get(loyaltyUniqueId, ruleUniqueId));
4811
6487
  }
4812
6488
  /**
4813
- * Create a money rule
6489
+ * Create a new money rule
4814
6490
  */ createMoneyRule(loyaltyUniqueId, data) {
4815
6491
  return from(this.ensureConfigured().moneyRules.create(loyaltyUniqueId, data));
4816
6492
  }
4817
6493
  /**
4818
6494
  * Update a money rule
4819
- */ updateMoneyRule(uniqueId, data) {
4820
- return from(this.ensureConfigured().moneyRules.update(uniqueId, data));
6495
+ */ updateMoneyRule(loyaltyUniqueId, ruleUniqueId, data) {
6496
+ return from(this.ensureConfigured().moneyRules.update(loyaltyUniqueId, ruleUniqueId, data));
4821
6497
  }
4822
6498
  /**
4823
6499
  * Delete a money rule
4824
- */ deleteMoneyRule(uniqueId) {
4825
- return from(this.ensureConfigured().moneyRules.delete(uniqueId));
6500
+ */ deleteMoneyRule(loyaltyUniqueId, ruleUniqueId) {
6501
+ return from(this.ensureConfigured().moneyRules.delete(loyaltyUniqueId, ruleUniqueId));
4826
6502
  }
4827
6503
  // ─────────────────────────────────────────────────────────────────────────────
4828
6504
  // Product Rules Service
@@ -4833,24 +6509,24 @@ typeof SuppressedError === "function" ? SuppressedError : function _SuppressedEr
4833
6509
  return from(this.ensureConfigured().productRules.list(loyaltyUniqueId));
4834
6510
  }
4835
6511
  /**
4836
- * Get a product rule
4837
- */ getProductRule(uniqueId) {
4838
- return from(this.ensureConfigured().productRules.get(uniqueId));
6512
+ * Get a product rule by unique ID
6513
+ */ getProductRule(loyaltyUniqueId, ruleUniqueId) {
6514
+ return from(this.ensureConfigured().productRules.get(loyaltyUniqueId, ruleUniqueId));
4839
6515
  }
4840
6516
  /**
4841
- * Create a product rule
6517
+ * Create a new product rule
4842
6518
  */ createProductRule(loyaltyUniqueId, data) {
4843
6519
  return from(this.ensureConfigured().productRules.create(loyaltyUniqueId, data));
4844
6520
  }
4845
6521
  /**
4846
6522
  * Update a product rule
4847
- */ updateProductRule(uniqueId, data) {
4848
- return from(this.ensureConfigured().productRules.update(uniqueId, data));
6523
+ */ updateProductRule(loyaltyUniqueId, ruleUniqueId, data) {
6524
+ return from(this.ensureConfigured().productRules.update(loyaltyUniqueId, ruleUniqueId, data));
4849
6525
  }
4850
6526
  /**
4851
6527
  * Delete a product rule
4852
- */ deleteProductRule(uniqueId) {
4853
- return from(this.ensureConfigured().productRules.delete(uniqueId));
6528
+ */ deleteProductRule(loyaltyUniqueId, ruleUniqueId) {
6529
+ return from(this.ensureConfigured().productRules.delete(loyaltyUniqueId, ruleUniqueId));
4854
6530
  }
4855
6531
  // ─────────────────────────────────────────────────────────────────────────────
4856
6532
  // Event Rules Service
@@ -4861,24 +6537,24 @@ typeof SuppressedError === "function" ? SuppressedError : function _SuppressedEr
4861
6537
  return from(this.ensureConfigured().eventRules.list(loyaltyUniqueId));
4862
6538
  }
4863
6539
  /**
4864
- * Get an event rule
4865
- */ getEventRule(uniqueId) {
4866
- return from(this.ensureConfigured().eventRules.get(uniqueId));
6540
+ * Get an event rule by unique ID
6541
+ */ getEventRule(loyaltyUniqueId, ruleUniqueId) {
6542
+ return from(this.ensureConfigured().eventRules.get(loyaltyUniqueId, ruleUniqueId));
4867
6543
  }
4868
6544
  /**
4869
- * Create an event rule
6545
+ * Create a new event rule
4870
6546
  */ createEventRule(loyaltyUniqueId, data) {
4871
6547
  return from(this.ensureConfigured().eventRules.create(loyaltyUniqueId, data));
4872
6548
  }
4873
6549
  /**
4874
6550
  * Update an event rule
4875
- */ updateEventRule(uniqueId, data) {
4876
- return from(this.ensureConfigured().eventRules.update(uniqueId, data));
6551
+ */ updateEventRule(loyaltyUniqueId, ruleUniqueId, data) {
6552
+ return from(this.ensureConfigured().eventRules.update(loyaltyUniqueId, ruleUniqueId, data));
4877
6553
  }
4878
6554
  /**
4879
6555
  * Delete an event rule
4880
- */ deleteEventRule(uniqueId) {
4881
- return from(this.ensureConfigured().eventRules.delete(uniqueId));
6556
+ */ deleteEventRule(loyaltyUniqueId, ruleUniqueId) {
6557
+ return from(this.ensureConfigured().eventRules.delete(loyaltyUniqueId, ruleUniqueId));
4882
6558
  }
4883
6559
  // ─────────────────────────────────────────────────────────────────────────────
4884
6560
  // Direct Block Access (for advanced usage)
@@ -4886,7 +6562,7 @@ typeof SuppressedError === "function" ? SuppressedError : function _SuppressedEr
4886
6562
  /**
4887
6563
  * Access the underlying block for advanced operations
4888
6564
  * Use this when you need access to services not wrapped by this Angular service
4889
- */ get rawBlock() {
6565
+ */ get rewardsBlock() {
4890
6566
  return this.ensureConfigured();
4891
6567
  }
4892
6568
  constructor(serviceTransport, legacyTransport, config){
@@ -5162,12 +6838,83 @@ typeof SuppressedError === "function" ? SuppressedError : function _SuppressedEr
5162
6838
  return from(this.ensureConfigured().vendorPayments.update(uniqueId, data));
5163
6839
  }
5164
6840
  // ───────────────────────────────────────────────────────────────────────────
6841
+ // Stripe Service
6842
+ // ───────────────────────────────────────────────────────────────────────────
6843
+ /**
6844
+ * Create a Stripe customer
6845
+ */ createStripeCustomer(data) {
6846
+ return from(this.ensureConfigured().stripe.createCustomer(data));
6847
+ }
6848
+ /**
6849
+ * Create a Stripe checkout session
6850
+ */ createStripeCheckoutSession(data) {
6851
+ return from(this.ensureConfigured().stripe.createCheckoutSession(data));
6852
+ }
6853
+ /**
6854
+ * Create a Stripe payment intent
6855
+ */ createStripePaymentIntent(data) {
6856
+ return from(this.ensureConfigured().stripe.createPaymentIntent(data));
6857
+ }
6858
+ /**
6859
+ * Create a Stripe customer portal session
6860
+ */ createStripeCustomerPortal(uniqueId, data) {
6861
+ return from(this.ensureConfigured().stripe.createCustomerPortal(uniqueId, data));
6862
+ }
6863
+ /**
6864
+ * List Stripe subscriptions
6865
+ */ listStripeSubscriptions(params) {
6866
+ return from(this.ensureConfigured().stripe.listSubscriptions(params));
6867
+ }
6868
+ /**
6869
+ * Create a Stripe subscription
6870
+ */ createStripeSubscription(data) {
6871
+ return from(this.ensureConfigured().stripe.createSubscription(data));
6872
+ }
6873
+ /**
6874
+ * Update a Stripe subscription
6875
+ */ updateStripeSubscription(stripeSubscriptionId, data) {
6876
+ return from(this.ensureConfigured().stripe.updateSubscription(stripeSubscriptionId, data));
6877
+ }
6878
+ /**
6879
+ * Cancel a Stripe subscription
6880
+ */ cancelStripeSubscription(stripeSubscriptionId) {
6881
+ return from(this.ensureConfigured().stripe.cancelSubscription(stripeSubscriptionId));
6882
+ }
6883
+ /**
6884
+ * List Stripe webhooks
6885
+ */ listStripeWebhooks() {
6886
+ return from(this.ensureConfigured().stripe.listWebhooks());
6887
+ }
6888
+ /**
6889
+ * Create a Stripe webhook
6890
+ */ createStripeWebhook(data) {
6891
+ return from(this.ensureConfigured().stripe.createWebhook(data));
6892
+ }
6893
+ // ───────────────────────────────────────────────────────────────────────────
6894
+ // MercadoPago Service
6895
+ // ───────────────────────────────────────────────────────────────────────────
6896
+ /**
6897
+ * List available MercadoPago payment methods
6898
+ */ listMercadoPagoPaymentMethods() {
6899
+ return from(this.ensureConfigured().mercadopago.listPaymentMethods());
6900
+ }
6901
+ /**
6902
+ * Create a MercadoPago payment intent
6903
+ */ createMercadoPagoPaymentIntent(data) {
6904
+ return from(this.ensureConfigured().mercadopago.createPaymentIntent(data));
6905
+ }
6906
+ /**
6907
+ * Create a MercadoPago PSE payment intent (Colombia bank transfer)
6908
+ */ createMercadoPagoPSEIntent(data) {
6909
+ return from(this.ensureConfigured().mercadopago.createPSEIntent(data));
6910
+ }
6911
+ // ───────────────────────────────────────────────────────────────────────────
5165
6912
  // Direct Block Access (for advanced usage)
5166
6913
  // ───────────────────────────────────────────────────────────────────────────
5167
6914
  /**
5168
6915
  * Access the underlying block for advanced operations
5169
6916
  * Use this when you need access to services not wrapped by this Angular service
5170
- */ get rawBlock() {
6917
+ */ get salesBlock() {
5171
6918
  return this.ensureConfigured();
5172
6919
  }
5173
6920
  constructor(serviceTransport, legacyTransport, config){
@@ -5328,7 +7075,7 @@ typeof SuppressedError === "function" ? SuppressedError : function _SuppressedEr
5328
7075
  /**
5329
7076
  * Access the underlying block for advanced operations
5330
7077
  * Use this when you need access to services not wrapped by this Angular service
5331
- */ get rawBlock() {
7078
+ */ get walletBlock() {
5332
7079
  return this.ensureConfigured();
5333
7080
  }
5334
7081
  constructor(serviceTransport, legacyTransport, config){
@@ -5508,12 +7255,375 @@ typeof SuppressedError === "function" ? SuppressedError : function _SuppressedEr
5508
7255
  return from(this.ensureConfigured().conversations.clear(uniqueId));
5509
7256
  }
5510
7257
  // ─────────────────────────────────────────────────────────────────────────────
7258
+ // AI Models Service
7259
+ // ─────────────────────────────────────────────────────────────────────────────
7260
+ listAIModels(params) {
7261
+ return from(this.ensureConfigured().aiModels.list(params));
7262
+ }
7263
+ getAIModel(uniqueId) {
7264
+ return from(this.ensureConfigured().aiModels.get(uniqueId));
7265
+ }
7266
+ createAIModel(data) {
7267
+ return from(this.ensureConfigured().aiModels.create(data));
7268
+ }
7269
+ updateAIModel(uniqueId, data) {
7270
+ return from(this.ensureConfigured().aiModels.update(uniqueId, data));
7271
+ }
7272
+ deleteAIModel(uniqueId) {
7273
+ return from(this.ensureConfigured().aiModels.delete(uniqueId));
7274
+ }
7275
+ // ─────────────────────────────────────────────────────────────────────────────
7276
+ // Entities Service
7277
+ // ─────────────────────────────────────────────────────────────────────────────
7278
+ listEntities(params) {
7279
+ return from(this.ensureConfigured().entities.list(params));
7280
+ }
7281
+ getEntity(uniqueId) {
7282
+ return from(this.ensureConfigured().entities.get(uniqueId));
7283
+ }
7284
+ registerEntity(uniqueId, data) {
7285
+ return from(this.ensureConfigured().entities.register(uniqueId, data));
7286
+ }
7287
+ updateEntity(uniqueId, data) {
7288
+ return from(this.ensureConfigured().entities.update(uniqueId, data));
7289
+ }
7290
+ deleteEntity(uniqueId) {
7291
+ return from(this.ensureConfigured().entities.delete(uniqueId));
7292
+ }
7293
+ addEntityPrompt(uniqueId, promptUniqueId) {
7294
+ return from(this.ensureConfigured().entities.addPrompt(uniqueId, promptUniqueId));
7295
+ }
7296
+ getEntityContext(uniqueId, contextUniqueId) {
7297
+ return from(this.ensureConfigured().entities.getContext(uniqueId, contextUniqueId));
7298
+ }
7299
+ createEntityContext(uniqueId, data) {
7300
+ return from(this.ensureConfigured().entities.createContext(uniqueId, data));
7301
+ }
7302
+ getEntityConversation(uniqueId, contextUniqueId) {
7303
+ return from(this.ensureConfigured().entities.getConversation(uniqueId, contextUniqueId));
7304
+ }
7305
+ sendEntityMessage(uniqueId, contextUniqueId, data) {
7306
+ return from(this.ensureConfigured().entities.sendMessage(uniqueId, contextUniqueId, data));
7307
+ }
7308
+ queryEntityFile(uniqueId, fileUniqueId, data) {
7309
+ return from(this.ensureConfigured().entities.queryFile(uniqueId, fileUniqueId, data));
7310
+ }
7311
+ // ─────────────────────────────────────────────────────────────────────────────
7312
+ // Clusters Service
7313
+ // ─────────────────────────────────────────────────────────────────────────────
7314
+ listClusters(userUniqueId, params) {
7315
+ return from(this.ensureConfigured().clusters.list(userUniqueId, params));
7316
+ }
7317
+ getCluster(userUniqueId, uniqueId) {
7318
+ return from(this.ensureConfigured().clusters.get(userUniqueId, uniqueId));
7319
+ }
7320
+ createCluster(userUniqueId, data) {
7321
+ return from(this.ensureConfigured().clusters.create(userUniqueId, data));
7322
+ }
7323
+ updateCluster(userUniqueId, uniqueId, data) {
7324
+ return from(this.ensureConfigured().clusters.update(userUniqueId, uniqueId, data));
7325
+ }
7326
+ deleteCluster(userUniqueId, uniqueId) {
7327
+ return from(this.ensureConfigured().clusters.delete(userUniqueId, uniqueId));
7328
+ }
7329
+ addClusterMember(userUniqueId, uniqueId, entityUniqueId) {
7330
+ return from(this.ensureConfigured().clusters.addMember(userUniqueId, uniqueId, entityUniqueId));
7331
+ }
7332
+ removeClusterMember(userUniqueId, uniqueId, entityUniqueId) {
7333
+ return from(this.ensureConfigured().clusters.removeMember(userUniqueId, uniqueId, entityUniqueId));
7334
+ }
7335
+ addClusterPrompt(userUniqueId, uniqueId, promptUniqueId) {
7336
+ return from(this.ensureConfigured().clusters.addPrompt(userUniqueId, uniqueId, promptUniqueId));
7337
+ }
7338
+ getClusterContext(userUniqueId, uniqueId, contextUniqueId) {
7339
+ return from(this.ensureConfigured().clusters.getContext(userUniqueId, uniqueId, contextUniqueId));
7340
+ }
7341
+ createClusterContext(userUniqueId, uniqueId, data) {
7342
+ return from(this.ensureConfigured().clusters.createContext(userUniqueId, uniqueId, data));
7343
+ }
7344
+ getClusterConversation(userUniqueId, uniqueId, contextUniqueId) {
7345
+ return from(this.ensureConfigured().clusters.getConversation(userUniqueId, uniqueId, contextUniqueId));
7346
+ }
7347
+ sendClusterMessage(userUniqueId, uniqueId, contextUniqueId, data) {
7348
+ return from(this.ensureConfigured().clusters.sendMessage(userUniqueId, uniqueId, contextUniqueId, data));
7349
+ }
7350
+ // ─────────────────────────────────────────────────────────────────────────────
7351
+ // Jarvis Users Service
7352
+ // ─────────────────────────────────────────────────────────────────────────────
7353
+ listJarvisUsers(params) {
7354
+ return from(this.ensureConfigured().users.list(params));
7355
+ }
7356
+ getJarvisUser(uniqueId) {
7357
+ return from(this.ensureConfigured().users.get(uniqueId));
7358
+ }
7359
+ registerJarvisUser(uniqueId, data) {
7360
+ return from(this.ensureConfigured().users.register(uniqueId, data));
7361
+ }
7362
+ updateJarvisUser(uniqueId, data) {
7363
+ return from(this.ensureConfigured().users.update(uniqueId, data));
7364
+ }
7365
+ addJarvisUserPrompt(uniqueId, promptUniqueId) {
7366
+ return from(this.ensureConfigured().users.addPrompt(uniqueId, promptUniqueId));
7367
+ }
7368
+ getJarvisUserContext(uniqueId, contextUniqueId) {
7369
+ return from(this.ensureConfigured().users.getContext(uniqueId, contextUniqueId));
7370
+ }
7371
+ createJarvisUserContext(uniqueId, data) {
7372
+ return from(this.ensureConfigured().users.createContext(uniqueId, data));
7373
+ }
7374
+ getJarvisUserConversation(uniqueId, contextUniqueId) {
7375
+ return from(this.ensureConfigured().users.getConversation(uniqueId, contextUniqueId));
7376
+ }
7377
+ sendJarvisUserMessage(uniqueId, contextUniqueId, data) {
7378
+ return from(this.ensureConfigured().users.sendMessage(uniqueId, contextUniqueId, data));
7379
+ }
7380
+ getJarvisUserContentContext(uniqueId, contentIdentityUniqueId, contextUniqueId) {
7381
+ return from(this.ensureConfigured().users.getContentContext(uniqueId, contentIdentityUniqueId, contextUniqueId));
7382
+ }
7383
+ createJarvisUserContentContext(uniqueId, contentIdentityUniqueId, data) {
7384
+ return from(this.ensureConfigured().users.createContentContext(uniqueId, contentIdentityUniqueId, data));
7385
+ }
7386
+ getJarvisUserContentConversation(uniqueId, contentIdentityUniqueId, contextUniqueId) {
7387
+ return from(this.ensureConfigured().users.getContentConversation(uniqueId, contentIdentityUniqueId, contextUniqueId));
7388
+ }
7389
+ sendJarvisUserContentMessage(uniqueId, contentIdentityUniqueId, contextUniqueId, data) {
7390
+ return from(this.ensureConfigured().users.sendContentMessage(uniqueId, contentIdentityUniqueId, contextUniqueId, data));
7391
+ }
7392
+ // ─────────────────────────────────────────────────────────────────────────────
7393
+ // Workflow Participants Service
7394
+ // ─────────────────────────────────────────────────────────────────────────────
7395
+ listWorkflowParticipants(workflowUniqueId, params) {
7396
+ return from(this.ensureConfigured().workflowParticipants.list(workflowUniqueId, params));
7397
+ }
7398
+ getWorkflowParticipant(workflowUniqueId, uniqueId) {
7399
+ return from(this.ensureConfigured().workflowParticipants.get(workflowUniqueId, uniqueId));
7400
+ }
7401
+ addWorkflowParticipant(workflowUniqueId, data) {
7402
+ return from(this.ensureConfigured().workflowParticipants.add(workflowUniqueId, data));
7403
+ }
7404
+ updateWorkflowParticipant(workflowUniqueId, uniqueId, data) {
7405
+ return from(this.ensureConfigured().workflowParticipants.update(workflowUniqueId, uniqueId, data));
7406
+ }
7407
+ removeWorkflowParticipant(workflowUniqueId, uniqueId) {
7408
+ return from(this.ensureConfigured().workflowParticipants.remove(workflowUniqueId, uniqueId));
7409
+ }
7410
+ // ─────────────────────────────────────────────────────────────────────────────
7411
+ // Workflow Steps Service
7412
+ // ─────────────────────────────────────────────────────────────────────────────
7413
+ getWorkflowStep(workflowUniqueId, stepUniqueId) {
7414
+ return from(this.ensureConfigured().workflowSteps.get(workflowUniqueId, stepUniqueId));
7415
+ }
7416
+ addWorkflowStep(workflowUniqueId, data) {
7417
+ return from(this.ensureConfigured().workflowSteps.add(workflowUniqueId, data));
7418
+ }
7419
+ updateWorkflowStep(workflowUniqueId, stepUniqueId, data) {
7420
+ return from(this.ensureConfigured().workflowSteps.update(workflowUniqueId, stepUniqueId, data));
7421
+ }
7422
+ removeWorkflowStep(workflowUniqueId, stepUniqueId) {
7423
+ return from(this.ensureConfigured().workflowSteps.remove(workflowUniqueId, stepUniqueId));
7424
+ }
7425
+ addStepPrompt(stepUniqueId, data) {
7426
+ return from(this.ensureConfigured().workflowSteps.addPrompt(stepUniqueId, data));
7427
+ }
7428
+ addStepAgent(stepUniqueId, data) {
7429
+ return from(this.ensureConfigured().workflowSteps.addAgent(stepUniqueId, data));
7430
+ }
7431
+ // ─────────────────────────────────────────────────────────────────────────────
7432
+ // Workflow Instances Service
7433
+ // ─────────────────────────────────────────────────────────────────────────────
7434
+ startWorkflowInstance(workflowUniqueId, data) {
7435
+ return from(this.ensureConfigured().workflowInstances.start(workflowUniqueId, data));
7436
+ }
7437
+ getWorkflowInstance(workflowUniqueId, instanceUniqueId) {
7438
+ return from(this.ensureConfigured().workflowInstances.get(workflowUniqueId, instanceUniqueId));
7439
+ }
7440
+ getWorkflowInstanceDetails(workflowUniqueId, instanceUniqueId) {
7441
+ return from(this.ensureConfigured().workflowInstances.getDetails(workflowUniqueId, instanceUniqueId));
7442
+ }
7443
+ stepWorkflowInstance(workflowUniqueId, instanceUniqueId, data) {
7444
+ return from(this.ensureConfigured().workflowInstances.step(workflowUniqueId, instanceUniqueId, data));
7445
+ }
7446
+ logWorkflowStep(workflowUniqueId, instanceUniqueId, data) {
7447
+ return from(this.ensureConfigured().workflowInstances.logStep(workflowUniqueId, instanceUniqueId, data));
7448
+ }
7449
+ suspendWorkflowInstance(workflowUniqueId, instanceUniqueId) {
7450
+ return from(this.ensureConfigured().workflowInstances.suspend(workflowUniqueId, instanceUniqueId));
7451
+ }
7452
+ resumeWorkflowInstance(workflowUniqueId, instanceUniqueId) {
7453
+ return from(this.ensureConfigured().workflowInstances.resume(workflowUniqueId, instanceUniqueId));
7454
+ }
7455
+ // ─────────────────────────────────────────────────────────────────────────────
7456
+ // Agent Runtime Service
7457
+ // ─────────────────────────────────────────────────────────────────────────────
7458
+ getAgentContext(agentUniqueId, contextUniqueId) {
7459
+ return from(this.ensureConfigured().agentRuntime.getContext(agentUniqueId, contextUniqueId));
7460
+ }
7461
+ createAgentContext(agentUniqueId, data) {
7462
+ return from(this.ensureConfigured().agentRuntime.createContext(agentUniqueId, data));
7463
+ }
7464
+ getAgentConversation(agentUniqueId, contextUniqueId) {
7465
+ return from(this.ensureConfigured().agentRuntime.getConversation(agentUniqueId, contextUniqueId));
7466
+ }
7467
+ getAgentThread(agentUniqueId, threadId) {
7468
+ return from(this.ensureConfigured().agentRuntime.getThread(agentUniqueId, threadId));
7469
+ }
7470
+ createAgentThread(agentUniqueId, data) {
7471
+ return from(this.ensureConfigured().agentRuntime.createThread(agentUniqueId, data));
7472
+ }
7473
+ sendAgentThreadMessage(agentUniqueId, threadId, data) {
7474
+ return from(this.ensureConfigured().agentRuntime.sendMessage(agentUniqueId, threadId, data));
7475
+ }
7476
+ sendAgentThreadMessageStream(agentUniqueId, threadId, data) {
7477
+ return from(this.ensureConfigured().agentRuntime.sendMessageStream(agentUniqueId, threadId, data));
7478
+ }
7479
+ runAgentThread(agentUniqueId, threadId, data) {
7480
+ return from(this.ensureConfigured().agentRuntime.runThread(agentUniqueId, threadId, data));
7481
+ }
7482
+ getAgentRun(agentUniqueId, threadId, runId) {
7483
+ return from(this.ensureConfigured().agentRuntime.getRun(agentUniqueId, threadId, runId));
7484
+ }
7485
+ getAgentMessages(agentUniqueId, threadId) {
7486
+ return from(this.ensureConfigured().agentRuntime.getMessages(agentUniqueId, threadId));
7487
+ }
7488
+ listAgentExecutions(agentUniqueId, params) {
7489
+ return from(this.ensureConfigured().agentRuntime.listExecutions(agentUniqueId, params));
7490
+ }
7491
+ getAgentExecution(agentUniqueId, executionUniqueId) {
7492
+ return from(this.ensureConfigured().agentRuntime.getExecution(agentUniqueId, executionUniqueId));
7493
+ }
7494
+ // ─────────────────────────────────────────────────────────────────────────────
7495
+ // Mail Templates Service
7496
+ // ─────────────────────────────────────────────────────────────────────────────
7497
+ listMailTemplates(params) {
7498
+ return from(this.ensureConfigured().mailTemplates.list(params));
7499
+ }
7500
+ getMailTemplate(uniqueId) {
7501
+ return from(this.ensureConfigured().mailTemplates.get(uniqueId));
7502
+ }
7503
+ createMailTemplate(data) {
7504
+ return from(this.ensureConfigured().mailTemplates.create(data));
7505
+ }
7506
+ updateMailTemplate(uniqueId, data) {
7507
+ return from(this.ensureConfigured().mailTemplates.update(uniqueId, data));
7508
+ }
7509
+ createMandrillTemplate(uniqueId, data) {
7510
+ return from(this.ensureConfigured().mailTemplates.createMandrillTemplate(uniqueId, data));
7511
+ }
7512
+ updateMandrillTemplate(uniqueId, data) {
7513
+ return from(this.ensureConfigured().mailTemplates.updateMandrillTemplate(uniqueId, data));
7514
+ }
7515
+ publishMandrill(uniqueId) {
7516
+ return from(this.ensureConfigured().mailTemplates.publishMandrill(uniqueId));
7517
+ }
7518
+ getMandrillStats(uniqueId) {
7519
+ return from(this.ensureConfigured().mailTemplates.getMandrillStats(uniqueId));
7520
+ }
7521
+ // ─────────────────────────────────────────────────────────────────────────────
7522
+ // Marvin Chat Service
7523
+ // ─────────────────────────────────────────────────────────────────────────────
7524
+ marvinChat(data) {
7525
+ return from(this.ensureConfigured().marvinChat.chat(data));
7526
+ }
7527
+ marvinChatV2(data) {
7528
+ return from(this.ensureConfigured().marvinChat.chatV2(data));
7529
+ }
7530
+ marvinChatV3(data) {
7531
+ return from(this.ensureConfigured().marvinChat.chatV3(data));
7532
+ }
7533
+ getMarvinContext(uniqueId) {
7534
+ return from(this.ensureConfigured().marvinChat.getContext(uniqueId));
7535
+ }
7536
+ createMarvinContext(data) {
7537
+ return from(this.ensureConfigured().marvinChat.createContext(data));
7538
+ }
7539
+ sendMarvinMessage(contextUniqueId, data) {
7540
+ return from(this.ensureConfigured().marvinChat.sendMessage(contextUniqueId, data));
7541
+ }
7542
+ // ─────────────────────────────────────────────────────────────────────────────
7543
+ // Prompt Comments Service
7544
+ // ─────────────────────────────────────────────────────────────────────────────
7545
+ listPromptComments(promptUniqueId, params) {
7546
+ return from(this.ensureConfigured().promptComments.list(promptUniqueId, params));
7547
+ }
7548
+ getPromptComment(promptUniqueId, uniqueId) {
7549
+ return from(this.ensureConfigured().promptComments.get(promptUniqueId, uniqueId));
7550
+ }
7551
+ createPromptComment(promptUniqueId, data) {
7552
+ return from(this.ensureConfigured().promptComments.create(promptUniqueId, data));
7553
+ }
7554
+ updatePromptComment(promptUniqueId, uniqueId, data) {
7555
+ return from(this.ensureConfigured().promptComments.update(promptUniqueId, uniqueId, data));
7556
+ }
7557
+ deletePromptComment(promptUniqueId, uniqueId) {
7558
+ return from(this.ensureConfigured().promptComments.delete(promptUniqueId, uniqueId));
7559
+ }
7560
+ likePromptComment(promptUniqueId, uniqueId) {
7561
+ return from(this.ensureConfigured().promptComments.like(promptUniqueId, uniqueId));
7562
+ }
7563
+ dislikePromptComment(promptUniqueId, uniqueId) {
7564
+ return from(this.ensureConfigured().promptComments.dislike(promptUniqueId, uniqueId));
7565
+ }
7566
+ replyToPromptComment(promptUniqueId, uniqueId, data) {
7567
+ return from(this.ensureConfigured().promptComments.reply(promptUniqueId, uniqueId, data));
7568
+ }
7569
+ followPromptComment(promptUniqueId, uniqueId) {
7570
+ return from(this.ensureConfigured().promptComments.follow(promptUniqueId, uniqueId));
7571
+ }
7572
+ unfollowPromptComment(promptUniqueId, uniqueId) {
7573
+ return from(this.ensureConfigured().promptComments.unfollow(promptUniqueId, uniqueId));
7574
+ }
7575
+ savePromptComment(promptUniqueId, uniqueId) {
7576
+ return from(this.ensureConfigured().promptComments.save(promptUniqueId, uniqueId));
7577
+ }
7578
+ unsavePromptComment(promptUniqueId, uniqueId) {
7579
+ return from(this.ensureConfigured().promptComments.unsave(promptUniqueId, uniqueId));
7580
+ }
7581
+ // ─────────────────────────────────────────────────────────────────────────────
7582
+ // Execution Comments Service
7583
+ // ─────────────────────────────────────────────────────────────────────────────
7584
+ listExecutionComments(promptUniqueId, executionUniqueId, params) {
7585
+ return from(this.ensureConfigured().executionComments.list(promptUniqueId, executionUniqueId, params));
7586
+ }
7587
+ getExecutionComment(promptUniqueId, executionUniqueId, uniqueId) {
7588
+ return from(this.ensureConfigured().executionComments.get(promptUniqueId, executionUniqueId, uniqueId));
7589
+ }
7590
+ createExecutionComment(promptUniqueId, executionUniqueId, data) {
7591
+ return from(this.ensureConfigured().executionComments.create(promptUniqueId, executionUniqueId, data));
7592
+ }
7593
+ updateExecutionComment(promptUniqueId, executionUniqueId, uniqueId, data) {
7594
+ return from(this.ensureConfigured().executionComments.update(promptUniqueId, executionUniqueId, uniqueId, data));
7595
+ }
7596
+ deleteExecutionComment(promptUniqueId, executionUniqueId, uniqueId) {
7597
+ return from(this.ensureConfigured().executionComments.delete(promptUniqueId, executionUniqueId, uniqueId));
7598
+ }
7599
+ likeExecutionComment(promptUniqueId, executionUniqueId, uniqueId) {
7600
+ return from(this.ensureConfigured().executionComments.like(promptUniqueId, executionUniqueId, uniqueId));
7601
+ }
7602
+ dislikeExecutionComment(promptUniqueId, executionUniqueId, uniqueId) {
7603
+ return from(this.ensureConfigured().executionComments.dislike(promptUniqueId, executionUniqueId, uniqueId));
7604
+ }
7605
+ replyToExecutionComment(promptUniqueId, executionUniqueId, uniqueId, data) {
7606
+ return from(this.ensureConfigured().executionComments.reply(promptUniqueId, executionUniqueId, uniqueId, data));
7607
+ }
7608
+ followExecutionComment(promptUniqueId, executionUniqueId, uniqueId) {
7609
+ return from(this.ensureConfigured().executionComments.follow(promptUniqueId, executionUniqueId, uniqueId));
7610
+ }
7611
+ unfollowExecutionComment(promptUniqueId, executionUniqueId, uniqueId) {
7612
+ return from(this.ensureConfigured().executionComments.unfollow(promptUniqueId, executionUniqueId, uniqueId));
7613
+ }
7614
+ saveExecutionComment(promptUniqueId, executionUniqueId, uniqueId) {
7615
+ return from(this.ensureConfigured().executionComments.save(promptUniqueId, executionUniqueId, uniqueId));
7616
+ }
7617
+ unsaveExecutionComment(promptUniqueId, executionUniqueId, uniqueId) {
7618
+ return from(this.ensureConfigured().executionComments.unsave(promptUniqueId, executionUniqueId, uniqueId));
7619
+ }
7620
+ // ─────────────────────────────────────────────────────────────────────────────
5511
7621
  // Direct Block Access (for advanced usage)
5512
7622
  // ─────────────────────────────────────────────────────────────────────────────
5513
7623
  /**
5514
7624
  * Access the underlying block for advanced operations
5515
7625
  * Use this when you need access to services not wrapped by this Angular service
5516
- */ get rawBlock() {
7626
+ */ get jarvisBlock() {
5517
7627
  return this.ensureConfigured();
5518
7628
  }
5519
7629
  constructor(serviceTransport, legacyTransport, config){
@@ -5600,6 +7710,18 @@ typeof SuppressedError === "function" ? SuppressedError : function _SuppressedEr
5600
7710
  deleteOnboarding(uniqueId) {
5601
7711
  return from(this.ensureConfigured().onboardings.delete(uniqueId));
5602
7712
  }
7713
+ addOnboardingStep(uniqueId, data) {
7714
+ return from(this.ensureConfigured().onboardings.addStep(uniqueId, data));
7715
+ }
7716
+ updateOnboardingStep(uniqueId, stepUniqueId, data) {
7717
+ return from(this.ensureConfigured().onboardings.updateStep(uniqueId, stepUniqueId, data));
7718
+ }
7719
+ deleteOnboardingStep(uniqueId, stepUniqueId) {
7720
+ return from(this.ensureConfigured().onboardings.deleteStep(uniqueId, stepUniqueId));
7721
+ }
7722
+ stepUser(uniqueId, userUniqueId, stepData) {
7723
+ return from(this.ensureConfigured().onboardings.stepUser(uniqueId, userUniqueId, stepData));
7724
+ }
5603
7725
  // ─────────────────────────────────────────────────────────────────────────────
5604
7726
  // Flows Service
5605
7727
  // ─────────────────────────────────────────────────────────────────────────────
@@ -5621,6 +7743,12 @@ typeof SuppressedError === "function" ? SuppressedError : function _SuppressedEr
5621
7743
  listFlowsByOnboarding(onboardingUniqueId) {
5622
7744
  return from(this.ensureConfigured().flows.listByOnboarding(onboardingUniqueId));
5623
7745
  }
7746
+ getFlowBySource(uniqueId, sourceUniqueId) {
7747
+ return from(this.ensureConfigured().flows.getBySource(uniqueId, sourceUniqueId));
7748
+ }
7749
+ stepFlowBySource(uniqueId, sourceUniqueId, stepData) {
7750
+ return from(this.ensureConfigured().flows.stepBySource(uniqueId, sourceUniqueId, stepData));
7751
+ }
5624
7752
  // ─────────────────────────────────────────────────────────────────────────────
5625
7753
  // User Journeys Service
5626
7754
  // ─────────────────────────────────────────────────────────────────────────────
@@ -5645,6 +7773,15 @@ typeof SuppressedError === "function" ? SuppressedError : function _SuppressedEr
5645
7773
  getJourneyProgress(uniqueId) {
5646
7774
  return from(this.ensureConfigured().userJourneys.getProgress(uniqueId));
5647
7775
  }
7776
+ listJourneyByUserAndOnboarding(userUniqueId, onboardingUniqueId) {
7777
+ return from(this.ensureConfigured().userJourneys.listByUserAndOnboarding(userUniqueId, onboardingUniqueId));
7778
+ }
7779
+ reportJourneyList(params) {
7780
+ return from(this.ensureConfigured().userJourneys.reportList(params));
7781
+ }
7782
+ reportJourneySummary(params) {
7783
+ return from(this.ensureConfigured().userJourneys.reportSummary(params));
7784
+ }
5648
7785
  // ─────────────────────────────────────────────────────────────────────────────
5649
7786
  // User Identities Service
5650
7787
  // ─────────────────────────────────────────────────────────────────────────────
@@ -5667,12 +7804,69 @@ typeof SuppressedError === "function" ? SuppressedError : function _SuppressedEr
5667
7804
  return from(this.ensureConfigured().userIdentities.listByUser(userUniqueId));
5668
7805
  }
5669
7806
  // ─────────────────────────────────────────────────────────────────────────────
7807
+ // Onboard Service
7808
+ // ─────────────────────────────────────────────────────────────────────────────
7809
+ startOnboard(uniqueId, data) {
7810
+ return from(this.ensureConfigured().onboard.start(uniqueId, data));
7811
+ }
7812
+ getOnboard(uniqueId) {
7813
+ return from(this.ensureConfigured().onboard.get(uniqueId));
7814
+ }
7815
+ getOnboardDetails(uniqueId) {
7816
+ return from(this.ensureConfigured().onboard.getDetails(uniqueId));
7817
+ }
7818
+ stepOnboard(uniqueId, data) {
7819
+ return from(this.ensureConfigured().onboard.step(uniqueId, data));
7820
+ }
7821
+ logOnboard(uniqueId, data) {
7822
+ return from(this.ensureConfigured().onboard.log(uniqueId, data));
7823
+ }
7824
+ suspendOnboard(uniqueId) {
7825
+ return from(this.ensureConfigured().onboard.suspend(uniqueId));
7826
+ }
7827
+ resumeOnboard(uniqueId) {
7828
+ return from(this.ensureConfigured().onboard.resume(uniqueId));
7829
+ }
7830
+ // ─────────────────────────────────────────────────────────────────────────────
7831
+ // Mail Templates Service
7832
+ // ─────────────────────────────────────────────────────────────────────────────
7833
+ listMailTemplates(params) {
7834
+ return from(this.ensureConfigured().mailTemplates.list(params));
7835
+ }
7836
+ getMailTemplate(uniqueId) {
7837
+ return from(this.ensureConfigured().mailTemplates.get(uniqueId));
7838
+ }
7839
+ createMailTemplate(data) {
7840
+ return from(this.ensureConfigured().mailTemplates.create(data));
7841
+ }
7842
+ updateMailTemplate(uniqueId, data) {
7843
+ return from(this.ensureConfigured().mailTemplates.update(uniqueId, data));
7844
+ }
7845
+ getMandrillStats(uniqueId) {
7846
+ return from(this.ensureConfigured().mailTemplates.getMandrillStats(uniqueId));
7847
+ }
7848
+ createMandrillTemplate(uniqueId, data) {
7849
+ return from(this.ensureConfigured().mailTemplates.createMandrillTemplate(uniqueId, data));
7850
+ }
7851
+ updateMandrillTemplate(uniqueId, data) {
7852
+ return from(this.ensureConfigured().mailTemplates.updateMandrillTemplate(uniqueId, data));
7853
+ }
7854
+ publishMandrill(uniqueId) {
7855
+ return from(this.ensureConfigured().mailTemplates.publishMandrill(uniqueId));
7856
+ }
7857
+ // ─────────────────────────────────────────────────────────────────────────────
7858
+ // Remarketing Service
7859
+ // ─────────────────────────────────────────────────────────────────────────────
7860
+ listAbandonedJourneys(params) {
7861
+ return from(this.ensureConfigured().remarketing.listAbandonedJourneys(params));
7862
+ }
7863
+ // ─────────────────────────────────────────────────────────────────────────────
5670
7864
  // Direct Block Access (for advanced usage)
5671
7865
  // ─────────────────────────────────────────────────────────────────────────────
5672
7866
  /**
5673
7867
  * Access the underlying block for advanced operations
5674
7868
  * Use this when you need access to services not wrapped by this Angular service
5675
- */ get rawBlock() {
7869
+ */ get onboardingBlock() {
5676
7870
  return this.ensureConfigured();
5677
7871
  }
5678
7872
  constructor(serviceTransport, legacyTransport, config){
@@ -6106,58 +8300,268 @@ typeof SuppressedError === "function" ? SuppressedError : function _SuppressedEr
6106
8300
  // ─────────────────────────────────────────────────────────────────────────────
6107
8301
  // Registration Tokens Service
6108
8302
  // ─────────────────────────────────────────────────────────────────────────────
6109
- /**
6110
- * List registration tokens
6111
- */ listRegistrationTokens(params) {
8303
+ listRegistrationTokens(params) {
6112
8304
  return from(this.ensureConfigured().registrationTokens.list(params));
6113
8305
  }
6114
- /**
6115
- * Get a registration token
6116
- */ getRegistrationToken(uniqueId) {
8306
+ getRegistrationToken(uniqueId) {
6117
8307
  return from(this.ensureConfigured().registrationTokens.get(uniqueId));
6118
8308
  }
6119
- /**
6120
- * Create a registration token
6121
- */ createRegistrationToken(data) {
8309
+ createRegistrationToken(data) {
6122
8310
  return from(this.ensureConfigured().registrationTokens.create(data));
6123
8311
  }
6124
- /**
6125
- * Update a registration token
6126
- */ updateRegistrationToken(uniqueId, data) {
8312
+ updateRegistrationToken(uniqueId, data) {
6127
8313
  return from(this.ensureConfigured().registrationTokens.update(uniqueId, data));
6128
8314
  }
6129
- /**
6130
- * Delete a registration token
6131
- */ deleteRegistrationToken(uniqueId) {
8315
+ deleteRegistrationToken(uniqueId) {
6132
8316
  return from(this.ensureConfigured().registrationTokens.delete(uniqueId));
6133
8317
  }
6134
- /**
6135
- * Validate a token code
6136
- */ validateRegistrationToken(tokenCode) {
8318
+ validateRegistrationToken(tokenCode) {
6137
8319
  return from(this.ensureConfigured().registrationTokens.validate(tokenCode));
6138
8320
  }
6139
- /**
6140
- * Use a token to register a user
6141
- */ useRegistrationToken(tokenCode, userUniqueId) {
8321
+ useRegistrationToken(tokenCode, userUniqueId) {
6142
8322
  return from(this.ensureConfigured().registrationTokens.use(tokenCode, userUniqueId));
6143
8323
  }
6144
- /**
6145
- * Revoke a registration token
6146
- */ revokeRegistrationToken(uniqueId) {
8324
+ revokeRegistrationToken(uniqueId) {
6147
8325
  return from(this.ensureConfigured().registrationTokens.revoke(uniqueId));
6148
8326
  }
6149
- /**
6150
- * Generate a batch of tokens
6151
- */ generateRegistrationTokenBatch(request) {
8327
+ generateRegistrationTokenBatch(request) {
6152
8328
  return from(this.ensureConfigured().registrationTokens.generateBatch(request));
6153
8329
  }
6154
8330
  // ─────────────────────────────────────────────────────────────────────────────
8331
+ // Placements Service
8332
+ // ─────────────────────────────────────────────────────────────────────────────
8333
+ getPlacement(uniqueId) {
8334
+ return from(this.ensureConfigured().placements.get(uniqueId));
8335
+ }
8336
+ listPlacementsByCourse(courseUniqueId, params) {
8337
+ return from(this.ensureConfigured().placements.listByCourse(courseUniqueId, params));
8338
+ }
8339
+ createPlacement(courseUniqueId, data) {
8340
+ return from(this.ensureConfigured().placements.create(courseUniqueId, data));
8341
+ }
8342
+ getPlacementSection(placementUniqueId, sectionId) {
8343
+ return from(this.ensureConfigured().placements.getSection(placementUniqueId, sectionId));
8344
+ }
8345
+ createPlacementSection(placementUniqueId, data) {
8346
+ return from(this.ensureConfigured().placements.createSection(placementUniqueId, data));
8347
+ }
8348
+ getPlacementQuestion(placementUniqueId, questionId) {
8349
+ return from(this.ensureConfigured().placements.getQuestion(placementUniqueId, questionId));
8350
+ }
8351
+ createPlacementQuestion(placementUniqueId, data) {
8352
+ return from(this.ensureConfigured().placements.createQuestion(placementUniqueId, data));
8353
+ }
8354
+ addQuestionToPlacementSection(placementUniqueId, sectionId, questionId) {
8355
+ return from(this.ensureConfigured().placements.addQuestionToSection(placementUniqueId, sectionId, questionId));
8356
+ }
8357
+ listPlacementOptions() {
8358
+ return from(this.ensureConfigured().placements.listOptions());
8359
+ }
8360
+ createPlacementOption(data) {
8361
+ return from(this.ensureConfigured().placements.createOption(data));
8362
+ }
8363
+ addOptionToPlacementQuestion(placementUniqueId, questionId, optionId) {
8364
+ return from(this.ensureConfigured().placements.addOptionToQuestion(placementUniqueId, questionId, optionId));
8365
+ }
8366
+ setPlacementRightOption(placementUniqueId, questionId, optionId) {
8367
+ return from(this.ensureConfigured().placements.setRightOption(placementUniqueId, questionId, optionId));
8368
+ }
8369
+ removePlacementOption(placementUniqueId, questionId, optionId) {
8370
+ return from(this.ensureConfigured().placements.removeOption(placementUniqueId, questionId, optionId));
8371
+ }
8372
+ createPlacementRule(placementUniqueId, data) {
8373
+ return from(this.ensureConfigured().placements.createRule(placementUniqueId, data));
8374
+ }
8375
+ getUserPlacement(userUniqueId) {
8376
+ return from(this.ensureConfigured().placements.getUserPlacement(userUniqueId));
8377
+ }
8378
+ startPlacement(userUniqueId, placementUniqueId) {
8379
+ return from(this.ensureConfigured().placements.startPlacement(userUniqueId, placementUniqueId));
8380
+ }
8381
+ submitPlacementResponse(userUniqueId, instanceUniqueId, responses) {
8382
+ return from(this.ensureConfigured().placements.submitResponse(userUniqueId, instanceUniqueId, responses));
8383
+ }
8384
+ finishPlacement(userUniqueId, instanceUniqueId) {
8385
+ return from(this.ensureConfigured().placements.finishPlacement(userUniqueId, instanceUniqueId));
8386
+ }
8387
+ // ─────────────────────────────────────────────────────────────────────────────
8388
+ // Calendars Service
8389
+ // ─────────────────────────────────────────────────────────────────────────────
8390
+ getCalendarStudentAvailability(userUniqueId) {
8391
+ return from(this.ensureConfigured().calendars.getStudentAvailability(userUniqueId));
8392
+ }
8393
+ addCalendarStudentAvailability(userUniqueId, data) {
8394
+ return from(this.ensureConfigured().calendars.addStudentAvailability(userUniqueId, data));
8395
+ }
8396
+ updateCalendarStudentAvailability(userUniqueId, availabilityUniqueId, data) {
8397
+ return from(this.ensureConfigured().calendars.updateStudentAvailability(userUniqueId, availabilityUniqueId, data));
8398
+ }
8399
+ updateCalendarStudentAvailabilities(userUniqueId, data) {
8400
+ return from(this.ensureConfigured().calendars.updateStudentAvailabilities(userUniqueId, data));
8401
+ }
8402
+ deleteCalendarStudentAvailability(userUniqueId, availabilityUniqueId) {
8403
+ return from(this.ensureConfigured().calendars.deleteStudentAvailability(userUniqueId, availabilityUniqueId));
8404
+ }
8405
+ deleteAllCalendarStudentAvailability(userUniqueId) {
8406
+ return from(this.ensureConfigured().calendars.deleteAllStudentAvailability(userUniqueId));
8407
+ }
8408
+ getCalendarTeacherAvailability(teacherUniqueId) {
8409
+ return from(this.ensureConfigured().calendars.getTeacherAvailability(teacherUniqueId));
8410
+ }
8411
+ addCalendarTeacherAvailability(teacherUniqueId, data) {
8412
+ return from(this.ensureConfigured().calendars.addTeacherAvailability(teacherUniqueId, data));
8413
+ }
8414
+ updateCalendarTeacherAvailability(teacherUniqueId, availabilityUniqueId, data) {
8415
+ return from(this.ensureConfigured().calendars.updateTeacherAvailability(teacherUniqueId, availabilityUniqueId, data));
8416
+ }
8417
+ deleteCalendarTeacherAvailability(teacherUniqueId, availabilityUniqueId) {
8418
+ return from(this.ensureConfigured().calendars.deleteTeacherAvailability(teacherUniqueId, availabilityUniqueId));
8419
+ }
8420
+ deleteAllCalendarTeacherAvailability(teacherUniqueId) {
8421
+ return from(this.ensureConfigured().calendars.deleteAllTeacherAvailability(teacherUniqueId));
8422
+ }
8423
+ listCalendarEvents(params) {
8424
+ return from(this.ensureConfigured().calendars.listEvents(params));
8425
+ }
8426
+ getCalendarEvent(uniqueId) {
8427
+ return from(this.ensureConfigured().calendars.getEvent(uniqueId));
8428
+ }
8429
+ createCalendarEvent(data) {
8430
+ return from(this.ensureConfigured().calendars.createEvent(data));
8431
+ }
8432
+ updateCalendarEvent(uniqueId, data) {
8433
+ return from(this.ensureConfigured().calendars.updateEvent(uniqueId, data));
8434
+ }
8435
+ deleteCalendarEvent(uniqueId) {
8436
+ return from(this.ensureConfigured().calendars.deleteEvent(uniqueId));
8437
+ }
8438
+ // ─────────────────────────────────────────────────────────────────────────────
8439
+ // Matches Service
8440
+ // ─────────────────────────────────────────────────────────────────────────────
8441
+ createMatch(data) {
8442
+ return from(this.ensureConfigured().matches.create(data));
8443
+ }
8444
+ activateMatch(uniqueId) {
8445
+ return from(this.ensureConfigured().matches.activate(uniqueId));
8446
+ }
8447
+ deactivateMatch(uniqueId) {
8448
+ return from(this.ensureConfigured().matches.deactivate(uniqueId));
8449
+ }
8450
+ deleteMatch(uniqueId) {
8451
+ return from(this.ensureConfigured().matches.delete(uniqueId));
8452
+ }
8453
+ getActiveMatchByStudent(studentUniqueId) {
8454
+ return from(this.ensureConfigured().matches.getActiveByStudent(studentUniqueId));
8455
+ }
8456
+ getAllMatchesByStudent(studentUniqueId) {
8457
+ return from(this.ensureConfigured().matches.getAllByStudent(studentUniqueId));
8458
+ }
8459
+ getAvailableMatchesByStudent(studentUniqueId) {
8460
+ return from(this.ensureConfigured().matches.getAvailableByStudent(studentUniqueId));
8461
+ }
8462
+ getActiveMatchByTeacher(teacherUniqueId) {
8463
+ return from(this.ensureConfigured().matches.getActiveByTeacher(teacherUniqueId));
8464
+ }
8465
+ getAllMatchesByTeacher(teacherUniqueId) {
8466
+ return from(this.ensureConfigured().matches.getAllByTeacher(teacherUniqueId));
8467
+ }
8468
+ getAvailableMatchesByTeacher(teacherUniqueId) {
8469
+ return from(this.ensureConfigured().matches.getAvailableByTeacher(teacherUniqueId));
8470
+ }
8471
+ findCoaches(studentUniqueId, request) {
8472
+ return from(this.ensureConfigured().matches.findCoaches(studentUniqueId, request));
8473
+ }
8474
+ findCoachees(teacherUniqueId, request) {
8475
+ return from(this.ensureConfigured().matches.findCoachees(teacherUniqueId, request));
8476
+ }
8477
+ evaluateMatches(request) {
8478
+ return from(this.ensureConfigured().matches.evaluateMatches(request));
8479
+ }
8480
+ evaluateAvailabilities(request) {
8481
+ return from(this.ensureConfigured().matches.evaluateAvailabilities(request));
8482
+ }
8483
+ // ─────────────────────────────────────────────────────────────────────────────
8484
+ // Attendance Service
8485
+ // ─────────────────────────────────────────────────────────────────────────────
8486
+ listAttendance(params) {
8487
+ return from(this.ensureConfigured().attendance.list(params));
8488
+ }
8489
+ getAttendance(uniqueId) {
8490
+ return from(this.ensureConfigured().attendance.get(uniqueId));
8491
+ }
8492
+ createAttendance(data) {
8493
+ return from(this.ensureConfigured().attendance.create(data));
8494
+ }
8495
+ updateAttendance(uniqueId, data) {
8496
+ return from(this.ensureConfigured().attendance.update(uniqueId, data));
8497
+ }
8498
+ deleteAttendance(uniqueId) {
8499
+ return from(this.ensureConfigured().attendance.delete(uniqueId));
8500
+ }
8501
+ bulkCreateAttendance(data) {
8502
+ return from(this.ensureConfigured().attendance.bulkCreate(data));
8503
+ }
8504
+ listAttendanceByLesson(lessonUniqueId, params) {
8505
+ return from(this.ensureConfigured().attendance.listByLesson(lessonUniqueId, params));
8506
+ }
8507
+ listAttendanceByStudent(studentUniqueId, params) {
8508
+ return from(this.ensureConfigured().attendance.listByStudent(studentUniqueId, params));
8509
+ }
8510
+ listAttendanceByCourse(courseUniqueId, params) {
8511
+ return from(this.ensureConfigured().attendance.listByCourse(courseUniqueId, params));
8512
+ }
8513
+ getStudentAttendanceStats(studentUniqueId, courseUniqueId) {
8514
+ return from(this.ensureConfigured().attendance.getStudentStats(studentUniqueId, courseUniqueId));
8515
+ }
8516
+ verifyAttendance(uniqueId) {
8517
+ return from(this.ensureConfigured().attendance.verify(uniqueId));
8518
+ }
8519
+ // ─────────────────────────────────────────────────────────────────────────────
8520
+ // Notes Service
8521
+ // ─────────────────────────────────────────────────────────────────────────────
8522
+ listNotes(params) {
8523
+ return from(this.ensureConfigured().notes.list(params));
8524
+ }
8525
+ getNote(uniqueId) {
8526
+ return from(this.ensureConfigured().notes.get(uniqueId));
8527
+ }
8528
+ createNote(data) {
8529
+ return from(this.ensureConfigured().notes.create(data));
8530
+ }
8531
+ updateNote(uniqueId, data) {
8532
+ return from(this.ensureConfigured().notes.update(uniqueId, data));
8533
+ }
8534
+ deleteNote(uniqueId) {
8535
+ return from(this.ensureConfigured().notes.delete(uniqueId));
8536
+ }
8537
+ listNotesByAuthor(authorUniqueId, params) {
8538
+ return from(this.ensureConfigured().notes.listByAuthor(authorUniqueId, params));
8539
+ }
8540
+ listNotesByTarget(targetUniqueId, targetType, params) {
8541
+ return from(this.ensureConfigured().notes.listByTarget(targetUniqueId, targetType, params));
8542
+ }
8543
+ listNotesByCourse(courseUniqueId, params) {
8544
+ return from(this.ensureConfigured().notes.listByCourse(courseUniqueId, params));
8545
+ }
8546
+ listNotesByLesson(lessonUniqueId, params) {
8547
+ return from(this.ensureConfigured().notes.listByLesson(lessonUniqueId, params));
8548
+ }
8549
+ pinNote(uniqueId) {
8550
+ return from(this.ensureConfigured().notes.pin(uniqueId));
8551
+ }
8552
+ unpinNote(uniqueId) {
8553
+ return from(this.ensureConfigured().notes.unpin(uniqueId));
8554
+ }
8555
+ getNoteReplies(uniqueId) {
8556
+ return from(this.ensureConfigured().notes.getReplies(uniqueId));
8557
+ }
8558
+ // ─────────────────────────────────────────────────────────────────────────────
6155
8559
  // Direct Block Access (for advanced usage)
6156
8560
  // ─────────────────────────────────────────────────────────────────────────────
6157
8561
  /**
6158
8562
  * Access the underlying block for advanced operations
6159
8563
  * Use this when you need access to services not wrapped by this Angular service
6160
- */ get rawBlock() {
8564
+ */ get universityBlock() {
6161
8565
  return this.ensureConfigured();
6162
8566
  }
6163
8567
  constructor(serviceTransport, legacyTransport, config){