@proteos/sdk 0.50.1 → 0.51.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.cjs CHANGED
@@ -1,6 +1,6 @@
1
1
  'use strict';
2
2
 
3
- var chunkOD7GPJAW_cjs = require('./chunk-OD7GPJAW.cjs');
3
+ var chunkRKFXHDVU_cjs = require('./chunk-RKFXHDVU.cjs');
4
4
  var zod = require('zod');
5
5
  var fetchEventSource = require('@microsoft/fetch-event-source');
6
6
 
@@ -12,7 +12,7 @@ var AgentServiceImpl = class {
12
12
  }
13
13
  client;
14
14
  list(options = {}) {
15
- return new chunkOD7GPJAW_cjs.PageIterator((opts) => this.listPage(opts), options);
15
+ return new chunkRKFXHDVU_cjs.PageIterator((opts) => this.listPage(opts), options);
16
16
  }
17
17
  async listPage(options = {}) {
18
18
  return this.client.requestWithQuery("GET", AGENTS_BASE_PATH, options);
@@ -39,7 +39,7 @@ var McpServerServiceImpl = class {
39
39
  }
40
40
  client;
41
41
  list(options = {}) {
42
- return new chunkOD7GPJAW_cjs.PageIterator((opts) => this.listPage(opts), options);
42
+ return new chunkRKFXHDVU_cjs.PageIterator((opts) => this.listPage(opts), options);
43
43
  }
44
44
  async listPage(options = {}) {
45
45
  return this.client.requestWithQuery(
@@ -107,7 +107,7 @@ var PromptServiceImpl = class {
107
107
  }
108
108
  client;
109
109
  list(options = {}) {
110
- return new chunkOD7GPJAW_cjs.PageIterator((opts) => this.listPage(opts), options);
110
+ return new chunkRKFXHDVU_cjs.PageIterator((opts) => this.listPage(opts), options);
111
111
  }
112
112
  async listPage(options = {}) {
113
113
  return this.client.requestWithQuery("GET", PROMPTS_BASE_PATH, options);
@@ -161,7 +161,7 @@ var SessionServiceImpl = class {
161
161
  }
162
162
  client;
163
163
  list(options = {}) {
164
- return new chunkOD7GPJAW_cjs.PageIterator((opts) => this.listPage(opts), options);
164
+ return new chunkRKFXHDVU_cjs.PageIterator((opts) => this.listPage(opts), options);
165
165
  }
166
166
  async listPage(options = {}) {
167
167
  return this.client.requestWithQuery("GET", SESSIONS_BASE_PATH, options);
@@ -251,7 +251,7 @@ var SkillServiceImpl = class {
251
251
  }
252
252
  client;
253
253
  list(options = {}) {
254
- return new chunkOD7GPJAW_cjs.PageIterator((opts) => this.listPage(opts), options);
254
+ return new chunkRKFXHDVU_cjs.PageIterator((opts) => this.listPage(opts), options);
255
255
  }
256
256
  async listPage(options = {}) {
257
257
  return this.client.requestWithQuery("GET", SKILLS_BASE_PATH, options);
@@ -308,7 +308,7 @@ var ToolServiceImpl = class {
308
308
  }
309
309
  client;
310
310
  list(options = {}) {
311
- return new chunkOD7GPJAW_cjs.PageIterator((opts) => this.listPage(opts), options);
311
+ return new chunkRKFXHDVU_cjs.PageIterator((opts) => this.listPage(opts), options);
312
312
  }
313
313
  async listPage(options = {}) {
314
314
  return this.client.requestWithQuery("GET", TOOLS_BASE_PATH, options);
@@ -349,7 +349,7 @@ var ToolsetServiceImpl = class {
349
349
  }
350
350
  client;
351
351
  list(options = {}) {
352
- return new chunkOD7GPJAW_cjs.PageIterator((opts) => this.listPage(opts), options);
352
+ return new chunkRKFXHDVU_cjs.PageIterator((opts) => this.listPage(opts), options);
353
353
  }
354
354
  async listPage(options = {}) {
355
355
  return this.client.requestWithQuery("GET", TOOLSETS_BASE_PATH, options);
@@ -430,6 +430,9 @@ var MeServiceImpl = class {
430
430
  );
431
431
  return response.data;
432
432
  }
433
+ async profile() {
434
+ return this.client.request("GET", `${ME_BASE_PATH}/profile`);
435
+ }
433
436
  };
434
437
 
435
438
  // src/auth/organizations.ts
@@ -440,7 +443,7 @@ var OrganizationServiceImpl = class {
440
443
  }
441
444
  client;
442
445
  list(options = {}) {
443
- return new chunkOD7GPJAW_cjs.PageIterator((opts) => this.listPage(opts), options);
446
+ return new chunkRKFXHDVU_cjs.PageIterator((opts) => this.listPage(opts), options);
444
447
  }
445
448
  async listPage(options = {}) {
446
449
  return this.client.requestWithQuery(
@@ -463,6 +466,39 @@ var OrganizationServiceImpl = class {
463
466
  }
464
467
  };
465
468
 
469
+ // src/auth/profiles.ts
470
+ var PROFILES_BASE_PATH = "/accounts/v1/profiles";
471
+ var ProfileServiceImpl = class {
472
+ constructor(client) {
473
+ this.client = client;
474
+ }
475
+ client;
476
+ list(options = {}) {
477
+ return new chunkRKFXHDVU_cjs.PageIterator((opts) => this.listPage(opts), options);
478
+ }
479
+ async listPage(options = {}) {
480
+ return this.client.requestWithQuery("GET", PROFILES_BASE_PATH, options);
481
+ }
482
+ async get(slug) {
483
+ return this.client.request("GET", `${PROFILES_BASE_PATH}/${slug}`);
484
+ }
485
+ async create(request) {
486
+ return this.client.request("POST", PROFILES_BASE_PATH, request);
487
+ }
488
+ async upsert(slug, request) {
489
+ return this.client.request("PUT", `${PROFILES_BASE_PATH}/${slug}`, {
490
+ ...request,
491
+ slug
492
+ });
493
+ }
494
+ async update(slug, request) {
495
+ return this.client.request("PATCH", `${PROFILES_BASE_PATH}/${slug}`, request);
496
+ }
497
+ async delete(slug) {
498
+ await this.client.request("DELETE", `${PROFILES_BASE_PATH}/${slug}`);
499
+ }
500
+ };
501
+
466
502
  // src/auth/roles.ts
467
503
  var ROLES_BASE_PATH = "/accounts/v1/roles";
468
504
  var RoleServiceImpl = class {
@@ -471,7 +507,7 @@ var RoleServiceImpl = class {
471
507
  }
472
508
  client;
473
509
  list(options = {}) {
474
- return new chunkOD7GPJAW_cjs.PageIterator((opts) => this.listPage(opts), options);
510
+ return new chunkRKFXHDVU_cjs.PageIterator((opts) => this.listPage(opts), options);
475
511
  }
476
512
  async listPage(options = {}) {
477
513
  return this.client.requestWithQuery("GET", ROLES_BASE_PATH, options);
@@ -492,7 +528,7 @@ var RoleServiceImpl = class {
492
528
  await this.client.request("DELETE", `${ROLES_BASE_PATH}/${slug}`);
493
529
  }
494
530
  getPermissions(roleSlug, options = {}) {
495
- return new chunkOD7GPJAW_cjs.PageIterator((opts) => this.fetchPermissionsPage(roleSlug, opts), options);
531
+ return new chunkRKFXHDVU_cjs.PageIterator((opts) => this.fetchPermissionsPage(roleSlug, opts), options);
496
532
  }
497
533
  async assignPermission(roleSlug, request) {
498
534
  return this.client.request(
@@ -689,7 +725,7 @@ var TeamServiceImpl = class {
689
725
  }
690
726
  client;
691
727
  list(options = {}) {
692
- return new chunkOD7GPJAW_cjs.PageIterator((opts) => this.listPage(opts), options);
728
+ return new chunkRKFXHDVU_cjs.PageIterator((opts) => this.listPage(opts), options);
693
729
  }
694
730
  async listPage(options = {}) {
695
731
  return this.client.requestWithQuery("GET", TEAMS_BASE_PATH, options);
@@ -707,7 +743,7 @@ var TeamServiceImpl = class {
707
743
  await this.client.request("DELETE", `${TEAMS_BASE_PATH}/${slug}`);
708
744
  }
709
745
  getMembers(slug, options = {}) {
710
- return new chunkOD7GPJAW_cjs.PageIterator((opts) => this.fetchMembersPage(slug, opts), options);
746
+ return new chunkRKFXHDVU_cjs.PageIterator((opts) => this.fetchMembersPage(slug, opts), options);
711
747
  }
712
748
  async addMember(slug, request) {
713
749
  return this.client.request("POST", `${TEAMS_BASE_PATH}/${slug}/members`, request);
@@ -724,6 +760,25 @@ var TeamServiceImpl = class {
724
760
  }
725
761
  };
726
762
 
763
+ // src/auth/user-profile-assignments.ts
764
+ var USER_PROFILE_ASSIGNMENTS_BASE_PATH = "/accounts/v1/user-profile-assignments";
765
+ var UserProfileAssignmentServiceImpl = class {
766
+ constructor(client) {
767
+ this.client = client;
768
+ }
769
+ client;
770
+ list(options = {}) {
771
+ return new chunkRKFXHDVU_cjs.PageIterator((opts) => this.listPage(opts), options);
772
+ }
773
+ async listPage(options = {}) {
774
+ return this.client.requestWithQuery(
775
+ "GET",
776
+ USER_PROFILE_ASSIGNMENTS_BASE_PATH,
777
+ options
778
+ );
779
+ }
780
+ };
781
+
727
782
  // src/auth/user-role-assignments.ts
728
783
  var USER_ROLE_ASSIGNMENTS_BASE_PATH = "/accounts/v1/user-role-assignments";
729
784
  var UserRoleAssignmentServiceImpl = class {
@@ -732,7 +787,7 @@ var UserRoleAssignmentServiceImpl = class {
732
787
  }
733
788
  client;
734
789
  list(options = {}) {
735
- return new chunkOD7GPJAW_cjs.PageIterator((opts) => this.listPage(opts), options);
790
+ return new chunkRKFXHDVU_cjs.PageIterator((opts) => this.listPage(opts), options);
736
791
  }
737
792
  async listPage(options = {}) {
738
793
  return this.client.requestWithQuery(
@@ -751,7 +806,7 @@ var UserServiceImpl = class {
751
806
  }
752
807
  client;
753
808
  list(options = {}) {
754
- return new chunkOD7GPJAW_cjs.PageIterator((opts) => this.listPage(opts), options);
809
+ return new chunkRKFXHDVU_cjs.PageIterator((opts) => this.listPage(opts), options);
755
810
  }
756
811
  async listPage(options = {}) {
757
812
  return this.client.requestWithQuery("GET", USERS_BASE_PATH, options);
@@ -766,7 +821,7 @@ var UserServiceImpl = class {
766
821
  return this.client.request("PATCH", `${USERS_BASE_PATH}/${id}`, request);
767
822
  }
768
823
  getRoles(userId, options = {}) {
769
- return new chunkOD7GPJAW_cjs.PageIterator((opts) => this.fetchRolesPage(userId, opts), options);
824
+ return new chunkRKFXHDVU_cjs.PageIterator((opts) => this.fetchRolesPage(userId, opts), options);
770
825
  }
771
826
  async assignRole(userId, request) {
772
827
  return this.client.request(
@@ -778,6 +833,19 @@ var UserServiceImpl = class {
778
833
  async unassignRole(userId, roleSlug) {
779
834
  await this.client.request("DELETE", `${USERS_BASE_PATH}/${userId}/roles/${roleSlug}`);
780
835
  }
836
+ async getProfile(userId) {
837
+ return this.client.request("GET", `${USERS_BASE_PATH}/${userId}/profile`);
838
+ }
839
+ async setProfile(userId, request) {
840
+ return this.client.request(
841
+ "PUT",
842
+ `${USERS_BASE_PATH}/${userId}/profile`,
843
+ request
844
+ );
845
+ }
846
+ async clearProfile(userId) {
847
+ await this.client.request("DELETE", `${USERS_BASE_PATH}/${userId}/profile`);
848
+ }
781
849
  async listApiKeys(userId) {
782
850
  const response = await this.client.request(
783
851
  "GET",
@@ -817,12 +885,18 @@ var PLATFORM_ENTITIES = [
817
885
  // who is in it are different decisions, and membership is what moves access.
818
886
  { slug: "teams", name: "Teams" },
819
887
  { slug: "team-members", name: "Team Members" },
888
+ // Profiles are the org's user-types (UI defaults; app configurations key on
889
+ // them). ONE per user per org. Managing and assigning are separate grants.
890
+ { slug: "profiles", name: "Profiles" },
891
+ { slug: "user-profile-assignments", name: "User Profile Assignments" },
820
892
  // The share audit trail — a distinct grant from the resources it references.
821
893
  // Schema / content (metadata-service)
822
894
  { slug: "entities", name: "Entities" },
823
895
  { slug: "pages", name: "Pages" },
824
896
  { slug: "menu-configurations", name: "Menu Configurations" },
825
897
  { slug: "apps", name: "Apps" },
898
+ // Typed (app × profile) binding rows: home, menu, agents, record pages.
899
+ { slug: "app-configurations", name: "App Configurations" },
826
900
  { slug: "components", name: "Components" },
827
901
  { slug: "lists", name: "Lists" },
828
902
  { slug: "list-views", name: "List Views" },
@@ -884,6 +958,11 @@ var PLATFORM_ENTITIES = [
884
958
  // The channel_action ledger: acts through a connection that are neither a
885
959
  // message nor a reaction (LinkedIn invitations, profile visits, InMail).
886
960
  { slug: "channel-actions", name: "Channel Actions" },
961
+ // The channel_event ledger: provider-observed delivery / engagement events
962
+ // about outbound messages (delivered, bounced, opened, unsubscribed).
963
+ { slug: "channel-events", name: "Channel Events" },
964
+ // Conversation briefs: guidance prepared ahead of a conversation (call, meeting) with a contact.
965
+ { slug: "conversation-briefs", name: "Conversation Briefs" },
887
966
  // Connectors (connector-service). `connections` above is shared; this is the
888
967
  // manifest catalog.
889
968
  { slug: "connectors", name: "Connectors" }
@@ -895,28 +974,28 @@ var SCOPED_PLATFORM_ENTITY_SLUGS = ["knowledge-nodes"];
895
974
  function isPlatformEntity(slug) {
896
975
  return PLATFORM_ENTITY_SLUGS.includes(slug);
897
976
  }
898
- var RoleEntityPermissionSchema = chunkOD7GPJAW_cjs.AuditFieldsSchema.extend({
977
+ var RoleEntityPermissionSchema = chunkRKFXHDVU_cjs.AuditFieldsSchema.extend({
899
978
  id: zod.z.string(),
900
979
  role_slug: zod.z.string(),
901
980
  entity_slug: zod.z.string(),
902
981
  permission: zod.z.enum(["read", "write", "delete", "read_scoped", "write_scoped", "delete_scoped"])
903
982
  });
904
- var UserRoleAssignmentSchema = chunkOD7GPJAW_cjs.AuditFieldsSchema.extend({
983
+ var UserRoleAssignmentSchema = chunkRKFXHDVU_cjs.AuditFieldsSchema.extend({
905
984
  id: zod.z.string(),
906
985
  user_id: zod.z.string(),
907
986
  role_slug: zod.z.string(),
908
987
  org_id: zod.z.string()
909
988
  });
910
- var UserSchema = chunkOD7GPJAW_cjs.AuditFieldsSchema.extend({
989
+ var UserSchema = chunkRKFXHDVU_cjs.AuditFieldsSchema.extend({
911
990
  id: zod.z.string(),
912
991
  email: zod.z.string(),
913
992
  given_name: zod.z.string(),
914
993
  family_name: zod.z.string(),
915
994
  external_id: zod.z.string(),
916
995
  default_org_id: zod.z.string(),
917
- profile_image: chunkOD7GPJAW_cjs.FileRefSchema.nullish()
996
+ profile_image: chunkRKFXHDVU_cjs.FileRefSchema.nullish()
918
997
  });
919
- chunkOD7GPJAW_cjs.AuditFieldsSchema.extend({
998
+ chunkRKFXHDVU_cjs.AuditFieldsSchema.extend({
920
999
  id: zod.z.string(),
921
1000
  user_id: zod.z.string(),
922
1001
  org_id: zod.z.string(),
@@ -926,26 +1005,41 @@ chunkOD7GPJAW_cjs.AuditFieldsSchema.extend({
926
1005
  expires_at: zod.z.string().nullable(),
927
1006
  last_used_at: zod.z.string().nullable()
928
1007
  });
929
- var RoleSchema = chunkOD7GPJAW_cjs.AuditFieldsSchema.extend({
1008
+ var ProfileSchema = chunkRKFXHDVU_cjs.AuditFieldsSchema.extend({
1009
+ slug: zod.z.string(),
1010
+ name: zod.z.string(),
1011
+ org_id: zod.z.string(),
1012
+ description: zod.z.string(),
1013
+ module_slug: zod.z.string(),
1014
+ default_app_slug: zod.z.string(),
1015
+ app_slugs: zod.z.array(zod.z.string())
1016
+ });
1017
+ var UserProfileAssignmentSchema = chunkRKFXHDVU_cjs.AuditFieldsSchema.extend({
1018
+ id: zod.z.string(),
1019
+ user_id: zod.z.string(),
1020
+ profile_slug: zod.z.string(),
1021
+ org_id: zod.z.string()
1022
+ });
1023
+ var RoleSchema = chunkRKFXHDVU_cjs.AuditFieldsSchema.extend({
930
1024
  slug: zod.z.string(),
931
1025
  name: zod.z.string(),
932
1026
  org_id: zod.z.string(),
933
1027
  description: zod.z.string()
934
1028
  });
935
- chunkOD7GPJAW_cjs.AuditFieldsSchema.extend({
1029
+ chunkRKFXHDVU_cjs.AuditFieldsSchema.extend({
936
1030
  slug: zod.z.string(),
937
1031
  name: zod.z.string(),
938
1032
  org_id: zod.z.string(),
939
1033
  description: zod.z.string(),
940
1034
  parent_team_slug: zod.z.string()
941
1035
  });
942
- chunkOD7GPJAW_cjs.AuditFieldsSchema.extend({
1036
+ chunkRKFXHDVU_cjs.AuditFieldsSchema.extend({
943
1037
  id: zod.z.string(),
944
1038
  org_id: zod.z.string(),
945
1039
  team_slug: zod.z.string(),
946
1040
  user_id: zod.z.string()
947
1041
  });
948
- var OrganizationSchema = chunkOD7GPJAW_cjs.AuditFieldsSchema.extend({
1042
+ var OrganizationSchema = chunkRKFXHDVU_cjs.AuditFieldsSchema.extend({
949
1043
  id: zod.z.string(),
950
1044
  name: zod.z.string(),
951
1045
  description: zod.z.string()
@@ -954,7 +1048,7 @@ var SharePermissionSchema = zod.z.enum(["read", "write", "delete"]);
954
1048
  zod.z.object({
955
1049
  entity_slug: zod.z.string(),
956
1050
  record_id: zod.z.string(),
957
- principal: chunkOD7GPJAW_cjs.PrincipalRefSchema,
1051
+ principal: chunkRKFXHDVU_cjs.PrincipalRefSchema,
958
1052
  permission: SharePermissionSchema
959
1053
  });
960
1054
 
@@ -977,6 +1071,14 @@ var AccountClient = class {
977
1071
  * role" in one request).
978
1072
  */
979
1073
  userRoleAssignments;
1074
+ /**
1075
+ * Service for managing profiles (the org's user-types, one per user).
1076
+ */
1077
+ profiles;
1078
+ /**
1079
+ * Service for the org-wide user-profile-assignment listing.
1080
+ */
1081
+ userProfileAssignments;
980
1082
  /**
981
1083
  * Service for managing organizations.
982
1084
  */
@@ -1004,6 +1106,8 @@ var AccountClient = class {
1004
1106
  this.users = new UserServiceImpl(client);
1005
1107
  this.roles = new RoleServiceImpl(client);
1006
1108
  this.userRoleAssignments = new UserRoleAssignmentServiceImpl(client);
1109
+ this.profiles = new ProfileServiceImpl(client);
1110
+ this.userProfileAssignments = new UserProfileAssignmentServiceImpl(client);
1007
1111
  this.organizations = new OrganizationServiceImpl(client);
1008
1112
  this.teams = new TeamServiceImpl(client);
1009
1113
  this.shares = new ShareServiceImpl(client);
@@ -1525,6 +1629,7 @@ var ConversationClient = class {
1525
1629
  * message nor a reaction — LinkedIn invitations, profile visits, InMail.
1526
1630
  */
1527
1631
  channelActions;
1632
+ channelEvents;
1528
1633
  /** Per-org glossary: custom vocabulary that boosts transcription accuracy. */
1529
1634
  glossaryTerms;
1530
1635
  /** Conversation taxonomy: the types the pre-summary classifier assigns. */
@@ -1541,6 +1646,8 @@ var ConversationClient = class {
1541
1646
  /** Realtime speech-to-text (dictation) — moved here from agent-service. */
1542
1647
  voice;
1543
1648
  calls;
1649
+ /** Conversation briefs: guidance prepared ahead of a conversation (call, meeting) with a contact. */
1650
+ conversationBriefs;
1544
1651
  constructor(client) {
1545
1652
  this.connections = new ConnectionServiceImpl(client);
1546
1653
  this.conversations = new ConversationServiceImpl(client);
@@ -1550,6 +1657,7 @@ var ConversationClient = class {
1550
1657
  this.conversationFilters = new ConversationFilterServiceImpl(client);
1551
1658
  this.sendingRules = new SendingRuleServiceImpl(client);
1552
1659
  this.channelActions = new ChannelActionServiceImpl(client);
1660
+ this.channelEvents = new ChannelEventServiceImpl(client);
1553
1661
  this.glossaryTerms = new GlossaryTermServiceImpl(client);
1554
1662
  this.conversationTypes = new ConversationTypeServiceImpl(client);
1555
1663
  this.contactGroups = new ContactGroupServiceImpl(client);
@@ -1559,6 +1667,7 @@ var ConversationClient = class {
1559
1667
  this.meetings = new MeetingServiceImpl(client);
1560
1668
  this.voice = new VoiceServiceImpl(client);
1561
1669
  this.calls = new CallServiceImpl(client);
1670
+ this.conversationBriefs = new ConversationBriefServiceImpl(client);
1562
1671
  }
1563
1672
  };
1564
1673
  var MeetingServiceImpl = class {
@@ -1641,6 +1750,67 @@ var ConnectionServiceImpl = class {
1641
1750
  query
1642
1751
  );
1643
1752
  }
1753
+ getHealth(connectionId, query = {}) {
1754
+ return this.client.requestWithQuery(
1755
+ "GET",
1756
+ `${CONVERSATION_BASE_PATH}/connections/${encodeURIComponent(connectionId)}/health`,
1757
+ query
1758
+ );
1759
+ }
1760
+ validateDomain(connectionId) {
1761
+ return this.client.request(
1762
+ "POST",
1763
+ `${CONVERSATION_BASE_PATH}/connections/${encodeURIComponent(connectionId)}/domain/validate`
1764
+ );
1765
+ }
1766
+ resendSenderVerification(connectionId) {
1767
+ return this.client.request(
1768
+ "POST",
1769
+ `${CONVERSATION_BASE_PATH}/connections/${encodeURIComponent(connectionId)}/sender/verify`
1770
+ );
1771
+ }
1772
+ async listSuppressions(connectionId, kind) {
1773
+ const response = await this.client.requestWithQuery(
1774
+ "GET",
1775
+ `${CONVERSATION_BASE_PATH}/connections/${encodeURIComponent(connectionId)}/suppressions`,
1776
+ { kind }
1777
+ );
1778
+ return response.data;
1779
+ }
1780
+ removeSuppression(connectionId, kind, email) {
1781
+ return this.client.request(
1782
+ "DELETE",
1783
+ `${CONVERSATION_BASE_PATH}/connections/${encodeURIComponent(connectionId)}/suppressions/${encodeURIComponent(kind)}/${encodeURIComponent(email)}`
1784
+ );
1785
+ }
1786
+ setIpWarmup(connectionId, ip, isEnabled) {
1787
+ return this.client.request(
1788
+ isEnabled ? "POST" : "DELETE",
1789
+ `${CONVERSATION_BASE_PATH}/connections/${encodeURIComponent(connectionId)}/ip-warmup/${encodeURIComponent(ip)}`
1790
+ );
1791
+ }
1792
+ async listConnectors() {
1793
+ const response = await this.client.request(
1794
+ "GET",
1795
+ `${CONVERSATION_BASE_PATH}/connectors`
1796
+ );
1797
+ return response.data;
1798
+ }
1799
+ async listSenders(connectionId) {
1800
+ const response = await this.client.request(
1801
+ "GET",
1802
+ `${CONVERSATION_BASE_PATH}/connections/${encodeURIComponent(connectionId)}/senders`
1803
+ );
1804
+ return response.data;
1805
+ }
1806
+ async setDefaultSender(connectionId, request) {
1807
+ const response = await this.client.request(
1808
+ "PUT",
1809
+ `${CONVERSATION_BASE_PATH}/connections/${encodeURIComponent(connectionId)}/senders/default`,
1810
+ request
1811
+ );
1812
+ return response.data;
1813
+ }
1644
1814
  };
1645
1815
  var ContactServiceImpl = class {
1646
1816
  constructor(client) {
@@ -2217,6 +2387,54 @@ var CallServiceImpl = class {
2217
2387
  );
2218
2388
  }
2219
2389
  };
2390
+ var ConversationBriefServiceImpl = class {
2391
+ constructor(client) {
2392
+ this.client = client;
2393
+ }
2394
+ client;
2395
+ list(query = {}) {
2396
+ return this.client.requestWithQuery(
2397
+ "GET",
2398
+ `${CONVERSATION_BASE_PATH}/conversation-briefs`,
2399
+ query
2400
+ );
2401
+ }
2402
+ get(id) {
2403
+ return this.client.request(
2404
+ "GET",
2405
+ `${CONVERSATION_BASE_PATH}/conversation-briefs/${encodeURIComponent(id)}`
2406
+ );
2407
+ }
2408
+ create(request) {
2409
+ return this.client.request("POST", `${CONVERSATION_BASE_PATH}/conversation-briefs`, request);
2410
+ }
2411
+ update(id, request) {
2412
+ return this.client.request(
2413
+ "PATCH",
2414
+ `${CONVERSATION_BASE_PATH}/conversation-briefs/${encodeURIComponent(id)}`,
2415
+ request
2416
+ );
2417
+ }
2418
+ discard(id) {
2419
+ return this.client.request(
2420
+ "POST",
2421
+ `${CONVERSATION_BASE_PATH}/conversation-briefs/${encodeURIComponent(id)}/discard`
2422
+ );
2423
+ }
2424
+ attach(id, request) {
2425
+ return this.client.request(
2426
+ "POST",
2427
+ `${CONVERSATION_BASE_PATH}/conversation-briefs/${encodeURIComponent(id)}/attach`,
2428
+ request
2429
+ );
2430
+ }
2431
+ async delete(id) {
2432
+ await this.client.request(
2433
+ "DELETE",
2434
+ `${CONVERSATION_BASE_PATH}/conversation-briefs/${encodeURIComponent(id)}`
2435
+ );
2436
+ }
2437
+ };
2220
2438
  var SendingRuleServiceImpl = class {
2221
2439
  constructor(client) {
2222
2440
  this.client = client;
@@ -2293,6 +2511,27 @@ var ChannelActionServiceImpl = class {
2293
2511
  );
2294
2512
  }
2295
2513
  };
2514
+ var ChannelEventServiceImpl = class {
2515
+ constructor(client) {
2516
+ this.client = client;
2517
+ }
2518
+ client;
2519
+ list(query = {}) {
2520
+ return this.client.requestWithQuery("GET", `${CONVERSATION_BASE_PATH}/channel-events`, query);
2521
+ }
2522
+ get(id) {
2523
+ return this.client.request(
2524
+ "GET",
2525
+ `${CONVERSATION_BASE_PATH}/channel-events/${encodeURIComponent(id)}`
2526
+ );
2527
+ }
2528
+ listByMessage(messageId) {
2529
+ return this.client.request(
2530
+ "GET",
2531
+ `${CONVERSATION_BASE_PATH}/messages/${encodeURIComponent(messageId)}/events`
2532
+ );
2533
+ }
2534
+ };
2296
2535
 
2297
2536
  // src/data/queries.ts
2298
2537
  var QUERY_BASE_PATH = "/data/v1/query";
@@ -2321,7 +2560,7 @@ var RecordServiceImpl = class {
2321
2560
  }
2322
2561
  client;
2323
2562
  list(entitySlug, options = {}) {
2324
- return new chunkOD7GPJAW_cjs.PageIterator((opts) => this.listPage(entitySlug, opts), options);
2563
+ return new chunkRKFXHDVU_cjs.PageIterator((opts) => this.listPage(entitySlug, opts), options);
2325
2564
  }
2326
2565
  async listPage(entitySlug, options = {}) {
2327
2566
  return this.client.requestWithQuery(
@@ -2354,7 +2593,7 @@ var RecordServiceImpl = class {
2354
2593
  );
2355
2594
  }
2356
2595
  listPublic(orgId, entitySlug, options = {}) {
2357
- return new chunkOD7GPJAW_cjs.PageIterator((opts) => this.listPublicPage(orgId, entitySlug, opts), options);
2596
+ return new chunkRKFXHDVU_cjs.PageIterator((opts) => this.listPublicPage(orgId, entitySlug, opts), options);
2358
2597
  }
2359
2598
  async listPublicPage(orgId, entitySlug, options = {}) {
2360
2599
  return this.client.requestWithQuery(
@@ -2513,7 +2752,7 @@ var ActionServiceImpl = class {
2513
2752
  }
2514
2753
  client;
2515
2754
  list(options = {}) {
2516
- return new chunkOD7GPJAW_cjs.PageIterator((opts) => this.listPage(opts), options);
2755
+ return new chunkRKFXHDVU_cjs.PageIterator((opts) => this.listPage(opts), options);
2517
2756
  }
2518
2757
  async listPage(options = {}) {
2519
2758
  return this.client.requestWithQuery("GET", ACTIONS_BASE_PATH, options);
@@ -2556,7 +2795,7 @@ var ActionServiceImpl = class {
2556
2795
  }
2557
2796
  };
2558
2797
  var ActionScopeSchema = zod.z.enum(["entity", "entity_batch", "global"]);
2559
- var ActionSchema = chunkOD7GPJAW_cjs.AuditFieldsSchema.extend({
2798
+ var ActionSchema = chunkRKFXHDVU_cjs.AuditFieldsSchema.extend({
2560
2799
  slug: zod.z.string(),
2561
2800
  org_id: zod.z.string(),
2562
2801
  module_slug: zod.z.string(),
@@ -2565,8 +2804,8 @@ var ActionSchema = chunkOD7GPJAW_cjs.AuditFieldsSchema.extend({
2565
2804
  name: zod.z.string(),
2566
2805
  is_active: zod.z.boolean(),
2567
2806
  file_id: zod.z.string(),
2568
- params: zod.z.array(chunkOD7GPJAW_cjs.AttributeSchema),
2569
- returns: zod.z.array(chunkOD7GPJAW_cjs.AttributeSchema)
2807
+ params: zod.z.array(chunkRKFXHDVU_cjs.AttributeSchema),
2808
+ returns: zod.z.array(chunkRKFXHDVU_cjs.AttributeSchema)
2570
2809
  });
2571
2810
 
2572
2811
  // src/functions/index.ts
@@ -2604,7 +2843,7 @@ var LabelServiceImpl = class {
2604
2843
  }
2605
2844
  client;
2606
2845
  list(options = {}) {
2607
- return new chunkOD7GPJAW_cjs.PageIterator((opts) => this.listPage(opts), options);
2846
+ return new chunkRKFXHDVU_cjs.PageIterator((opts) => this.listPage(opts), options);
2608
2847
  }
2609
2848
  async listPage(options = {}) {
2610
2849
  return this.client.requestWithQuery(
@@ -2635,7 +2874,7 @@ var LinkServiceImpl = class {
2635
2874
  }
2636
2875
  client;
2637
2876
  list(options = {}) {
2638
- return new chunkOD7GPJAW_cjs.PageIterator((opts) => this.listPage(opts), options);
2877
+ return new chunkRKFXHDVU_cjs.PageIterator((opts) => this.listPage(opts), options);
2639
2878
  }
2640
2879
  async listPage(options = {}) {
2641
2880
  return this.client.requestWithQuery("GET", LINKS_BASE_PATH, options);
@@ -2662,7 +2901,7 @@ var NodeServiceImpl = class {
2662
2901
  }
2663
2902
  client;
2664
2903
  list(options = {}) {
2665
- return new chunkOD7GPJAW_cjs.PageIterator((opts) => this.listPage(opts), options);
2904
+ return new chunkRKFXHDVU_cjs.PageIterator((opts) => this.listPage(opts), options);
2666
2905
  }
2667
2906
  async listPage(options = {}) {
2668
2907
  const { label_ids, space_slugs, ...rest } = options;
@@ -2759,7 +2998,7 @@ var SpaceServiceImpl = class {
2759
2998
  }
2760
2999
  client;
2761
3000
  list(options = {}) {
2762
- return new chunkOD7GPJAW_cjs.PageIterator((opts) => this.listPage(opts), options);
3001
+ return new chunkRKFXHDVU_cjs.PageIterator((opts) => this.listPage(opts), options);
2763
3002
  }
2764
3003
  async listPage(options = {}) {
2765
3004
  return this.client.requestWithQuery(
@@ -2790,7 +3029,7 @@ var RecordLinkServiceImpl = class {
2790
3029
  }
2791
3030
  client;
2792
3031
  list(options = {}) {
2793
- return new chunkOD7GPJAW_cjs.PageIterator((opts) => this.listPage(opts), options);
3032
+ return new chunkRKFXHDVU_cjs.PageIterator((opts) => this.listPage(opts), options);
2794
3033
  }
2795
3034
  async listPage(options = {}) {
2796
3035
  return this.client.requestWithQuery(
@@ -2823,7 +3062,7 @@ var KnowledgeNodeMetadataSchema = zod.z.object({
2823
3062
  summary: zod.z.string().nullish(),
2824
3063
  valid_from: zod.z.string().nullish(),
2825
3064
  valid_until: zod.z.string().nullish()
2826
- }).merge(chunkOD7GPJAW_cjs.AuditFieldsSchema);
3065
+ }).merge(chunkRKFXHDVU_cjs.AuditFieldsSchema);
2827
3066
  var KnowledgeNodeSchema = KnowledgeNodeMetadataSchema.extend({
2828
3067
  content: zod.z.string()
2829
3068
  });
@@ -2847,7 +3086,7 @@ var KnowledgeLinkSchema = zod.z.object({
2847
3086
  "superseded_by"
2848
3087
  ]),
2849
3088
  description: zod.z.string().nullish()
2850
- }).merge(chunkOD7GPJAW_cjs.AuditFieldsSchema);
3089
+ }).merge(chunkRKFXHDVU_cjs.AuditFieldsSchema);
2851
3090
  var KnowledgeRecordLinkSchema = zod.z.object({
2852
3091
  id: zod.z.string(),
2853
3092
  org_id: zod.z.string(),
@@ -2855,7 +3094,7 @@ var KnowledgeRecordLinkSchema = zod.z.object({
2855
3094
  entity_slug: zod.z.string(),
2856
3095
  record_id: zod.z.string(),
2857
3096
  created_at: zod.z.string(),
2858
- created_by: chunkOD7GPJAW_cjs.UserRefSchema
3097
+ created_by: chunkRKFXHDVU_cjs.UserRefSchema
2859
3098
  });
2860
3099
  var KnowledgeLabelSchema = zod.z.object({
2861
3100
  id: zod.z.string(),
@@ -2865,13 +3104,13 @@ var KnowledgeLabelSchema = zod.z.object({
2865
3104
  description: zod.z.string().nullish(),
2866
3105
  color: zod.z.string().nullish(),
2867
3106
  icon: zod.z.string().nullish()
2868
- }).merge(chunkOD7GPJAW_cjs.AuditFieldsSchema);
3107
+ }).merge(chunkRKFXHDVU_cjs.AuditFieldsSchema);
2869
3108
  var KnowledgeNodeLabelSchema = zod.z.object({
2870
3109
  org_id: zod.z.string(),
2871
3110
  node_id: zod.z.string(),
2872
3111
  label_id: zod.z.string(),
2873
3112
  created_at: zod.z.string(),
2874
- created_by: chunkOD7GPJAW_cjs.UserRefSchema
3113
+ created_by: chunkRKFXHDVU_cjs.UserRefSchema
2875
3114
  });
2876
3115
  var NodeNeighborhoodSchema = zod.z.object({
2877
3116
  nodes: zod.z.array(
@@ -3058,7 +3297,7 @@ var ExecutionServiceImpl = class {
3058
3297
  }
3059
3298
  client;
3060
3299
  list(options = {}) {
3061
- return new chunkOD7GPJAW_cjs.PageIterator((opts) => this.listPage(opts), options);
3300
+ return new chunkRKFXHDVU_cjs.PageIterator((opts) => this.listPage(opts), options);
3062
3301
  }
3063
3302
  async listPage(options = {}) {
3064
3303
  return this.client.requestWithQuery(
@@ -3117,7 +3356,7 @@ var WorkflowServiceImpl = class {
3117
3356
  }
3118
3357
  client;
3119
3358
  list(options = {}) {
3120
- return new chunkOD7GPJAW_cjs.PageIterator((opts) => this.listPage(opts), options);
3359
+ return new chunkRKFXHDVU_cjs.PageIterator((opts) => this.listPage(opts), options);
3121
3360
  }
3122
3361
  async listPage(options = {}) {
3123
3362
  return this.client.requestWithQuery("GET", WORKFLOWS_BASE_PATH2, options);
@@ -3155,7 +3394,7 @@ var WorkflowServiceImpl = class {
3155
3394
  return this.client.request("POST", `${WORKFLOWS_BASE_PATH2}/${key}/unpause`, {});
3156
3395
  }
3157
3396
  listVersions(key, options = {}) {
3158
- return new chunkOD7GPJAW_cjs.PageIterator((opts) => this.listVersionsPage(key, opts), options);
3397
+ return new chunkRKFXHDVU_cjs.PageIterator((opts) => this.listVersionsPage(key, opts), options);
3159
3398
  }
3160
3399
  async listVersionsPage(key, options = {}) {
3161
3400
  return this.client.requestWithQuery(
@@ -3198,209 +3437,217 @@ var WorkflowClient = class {
3198
3437
  }
3199
3438
  };
3200
3439
 
3440
+ Object.defineProperty(exports, "AppConfigurationSchema", {
3441
+ enumerable: true,
3442
+ get: function () { return chunkRKFXHDVU_cjs.AppConfigurationSchema; }
3443
+ });
3444
+ Object.defineProperty(exports, "AppHomeSchema", {
3445
+ enumerable: true,
3446
+ get: function () { return chunkRKFXHDVU_cjs.AppHomeSchema; }
3447
+ });
3201
3448
  Object.defineProperty(exports, "AppSchema", {
3202
3449
  enumerable: true,
3203
- get: function () { return chunkOD7GPJAW_cjs.AppSchema; }
3450
+ get: function () { return chunkRKFXHDVU_cjs.AppSchema; }
3204
3451
  });
3205
3452
  Object.defineProperty(exports, "AttributeSchema", {
3206
3453
  enumerable: true,
3207
- get: function () { return chunkOD7GPJAW_cjs.AttributeSchema; }
3454
+ get: function () { return chunkRKFXHDVU_cjs.AttributeSchema; }
3208
3455
  });
3209
3456
  Object.defineProperty(exports, "AuditFieldsSchema", {
3210
3457
  enumerable: true,
3211
- get: function () { return chunkOD7GPJAW_cjs.AuditFieldsSchema; }
3458
+ get: function () { return chunkRKFXHDVU_cjs.AuditFieldsSchema; }
3212
3459
  });
3213
3460
  Object.defineProperty(exports, "CURRENT_USER_DEFAULT", {
3214
3461
  enumerable: true,
3215
- get: function () { return chunkOD7GPJAW_cjs.CURRENT_USER_DEFAULT; }
3462
+ get: function () { return chunkRKFXHDVU_cjs.CURRENT_USER_DEFAULT; }
3216
3463
  });
3217
3464
  Object.defineProperty(exports, "ColumnSchema", {
3218
3465
  enumerable: true,
3219
- get: function () { return chunkOD7GPJAW_cjs.ColumnSchema; }
3466
+ get: function () { return chunkRKFXHDVU_cjs.ColumnSchema; }
3220
3467
  });
3221
3468
  Object.defineProperty(exports, "ComponentSchema", {
3222
3469
  enumerable: true,
3223
- get: function () { return chunkOD7GPJAW_cjs.ComponentSchema; }
3470
+ get: function () { return chunkRKFXHDVU_cjs.ComponentSchema; }
3224
3471
  });
3225
3472
  Object.defineProperty(exports, "CurrencyAttributeMetaSchema", {
3226
3473
  enumerable: true,
3227
- get: function () { return chunkOD7GPJAW_cjs.CurrencyAttributeMetaSchema; }
3474
+ get: function () { return chunkRKFXHDVU_cjs.CurrencyAttributeMetaSchema; }
3228
3475
  });
3229
3476
  Object.defineProperty(exports, "DEFAULT_PAGE_SIZE", {
3230
3477
  enumerable: true,
3231
- get: function () { return chunkOD7GPJAW_cjs.DEFAULT_PAGE_SIZE; }
3478
+ get: function () { return chunkRKFXHDVU_cjs.DEFAULT_PAGE_SIZE; }
3232
3479
  });
3233
3480
  Object.defineProperty(exports, "DONE", {
3234
3481
  enumerable: true,
3235
- get: function () { return chunkOD7GPJAW_cjs.DONE; }
3482
+ get: function () { return chunkRKFXHDVU_cjs.DONE; }
3236
3483
  });
3237
3484
  Object.defineProperty(exports, "DesignReferenceSchema", {
3238
3485
  enumerable: true,
3239
- get: function () { return chunkOD7GPJAW_cjs.DesignReferenceSchema; }
3486
+ get: function () { return chunkRKFXHDVU_cjs.DesignReferenceSchema; }
3240
3487
  });
3241
3488
  Object.defineProperty(exports, "EntitySchema", {
3242
3489
  enumerable: true,
3243
- get: function () { return chunkOD7GPJAW_cjs.EntitySchema; }
3490
+ get: function () { return chunkRKFXHDVU_cjs.EntitySchema; }
3244
3491
  });
3245
3492
  Object.defineProperty(exports, "EntityWithSchemaSchema", {
3246
3493
  enumerable: true,
3247
- get: function () { return chunkOD7GPJAW_cjs.EntityWithSchemaSchema; }
3494
+ get: function () { return chunkRKFXHDVU_cjs.EntityWithSchemaSchema; }
3248
3495
  });
3249
3496
  Object.defineProperty(exports, "FileRefSchema", {
3250
3497
  enumerable: true,
3251
- get: function () { return chunkOD7GPJAW_cjs.FileRefSchema; }
3498
+ get: function () { return chunkRKFXHDVU_cjs.FileRefSchema; }
3252
3499
  });
3253
3500
  Object.defineProperty(exports, "FilterElementSchema", {
3254
3501
  enumerable: true,
3255
- get: function () { return chunkOD7GPJAW_cjs.FilterElementSchema; }
3502
+ get: function () { return chunkRKFXHDVU_cjs.FilterElementSchema; }
3256
3503
  });
3257
3504
  Object.defineProperty(exports, "FilterGroupSchema", {
3258
3505
  enumerable: true,
3259
- get: function () { return chunkOD7GPJAW_cjs.FilterGroupSchema; }
3506
+ get: function () { return chunkRKFXHDVU_cjs.FilterGroupSchema; }
3260
3507
  });
3261
3508
  Object.defineProperty(exports, "ListSchema", {
3262
3509
  enumerable: true,
3263
- get: function () { return chunkOD7GPJAW_cjs.ListSchema; }
3510
+ get: function () { return chunkRKFXHDVU_cjs.ListSchema; }
3264
3511
  });
3265
3512
  Object.defineProperty(exports, "ListViewSchema", {
3266
3513
  enumerable: true,
3267
- get: function () { return chunkOD7GPJAW_cjs.ListViewSchema; }
3514
+ get: function () { return chunkRKFXHDVU_cjs.ListViewSchema; }
3268
3515
  });
3269
3516
  Object.defineProperty(exports, "MenuConfigurationSchema", {
3270
3517
  enumerable: true,
3271
- get: function () { return chunkOD7GPJAW_cjs.MenuConfigurationSchema; }
3518
+ get: function () { return chunkRKFXHDVU_cjs.MenuConfigurationSchema; }
3272
3519
  });
3273
3520
  Object.defineProperty(exports, "MenuItemSchema", {
3274
3521
  enumerable: true,
3275
- get: function () { return chunkOD7GPJAW_cjs.MenuItemSchema; }
3522
+ get: function () { return chunkRKFXHDVU_cjs.MenuItemSchema; }
3276
3523
  });
3277
3524
  Object.defineProperty(exports, "MenuItemType", {
3278
3525
  enumerable: true,
3279
- get: function () { return chunkOD7GPJAW_cjs.MenuItemType; }
3526
+ get: function () { return chunkRKFXHDVU_cjs.MenuItemType; }
3280
3527
  });
3281
3528
  Object.defineProperty(exports, "MetaClient", {
3282
3529
  enumerable: true,
3283
- get: function () { return chunkOD7GPJAW_cjs.MetaClient; }
3530
+ get: function () { return chunkRKFXHDVU_cjs.MetaClient; }
3284
3531
  });
3285
3532
  Object.defineProperty(exports, "ModuleSchema", {
3286
3533
  enumerable: true,
3287
- get: function () { return chunkOD7GPJAW_cjs.ModuleSchema; }
3534
+ get: function () { return chunkRKFXHDVU_cjs.ModuleSchema; }
3288
3535
  });
3289
3536
  Object.defineProperty(exports, "OnDeleteActionSchema", {
3290
3537
  enumerable: true,
3291
- get: function () { return chunkOD7GPJAW_cjs.OnDeleteActionSchema; }
3538
+ get: function () { return chunkRKFXHDVU_cjs.OnDeleteActionSchema; }
3292
3539
  });
3293
3540
  Object.defineProperty(exports, "PLATFORM_ATTRIBUTE_NAMES", {
3294
3541
  enumerable: true,
3295
- get: function () { return chunkOD7GPJAW_cjs.PLATFORM_ATTRIBUTE_NAMES; }
3542
+ get: function () { return chunkRKFXHDVU_cjs.PLATFORM_ATTRIBUTE_NAMES; }
3296
3543
  });
3297
3544
  Object.defineProperty(exports, "PLATFORM_USER_ID", {
3298
3545
  enumerable: true,
3299
- get: function () { return chunkOD7GPJAW_cjs.PLATFORM_USER_ID; }
3546
+ get: function () { return chunkRKFXHDVU_cjs.PLATFORM_USER_ID; }
3300
3547
  });
3301
3548
  Object.defineProperty(exports, "PageActionSchema", {
3302
3549
  enumerable: true,
3303
- get: function () { return chunkOD7GPJAW_cjs.PageActionSchema; }
3550
+ get: function () { return chunkRKFXHDVU_cjs.PageActionSchema; }
3304
3551
  });
3305
3552
  Object.defineProperty(exports, "PageIterator", {
3306
3553
  enumerable: true,
3307
- get: function () { return chunkOD7GPJAW_cjs.PageIterator; }
3554
+ get: function () { return chunkRKFXHDVU_cjs.PageIterator; }
3308
3555
  });
3309
3556
  Object.defineProperty(exports, "PageLayoutSchema", {
3310
3557
  enumerable: true,
3311
- get: function () { return chunkOD7GPJAW_cjs.PageLayoutSchema; }
3558
+ get: function () { return chunkRKFXHDVU_cjs.PageLayoutSchema; }
3312
3559
  });
3313
3560
  Object.defineProperty(exports, "PageSchema", {
3314
3561
  enumerable: true,
3315
- get: function () { return chunkOD7GPJAW_cjs.PageSchema; }
3562
+ get: function () { return chunkRKFXHDVU_cjs.PageSchema; }
3316
3563
  });
3317
3564
  Object.defineProperty(exports, "RelationAttributeMetaSchema", {
3318
3565
  enumerable: true,
3319
- get: function () { return chunkOD7GPJAW_cjs.RelationAttributeMetaSchema; }
3566
+ get: function () { return chunkRKFXHDVU_cjs.RelationAttributeMetaSchema; }
3320
3567
  });
3321
3568
  Object.defineProperty(exports, "ResponseMetaSchema", {
3322
3569
  enumerable: true,
3323
- get: function () { return chunkOD7GPJAW_cjs.ResponseMetaSchema; }
3570
+ get: function () { return chunkRKFXHDVU_cjs.ResponseMetaSchema; }
3324
3571
  });
3325
3572
  Object.defineProperty(exports, "SortConfigSchema", {
3326
3573
  enumerable: true,
3327
- get: function () { return chunkOD7GPJAW_cjs.SortConfigSchema; }
3574
+ get: function () { return chunkRKFXHDVU_cjs.SortConfigSchema; }
3328
3575
  });
3329
3576
  Object.defineProperty(exports, "UserRefSchema", {
3330
3577
  enumerable: true,
3331
- get: function () { return chunkOD7GPJAW_cjs.UserRefSchema; }
3578
+ get: function () { return chunkRKFXHDVU_cjs.UserRefSchema; }
3332
3579
  });
3333
3580
  Object.defineProperty(exports, "VariableSchema", {
3334
3581
  enumerable: true,
3335
- get: function () { return chunkOD7GPJAW_cjs.VariableSchema; }
3582
+ get: function () { return chunkRKFXHDVU_cjs.VariableSchema; }
3336
3583
  });
3337
3584
  Object.defineProperty(exports, "acceptsCurrentUserDefault", {
3338
3585
  enumerable: true,
3339
- get: function () { return chunkOD7GPJAW_cjs.acceptsCurrentUserDefault; }
3586
+ get: function () { return chunkRKFXHDVU_cjs.acceptsCurrentUserDefault; }
3340
3587
  });
3341
3588
  Object.defineProperty(exports, "allCurrencyCodes", {
3342
3589
  enumerable: true,
3343
- get: function () { return chunkOD7GPJAW_cjs.allCurrencyCodes; }
3590
+ get: function () { return chunkRKFXHDVU_cjs.allCurrencyCodes; }
3344
3591
  });
3345
3592
  Object.defineProperty(exports, "createIterator", {
3346
3593
  enumerable: true,
3347
- get: function () { return chunkOD7GPJAW_cjs.createIterator; }
3594
+ get: function () { return chunkRKFXHDVU_cjs.createIterator; }
3348
3595
  });
3349
3596
  Object.defineProperty(exports, "createListResultSchema", {
3350
3597
  enumerable: true,
3351
- get: function () { return chunkOD7GPJAW_cjs.createListResultSchema; }
3598
+ get: function () { return chunkRKFXHDVU_cjs.createListResultSchema; }
3352
3599
  });
3353
3600
  Object.defineProperty(exports, "currencyLabel", {
3354
3601
  enumerable: true,
3355
- get: function () { return chunkOD7GPJAW_cjs.currencyLabel; }
3602
+ get: function () { return chunkRKFXHDVU_cjs.currencyLabel; }
3356
3603
  });
3357
3604
  Object.defineProperty(exports, "currencySymbol", {
3358
3605
  enumerable: true,
3359
- get: function () { return chunkOD7GPJAW_cjs.currencySymbol; }
3606
+ get: function () { return chunkRKFXHDVU_cjs.currencySymbol; }
3360
3607
  });
3361
3608
  Object.defineProperty(exports, "currencySymbolSide", {
3362
3609
  enumerable: true,
3363
- get: function () { return chunkOD7GPJAW_cjs.currencySymbolSide; }
3610
+ get: function () { return chunkRKFXHDVU_cjs.currencySymbolSide; }
3364
3611
  });
3365
3612
  Object.defineProperty(exports, "formatAmount", {
3366
3613
  enumerable: true,
3367
- get: function () { return chunkOD7GPJAW_cjs.formatAmount; }
3614
+ get: function () { return chunkRKFXHDVU_cjs.formatAmount; }
3368
3615
  });
3369
3616
  Object.defineProperty(exports, "formatMoney", {
3370
3617
  enumerable: true,
3371
- get: function () { return chunkOD7GPJAW_cjs.formatMoney; }
3618
+ get: function () { return chunkRKFXHDVU_cjs.formatMoney; }
3372
3619
  });
3373
3620
  Object.defineProperty(exports, "isCurrentUserDefault", {
3374
3621
  enumerable: true,
3375
- get: function () { return chunkOD7GPJAW_cjs.isCurrentUserDefault; }
3622
+ get: function () { return chunkRKFXHDVU_cjs.isCurrentUserDefault; }
3376
3623
  });
3377
3624
  Object.defineProperty(exports, "isPlatformAttributeName", {
3378
3625
  enumerable: true,
3379
- get: function () { return chunkOD7GPJAW_cjs.isPlatformAttributeName; }
3626
+ get: function () { return chunkRKFXHDVU_cjs.isPlatformAttributeName; }
3380
3627
  });
3381
3628
  Object.defineProperty(exports, "localeNumberSeparators", {
3382
3629
  enumerable: true,
3383
- get: function () { return chunkOD7GPJAW_cjs.localeNumberSeparators; }
3630
+ get: function () { return chunkRKFXHDVU_cjs.localeNumberSeparators; }
3384
3631
  });
3385
3632
  Object.defineProperty(exports, "parseAmount", {
3386
3633
  enumerable: true,
3387
- get: function () { return chunkOD7GPJAW_cjs.parseAmount; }
3634
+ get: function () { return chunkRKFXHDVU_cjs.parseAmount; }
3388
3635
  });
3389
3636
  Object.defineProperty(exports, "parseCurrencyMeta", {
3390
3637
  enumerable: true,
3391
- get: function () { return chunkOD7GPJAW_cjs.parseCurrencyMeta; }
3638
+ get: function () { return chunkRKFXHDVU_cjs.parseCurrencyMeta; }
3392
3639
  });
3393
3640
  Object.defineProperty(exports, "parseFileMeta", {
3394
3641
  enumerable: true,
3395
- get: function () { return chunkOD7GPJAW_cjs.parseFileMeta; }
3642
+ get: function () { return chunkRKFXHDVU_cjs.parseFileMeta; }
3396
3643
  });
3397
3644
  Object.defineProperty(exports, "parseRelationMeta", {
3398
3645
  enumerable: true,
3399
- get: function () { return chunkOD7GPJAW_cjs.parseRelationMeta; }
3646
+ get: function () { return chunkRKFXHDVU_cjs.parseRelationMeta; }
3400
3647
  });
3401
3648
  Object.defineProperty(exports, "platformAttributes", {
3402
3649
  enumerable: true,
3403
- get: function () { return chunkOD7GPJAW_cjs.platformAttributes; }
3650
+ get: function () { return chunkRKFXHDVU_cjs.platformAttributes; }
3404
3651
  });
3405
3652
  exports.AccountClient = AccountClient;
3406
3653
  exports.ActionSchema = ActionSchema;
@@ -3431,6 +3678,7 @@ exports.NodeNeighborhoodSchema = NodeNeighborhoodSchema;
3431
3678
  exports.OrganizationSchema = OrganizationSchema;
3432
3679
  exports.PLATFORM_ENTITIES = PLATFORM_ENTITIES;
3433
3680
  exports.PLATFORM_ENTITY_SLUGS = PLATFORM_ENTITY_SLUGS;
3681
+ exports.ProfileSchema = ProfileSchema;
3434
3682
  exports.ProteosClient = ProteosClient;
3435
3683
  exports.ProteosError = ProteosError;
3436
3684
  exports.RoleEntityPermissionSchema = RoleEntityPermissionSchema;
@@ -3438,6 +3686,7 @@ exports.RoleSchema = RoleSchema;
3438
3686
  exports.SCOPED_PLATFORM_ENTITY_SLUGS = SCOPED_PLATFORM_ENTITY_SLUGS;
3439
3687
  exports.StorageClient = StorageClient;
3440
3688
  exports.UNASSIGNED_SPACE_SLUG = UNASSIGNED_SPACE_SLUG;
3689
+ exports.UserProfileAssignmentSchema = UserProfileAssignmentSchema;
3441
3690
  exports.UserRoleAssignmentSchema = UserRoleAssignmentSchema;
3442
3691
  exports.UserSchema = UserSchema;
3443
3692
  exports.WorkflowClient = WorkflowClient;