@iblai/data-layer 1.1.2 → 1.1.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (67) hide show
  1. package/dist/index.d.ts +41055 -23773
  2. package/dist/index.esm.js +5430 -2801
  3. package/dist/index.esm.js.map +1 -1
  4. package/dist/index.js +5515 -2799
  5. package/dist/index.js.map +1 -1
  6. package/dist/package.json +10 -7
  7. package/dist/src/core/index.d.ts +7 -1
  8. package/dist/src/features/analytics/constants.d.ts +6 -6
  9. package/dist/src/features/analytics/types.d.ts +9 -0
  10. package/dist/src/features/api-keys/api-slice.d.ts +72 -24
  11. package/dist/src/features/apps/api-slice.d.ts +72 -24
  12. package/dist/src/features/artifacts/api-slice.d.ts +1798 -0
  13. package/dist/src/features/artifacts/constants.d.ts +42 -0
  14. package/dist/src/features/artifacts/index.d.ts +3 -0
  15. package/dist/src/features/artifacts/types.d.ts +37 -0
  16. package/dist/src/features/auth/types.d.ts +1 -1
  17. package/dist/src/features/billing/api-slice.d.ts +15 -5
  18. package/dist/src/features/billing/constants.d.ts +16 -0
  19. package/dist/src/features/billing/custom-api-slice.d.ts +634 -0
  20. package/dist/src/features/billing/types.d.ts +35 -0
  21. package/dist/src/features/career/api-slice.d.ts +342 -114
  22. package/dist/src/features/catalog/api-slice.d.ts +1050 -317
  23. package/dist/src/features/chat/api-slice.d.ts +204 -68
  24. package/dist/src/features/chat-history/api-slice.d.ts +202 -60
  25. package/dist/src/features/core/api-slice.d.ts +1143 -134
  26. package/dist/src/features/core/custom-public-image-asset-api-slice.d.ts +60 -20
  27. package/dist/src/features/credentials/__tests__/custom-api-slice.test.d.ts +1 -0
  28. package/dist/src/features/credentials/api-slice.d.ts +3706 -146
  29. package/dist/src/features/credentials/constants.d.ts +9 -1
  30. package/dist/src/features/credentials/custom-api-slice.d.ts +535 -2
  31. package/dist/src/features/credentials/types.d.ts +14 -0
  32. package/dist/src/features/datasets/api-slice.d.ts +60 -197
  33. package/dist/src/features/index.d.ts +2 -1
  34. package/dist/src/features/llms/api-slice.d.ts +60 -20
  35. package/dist/src/features/mcp/api-slice.d.ts +2613 -0
  36. package/dist/src/features/mcp/constants.d.ts +57 -0
  37. package/dist/src/features/mcp/index.d.ts +3 -0
  38. package/dist/src/features/mcp/types.d.ts +176 -0
  39. package/dist/src/features/memory/types.d.ts +1 -0
  40. package/dist/src/features/mentor/api-slice.d.ts +1789 -473
  41. package/dist/src/features/mentor/constants.d.ts +7 -1
  42. package/dist/src/features/mentor/custom-api-slice.d.ts +162 -1
  43. package/dist/src/features/mentor/types.d.ts +7 -1
  44. package/dist/src/features/mentor-categories/api-slice.d.ts +117 -39
  45. package/dist/src/features/moderation-logs/api-slice.d.ts +705 -0
  46. package/dist/src/features/notifications/api-slice.d.ts +214 -86
  47. package/dist/src/features/per-learner/api-slice.d.ts +174 -58
  48. package/dist/src/features/platform/api-slice.d.ts +1568 -293
  49. package/dist/src/features/platform/types.d.ts +13 -0
  50. package/dist/src/features/prompts/api-slice.d.ts +249 -83
  51. package/dist/src/features/reports/api-slice.d.ts +145 -41
  52. package/dist/src/features/search/ai-search-api-slice.d.ts +399 -1
  53. package/dist/src/features/search/api-slice.d.ts +117 -39
  54. package/dist/src/features/search/constants.d.ts +10 -0
  55. package/dist/src/features/search/types.d.ts +72 -0
  56. package/dist/src/features/sessions/api-slice.d.ts +440 -46
  57. package/dist/src/features/skills/api-slice.d.ts +231 -77
  58. package/dist/src/features/tenant/api-slice.d.ts +123 -41
  59. package/dist/src/features/tools/api-slice.d.ts +60 -20
  60. package/dist/src/features/training-documents/api-slice.d.ts +141 -47
  61. package/dist/src/features/user-invitations/api-slice.d.ts +66 -22
  62. package/dist/src/index.d.ts +6 -0
  63. package/dist/tests/features/billing/constants.test.d.ts +1 -0
  64. package/dist/tests/features/billing/custom-api-slice.test.d.ts +1 -0
  65. package/dist/tests/features/billing/types.test.d.ts +1 -0
  66. package/package.json +10 -7
  67. package/dist/tsconfig.tsbuildinfo +0 -1
@@ -46,3 +46,16 @@ export interface PlatformUserPolicyUpdateRequest {
46
46
  policies_to_remove?: string[];
47
47
  policies_to_set?: string[];
48
48
  }
49
+ export interface PlatformUserGroupUser {
50
+ user_id: number;
51
+ name: string;
52
+ username: string;
53
+ email: string;
54
+ }
55
+ export interface PlatformUserGroupDetailsResponse {
56
+ id: number;
57
+ name: string;
58
+ description: string;
59
+ is_internal?: boolean;
60
+ users: PlatformUserGroupUser[];
61
+ }