@proteos/sdk 0.52.0 → 0.54.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/{chunk-WEEC4REL.cjs → chunk-KMNEQP3G.cjs} +38 -4
- package/dist/chunk-KMNEQP3G.cjs.map +1 -0
- package/dist/{chunk-VKS2VX24.js → chunk-OS4IQ5VH.js} +36 -5
- package/dist/chunk-OS4IQ5VH.js.map +1 -0
- package/dist/index.cjs +497 -115
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +965 -34
- package/dist/index.d.ts +965 -34
- package/dist/index.js +373 -4
- package/dist/index.js.map +1 -1
- package/dist/meta/index.cjs +84 -72
- package/dist/meta/index.d.cts +1 -1
- package/dist/meta/index.d.ts +1 -1
- package/dist/meta/index.js +1 -1
- package/dist/{types-DHhuGDpV.d.cts → types-amvSTwJy.d.cts} +130 -18
- package/dist/{types-DHhuGDpV.d.ts → types-amvSTwJy.d.ts} +130 -18
- package/package.json +1 -1
- package/src/auth/platform-entities.ts +8 -0
- package/src/connector/types.ts +8 -0
- package/src/conversation/types.ts +37 -4
- package/src/data/index.ts +15 -2
- package/src/data/records.ts +63 -0
- package/src/data/types.ts +52 -0
- package/src/index.ts +106 -1
- package/src/meta/index.ts +8 -1
- package/src/meta/layout/control-registry.json +10 -2
- package/src/meta/layout/elements.ts +29 -0
- package/src/meta/layout/index.ts +1 -0
- package/src/meta/types.ts +72 -0
- package/src/scheduling/index.ts +576 -0
- package/src/scheduling/types.ts +790 -0
- package/dist/chunk-VKS2VX24.js.map +0 -1
- package/dist/chunk-WEEC4REL.cjs.map +0 -1
package/dist/index.cjs
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var chunkKMNEQP3G_cjs = require('./chunk-KMNEQP3G.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
|
|
15
|
+
return new chunkKMNEQP3G_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
|
|
42
|
+
return new chunkKMNEQP3G_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
|
|
110
|
+
return new chunkKMNEQP3G_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
|
|
164
|
+
return new chunkKMNEQP3G_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
|
|
254
|
+
return new chunkKMNEQP3G_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
|
|
311
|
+
return new chunkKMNEQP3G_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
|
|
352
|
+
return new chunkKMNEQP3G_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);
|
|
@@ -443,7 +443,7 @@ var OrganizationServiceImpl = class {
|
|
|
443
443
|
}
|
|
444
444
|
client;
|
|
445
445
|
list(options = {}) {
|
|
446
|
-
return new
|
|
446
|
+
return new chunkKMNEQP3G_cjs.PageIterator((opts) => this.listPage(opts), options);
|
|
447
447
|
}
|
|
448
448
|
async listPage(options = {}) {
|
|
449
449
|
return this.client.requestWithQuery(
|
|
@@ -474,7 +474,7 @@ var ProfileServiceImpl = class {
|
|
|
474
474
|
}
|
|
475
475
|
client;
|
|
476
476
|
list(options = {}) {
|
|
477
|
-
return new
|
|
477
|
+
return new chunkKMNEQP3G_cjs.PageIterator((opts) => this.listPage(opts), options);
|
|
478
478
|
}
|
|
479
479
|
async listPage(options = {}) {
|
|
480
480
|
return this.client.requestWithQuery("GET", PROFILES_BASE_PATH, options);
|
|
@@ -507,7 +507,7 @@ var RoleServiceImpl = class {
|
|
|
507
507
|
}
|
|
508
508
|
client;
|
|
509
509
|
list(options = {}) {
|
|
510
|
-
return new
|
|
510
|
+
return new chunkKMNEQP3G_cjs.PageIterator((opts) => this.listPage(opts), options);
|
|
511
511
|
}
|
|
512
512
|
async listPage(options = {}) {
|
|
513
513
|
return this.client.requestWithQuery("GET", ROLES_BASE_PATH, options);
|
|
@@ -528,7 +528,7 @@ var RoleServiceImpl = class {
|
|
|
528
528
|
await this.client.request("DELETE", `${ROLES_BASE_PATH}/${slug}`);
|
|
529
529
|
}
|
|
530
530
|
getPermissions(roleSlug, options = {}) {
|
|
531
|
-
return new
|
|
531
|
+
return new chunkKMNEQP3G_cjs.PageIterator((opts) => this.fetchPermissionsPage(roleSlug, opts), options);
|
|
532
532
|
}
|
|
533
533
|
async assignPermission(roleSlug, request) {
|
|
534
534
|
return this.client.request(
|
|
@@ -725,7 +725,7 @@ var TeamServiceImpl = class {
|
|
|
725
725
|
}
|
|
726
726
|
client;
|
|
727
727
|
list(options = {}) {
|
|
728
|
-
return new
|
|
728
|
+
return new chunkKMNEQP3G_cjs.PageIterator((opts) => this.listPage(opts), options);
|
|
729
729
|
}
|
|
730
730
|
async listPage(options = {}) {
|
|
731
731
|
return this.client.requestWithQuery("GET", TEAMS_BASE_PATH, options);
|
|
@@ -743,7 +743,7 @@ var TeamServiceImpl = class {
|
|
|
743
743
|
await this.client.request("DELETE", `${TEAMS_BASE_PATH}/${slug}`);
|
|
744
744
|
}
|
|
745
745
|
getMembers(slug, options = {}) {
|
|
746
|
-
return new
|
|
746
|
+
return new chunkKMNEQP3G_cjs.PageIterator((opts) => this.fetchMembersPage(slug, opts), options);
|
|
747
747
|
}
|
|
748
748
|
async addMember(slug, request) {
|
|
749
749
|
return this.client.request("POST", `${TEAMS_BASE_PATH}/${slug}/members`, request);
|
|
@@ -768,7 +768,7 @@ var UserProfileAssignmentServiceImpl = class {
|
|
|
768
768
|
}
|
|
769
769
|
client;
|
|
770
770
|
list(options = {}) {
|
|
771
|
-
return new
|
|
771
|
+
return new chunkKMNEQP3G_cjs.PageIterator((opts) => this.listPage(opts), options);
|
|
772
772
|
}
|
|
773
773
|
async listPage(options = {}) {
|
|
774
774
|
return this.client.requestWithQuery(
|
|
@@ -787,7 +787,7 @@ var UserRoleAssignmentServiceImpl = class {
|
|
|
787
787
|
}
|
|
788
788
|
client;
|
|
789
789
|
list(options = {}) {
|
|
790
|
-
return new
|
|
790
|
+
return new chunkKMNEQP3G_cjs.PageIterator((opts) => this.listPage(opts), options);
|
|
791
791
|
}
|
|
792
792
|
async listPage(options = {}) {
|
|
793
793
|
return this.client.requestWithQuery(
|
|
@@ -806,7 +806,7 @@ var UserServiceImpl = class {
|
|
|
806
806
|
}
|
|
807
807
|
client;
|
|
808
808
|
list(options = {}) {
|
|
809
|
-
return new
|
|
809
|
+
return new chunkKMNEQP3G_cjs.PageIterator((opts) => this.listPage(opts), options);
|
|
810
810
|
}
|
|
811
811
|
async listPage(options = {}) {
|
|
812
812
|
return this.client.requestWithQuery("GET", USERS_BASE_PATH, options);
|
|
@@ -821,7 +821,7 @@ var UserServiceImpl = class {
|
|
|
821
821
|
return this.client.request("PATCH", `${USERS_BASE_PATH}/${id}`, request);
|
|
822
822
|
}
|
|
823
823
|
getRoles(userId, options = {}) {
|
|
824
|
-
return new
|
|
824
|
+
return new chunkKMNEQP3G_cjs.PageIterator((opts) => this.fetchRolesPage(userId, opts), options);
|
|
825
825
|
}
|
|
826
826
|
async assignRole(userId, request) {
|
|
827
827
|
return this.client.request(
|
|
@@ -965,7 +965,15 @@ var PLATFORM_ENTITIES = [
|
|
|
965
965
|
{ slug: "conversation-briefs", name: "Conversation Briefs" },
|
|
966
966
|
// Connectors (connector-service). `connections` above is shared; this is the
|
|
967
967
|
// manifest catalog.
|
|
968
|
-
{ slug: "connectors", name: "Connectors" }
|
|
968
|
+
{ slug: "connectors", name: "Connectors" },
|
|
969
|
+
// Scheduling (scheduling-service)
|
|
970
|
+
{ slug: "calendar-connections", name: "Calendar Connections" },
|
|
971
|
+
{ slug: "calendars", name: "Calendars" },
|
|
972
|
+
{ slug: "calendar-events", name: "Calendar Events" },
|
|
973
|
+
{ slug: "calendar-event-types", name: "Calendar Event Types" },
|
|
974
|
+
{ slug: "scheduling-links", name: "Scheduling Links" },
|
|
975
|
+
{ slug: "scheduling-profiles", name: "Scheduling Profiles" },
|
|
976
|
+
{ slug: "availability-constraints", name: "Availability Constraints" }
|
|
969
977
|
];
|
|
970
978
|
var PLATFORM_ENTITY_SLUGS = PLATFORM_ENTITIES.map(
|
|
971
979
|
(entity) => entity.slug
|
|
@@ -974,28 +982,28 @@ var SCOPED_PLATFORM_ENTITY_SLUGS = ["knowledge-nodes"];
|
|
|
974
982
|
function isPlatformEntity(slug) {
|
|
975
983
|
return PLATFORM_ENTITY_SLUGS.includes(slug);
|
|
976
984
|
}
|
|
977
|
-
var RoleEntityPermissionSchema =
|
|
985
|
+
var RoleEntityPermissionSchema = chunkKMNEQP3G_cjs.AuditFieldsSchema.extend({
|
|
978
986
|
id: zod.z.string(),
|
|
979
987
|
role_slug: zod.z.string(),
|
|
980
988
|
entity_slug: zod.z.string(),
|
|
981
989
|
permission: zod.z.enum(["read", "write", "delete", "read_scoped", "write_scoped", "delete_scoped"])
|
|
982
990
|
});
|
|
983
|
-
var UserRoleAssignmentSchema =
|
|
991
|
+
var UserRoleAssignmentSchema = chunkKMNEQP3G_cjs.AuditFieldsSchema.extend({
|
|
984
992
|
id: zod.z.string(),
|
|
985
993
|
user_id: zod.z.string(),
|
|
986
994
|
role_slug: zod.z.string(),
|
|
987
995
|
org_id: zod.z.string()
|
|
988
996
|
});
|
|
989
|
-
var UserSchema =
|
|
997
|
+
var UserSchema = chunkKMNEQP3G_cjs.AuditFieldsSchema.extend({
|
|
990
998
|
id: zod.z.string(),
|
|
991
999
|
email: zod.z.string(),
|
|
992
1000
|
given_name: zod.z.string(),
|
|
993
1001
|
family_name: zod.z.string(),
|
|
994
1002
|
external_id: zod.z.string(),
|
|
995
1003
|
default_org_id: zod.z.string(),
|
|
996
|
-
profile_image:
|
|
1004
|
+
profile_image: chunkKMNEQP3G_cjs.FileRefSchema.nullish()
|
|
997
1005
|
});
|
|
998
|
-
|
|
1006
|
+
chunkKMNEQP3G_cjs.AuditFieldsSchema.extend({
|
|
999
1007
|
id: zod.z.string(),
|
|
1000
1008
|
user_id: zod.z.string(),
|
|
1001
1009
|
org_id: zod.z.string(),
|
|
@@ -1005,7 +1013,7 @@ chunkWEEC4REL_cjs.AuditFieldsSchema.extend({
|
|
|
1005
1013
|
expires_at: zod.z.string().nullable(),
|
|
1006
1014
|
last_used_at: zod.z.string().nullable()
|
|
1007
1015
|
});
|
|
1008
|
-
var ProfileSchema =
|
|
1016
|
+
var ProfileSchema = chunkKMNEQP3G_cjs.AuditFieldsSchema.extend({
|
|
1009
1017
|
slug: zod.z.string(),
|
|
1010
1018
|
name: zod.z.string(),
|
|
1011
1019
|
org_id: zod.z.string(),
|
|
@@ -1014,32 +1022,32 @@ var ProfileSchema = chunkWEEC4REL_cjs.AuditFieldsSchema.extend({
|
|
|
1014
1022
|
default_app_slug: zod.z.string(),
|
|
1015
1023
|
app_slugs: zod.z.array(zod.z.string())
|
|
1016
1024
|
});
|
|
1017
|
-
var UserProfileAssignmentSchema =
|
|
1025
|
+
var UserProfileAssignmentSchema = chunkKMNEQP3G_cjs.AuditFieldsSchema.extend({
|
|
1018
1026
|
id: zod.z.string(),
|
|
1019
1027
|
user_id: zod.z.string(),
|
|
1020
1028
|
profile_slug: zod.z.string(),
|
|
1021
1029
|
org_id: zod.z.string()
|
|
1022
1030
|
});
|
|
1023
|
-
var RoleSchema =
|
|
1031
|
+
var RoleSchema = chunkKMNEQP3G_cjs.AuditFieldsSchema.extend({
|
|
1024
1032
|
slug: zod.z.string(),
|
|
1025
1033
|
name: zod.z.string(),
|
|
1026
1034
|
org_id: zod.z.string(),
|
|
1027
1035
|
description: zod.z.string()
|
|
1028
1036
|
});
|
|
1029
|
-
|
|
1037
|
+
chunkKMNEQP3G_cjs.AuditFieldsSchema.extend({
|
|
1030
1038
|
slug: zod.z.string(),
|
|
1031
1039
|
name: zod.z.string(),
|
|
1032
1040
|
org_id: zod.z.string(),
|
|
1033
1041
|
description: zod.z.string(),
|
|
1034
1042
|
parent_team_slug: zod.z.string()
|
|
1035
1043
|
});
|
|
1036
|
-
|
|
1044
|
+
chunkKMNEQP3G_cjs.AuditFieldsSchema.extend({
|
|
1037
1045
|
id: zod.z.string(),
|
|
1038
1046
|
org_id: zod.z.string(),
|
|
1039
1047
|
team_slug: zod.z.string(),
|
|
1040
1048
|
user_id: zod.z.string()
|
|
1041
1049
|
});
|
|
1042
|
-
var OrganizationSchema =
|
|
1050
|
+
var OrganizationSchema = chunkKMNEQP3G_cjs.AuditFieldsSchema.extend({
|
|
1043
1051
|
id: zod.z.string(),
|
|
1044
1052
|
name: zod.z.string(),
|
|
1045
1053
|
description: zod.z.string()
|
|
@@ -1048,7 +1056,7 @@ var SharePermissionSchema = zod.z.enum(["read", "write", "delete"]);
|
|
|
1048
1056
|
zod.z.object({
|
|
1049
1057
|
entity_slug: zod.z.string(),
|
|
1050
1058
|
record_id: zod.z.string(),
|
|
1051
|
-
principal:
|
|
1059
|
+
principal: chunkKMNEQP3G_cjs.PrincipalRefSchema,
|
|
1052
1060
|
permission: SharePermissionSchema
|
|
1053
1061
|
});
|
|
1054
1062
|
|
|
@@ -2572,7 +2580,7 @@ var RecordServiceImpl = class {
|
|
|
2572
2580
|
}
|
|
2573
2581
|
client;
|
|
2574
2582
|
list(entitySlug, options = {}) {
|
|
2575
|
-
return new
|
|
2583
|
+
return new chunkKMNEQP3G_cjs.PageIterator((opts) => this.listPage(entitySlug, opts), options);
|
|
2576
2584
|
}
|
|
2577
2585
|
async listPage(entitySlug, options = {}) {
|
|
2578
2586
|
return this.client.requestWithQuery(
|
|
@@ -2604,8 +2612,15 @@ var RecordServiceImpl = class {
|
|
|
2604
2612
|
transactions
|
|
2605
2613
|
);
|
|
2606
2614
|
}
|
|
2615
|
+
async publishContactObservations(entitySlug, options = {}) {
|
|
2616
|
+
return this.client.requestWithQuery(
|
|
2617
|
+
"POST",
|
|
2618
|
+
`${RECORDS_BASE_PATH}/${entitySlug}/contact-observations`,
|
|
2619
|
+
options
|
|
2620
|
+
);
|
|
2621
|
+
}
|
|
2607
2622
|
listPublic(orgId, entitySlug, options = {}) {
|
|
2608
|
-
return new
|
|
2623
|
+
return new chunkKMNEQP3G_cjs.PageIterator((opts) => this.listPublicPage(orgId, entitySlug, opts), options);
|
|
2609
2624
|
}
|
|
2610
2625
|
async listPublicPage(orgId, entitySlug, options = {}) {
|
|
2611
2626
|
return this.client.requestWithQuery(
|
|
@@ -2625,6 +2640,31 @@ var RecordServiceImpl = class {
|
|
|
2625
2640
|
);
|
|
2626
2641
|
}
|
|
2627
2642
|
};
|
|
2643
|
+
var RecordDuplicateServiceImpl = class {
|
|
2644
|
+
constructor(client) {
|
|
2645
|
+
this.client = client;
|
|
2646
|
+
}
|
|
2647
|
+
client;
|
|
2648
|
+
async list(entitySlug, query = {}) {
|
|
2649
|
+
return this.client.requestWithQuery(
|
|
2650
|
+
"GET",
|
|
2651
|
+
`${RECORDS_BASE_PATH}/${entitySlug}/duplicates`,
|
|
2652
|
+
query
|
|
2653
|
+
);
|
|
2654
|
+
}
|
|
2655
|
+
async get(entitySlug, id) {
|
|
2656
|
+
return this.client.request(
|
|
2657
|
+
"GET",
|
|
2658
|
+
`${RECORDS_BASE_PATH}/${entitySlug}/duplicates/${encodeURIComponent(id)}`
|
|
2659
|
+
);
|
|
2660
|
+
}
|
|
2661
|
+
async dismiss(entitySlug, id) {
|
|
2662
|
+
return this.client.request(
|
|
2663
|
+
"POST",
|
|
2664
|
+
`${RECORDS_BASE_PATH}/${entitySlug}/duplicates/${encodeURIComponent(id)}/dismiss`
|
|
2665
|
+
);
|
|
2666
|
+
}
|
|
2667
|
+
};
|
|
2628
2668
|
var BatchUpsertTransactionSchema = zod.z.object({
|
|
2629
2669
|
transaction_id: zod.z.string(),
|
|
2630
2670
|
data: zod.z.record(zod.z.unknown())
|
|
@@ -2647,9 +2687,12 @@ var BatchUpsertRecordsResponseSchema = zod.z.object({
|
|
|
2647
2687
|
var DataClient = class {
|
|
2648
2688
|
records;
|
|
2649
2689
|
queries;
|
|
2690
|
+
/** Duplicate pairs of an entity's records (raised by contact binding). */
|
|
2691
|
+
recordDuplicates;
|
|
2650
2692
|
constructor(client) {
|
|
2651
2693
|
this.records = new RecordServiceImpl(client);
|
|
2652
2694
|
this.queries = new QueryServiceImpl(client);
|
|
2695
|
+
this.recordDuplicates = new RecordDuplicateServiceImpl(client);
|
|
2653
2696
|
}
|
|
2654
2697
|
};
|
|
2655
2698
|
|
|
@@ -2764,7 +2807,7 @@ var ActionServiceImpl = class {
|
|
|
2764
2807
|
}
|
|
2765
2808
|
client;
|
|
2766
2809
|
list(options = {}) {
|
|
2767
|
-
return new
|
|
2810
|
+
return new chunkKMNEQP3G_cjs.PageIterator((opts) => this.listPage(opts), options);
|
|
2768
2811
|
}
|
|
2769
2812
|
async listPage(options = {}) {
|
|
2770
2813
|
return this.client.requestWithQuery("GET", ACTIONS_BASE_PATH, options);
|
|
@@ -2807,7 +2850,7 @@ var ActionServiceImpl = class {
|
|
|
2807
2850
|
}
|
|
2808
2851
|
};
|
|
2809
2852
|
var ActionScopeSchema = zod.z.enum(["entity", "entity_batch", "global"]);
|
|
2810
|
-
var ActionSchema =
|
|
2853
|
+
var ActionSchema = chunkKMNEQP3G_cjs.AuditFieldsSchema.extend({
|
|
2811
2854
|
slug: zod.z.string(),
|
|
2812
2855
|
org_id: zod.z.string(),
|
|
2813
2856
|
module_slug: zod.z.string(),
|
|
@@ -2816,8 +2859,8 @@ var ActionSchema = chunkWEEC4REL_cjs.AuditFieldsSchema.extend({
|
|
|
2816
2859
|
name: zod.z.string(),
|
|
2817
2860
|
is_active: zod.z.boolean(),
|
|
2818
2861
|
file_id: zod.z.string(),
|
|
2819
|
-
params: zod.z.array(
|
|
2820
|
-
returns: zod.z.array(
|
|
2862
|
+
params: zod.z.array(chunkKMNEQP3G_cjs.AttributeSchema),
|
|
2863
|
+
returns: zod.z.array(chunkKMNEQP3G_cjs.AttributeSchema)
|
|
2821
2864
|
});
|
|
2822
2865
|
|
|
2823
2866
|
// src/functions/index.ts
|
|
@@ -2855,7 +2898,7 @@ var LabelServiceImpl = class {
|
|
|
2855
2898
|
}
|
|
2856
2899
|
client;
|
|
2857
2900
|
list(options = {}) {
|
|
2858
|
-
return new
|
|
2901
|
+
return new chunkKMNEQP3G_cjs.PageIterator((opts) => this.listPage(opts), options);
|
|
2859
2902
|
}
|
|
2860
2903
|
async listPage(options = {}) {
|
|
2861
2904
|
return this.client.requestWithQuery(
|
|
@@ -2886,7 +2929,7 @@ var LinkServiceImpl = class {
|
|
|
2886
2929
|
}
|
|
2887
2930
|
client;
|
|
2888
2931
|
list(options = {}) {
|
|
2889
|
-
return new
|
|
2932
|
+
return new chunkKMNEQP3G_cjs.PageIterator((opts) => this.listPage(opts), options);
|
|
2890
2933
|
}
|
|
2891
2934
|
async listPage(options = {}) {
|
|
2892
2935
|
return this.client.requestWithQuery("GET", LINKS_BASE_PATH, options);
|
|
@@ -2913,7 +2956,7 @@ var NodeServiceImpl = class {
|
|
|
2913
2956
|
}
|
|
2914
2957
|
client;
|
|
2915
2958
|
list(options = {}) {
|
|
2916
|
-
return new
|
|
2959
|
+
return new chunkKMNEQP3G_cjs.PageIterator((opts) => this.listPage(opts), options);
|
|
2917
2960
|
}
|
|
2918
2961
|
async listPage(options = {}) {
|
|
2919
2962
|
const { label_ids, space_slugs, ...rest } = options;
|
|
@@ -3010,7 +3053,7 @@ var SpaceServiceImpl = class {
|
|
|
3010
3053
|
}
|
|
3011
3054
|
client;
|
|
3012
3055
|
list(options = {}) {
|
|
3013
|
-
return new
|
|
3056
|
+
return new chunkKMNEQP3G_cjs.PageIterator((opts) => this.listPage(opts), options);
|
|
3014
3057
|
}
|
|
3015
3058
|
async listPage(options = {}) {
|
|
3016
3059
|
return this.client.requestWithQuery(
|
|
@@ -3041,7 +3084,7 @@ var RecordLinkServiceImpl = class {
|
|
|
3041
3084
|
}
|
|
3042
3085
|
client;
|
|
3043
3086
|
list(options = {}) {
|
|
3044
|
-
return new
|
|
3087
|
+
return new chunkKMNEQP3G_cjs.PageIterator((opts) => this.listPage(opts), options);
|
|
3045
3088
|
}
|
|
3046
3089
|
async listPage(options = {}) {
|
|
3047
3090
|
return this.client.requestWithQuery(
|
|
@@ -3074,7 +3117,7 @@ var KnowledgeNodeMetadataSchema = zod.z.object({
|
|
|
3074
3117
|
summary: zod.z.string().nullish(),
|
|
3075
3118
|
valid_from: zod.z.string().nullish(),
|
|
3076
3119
|
valid_until: zod.z.string().nullish()
|
|
3077
|
-
}).merge(
|
|
3120
|
+
}).merge(chunkKMNEQP3G_cjs.AuditFieldsSchema);
|
|
3078
3121
|
var KnowledgeNodeSchema = KnowledgeNodeMetadataSchema.extend({
|
|
3079
3122
|
content: zod.z.string()
|
|
3080
3123
|
});
|
|
@@ -3098,7 +3141,7 @@ var KnowledgeLinkSchema = zod.z.object({
|
|
|
3098
3141
|
"superseded_by"
|
|
3099
3142
|
]),
|
|
3100
3143
|
description: zod.z.string().nullish()
|
|
3101
|
-
}).merge(
|
|
3144
|
+
}).merge(chunkKMNEQP3G_cjs.AuditFieldsSchema);
|
|
3102
3145
|
var KnowledgeRecordLinkSchema = zod.z.object({
|
|
3103
3146
|
id: zod.z.string(),
|
|
3104
3147
|
org_id: zod.z.string(),
|
|
@@ -3106,7 +3149,7 @@ var KnowledgeRecordLinkSchema = zod.z.object({
|
|
|
3106
3149
|
entity_slug: zod.z.string(),
|
|
3107
3150
|
record_id: zod.z.string(),
|
|
3108
3151
|
created_at: zod.z.string(),
|
|
3109
|
-
created_by:
|
|
3152
|
+
created_by: chunkKMNEQP3G_cjs.UserRefSchema
|
|
3110
3153
|
});
|
|
3111
3154
|
var KnowledgeLabelSchema = zod.z.object({
|
|
3112
3155
|
id: zod.z.string(),
|
|
@@ -3116,13 +3159,13 @@ var KnowledgeLabelSchema = zod.z.object({
|
|
|
3116
3159
|
description: zod.z.string().nullish(),
|
|
3117
3160
|
color: zod.z.string().nullish(),
|
|
3118
3161
|
icon: zod.z.string().nullish()
|
|
3119
|
-
}).merge(
|
|
3162
|
+
}).merge(chunkKMNEQP3G_cjs.AuditFieldsSchema);
|
|
3120
3163
|
var KnowledgeNodeLabelSchema = zod.z.object({
|
|
3121
3164
|
org_id: zod.z.string(),
|
|
3122
3165
|
node_id: zod.z.string(),
|
|
3123
3166
|
label_id: zod.z.string(),
|
|
3124
3167
|
created_at: zod.z.string(),
|
|
3125
|
-
created_by:
|
|
3168
|
+
created_by: chunkKMNEQP3G_cjs.UserRefSchema
|
|
3126
3169
|
});
|
|
3127
3170
|
var NodeNeighborhoodSchema = zod.z.object({
|
|
3128
3171
|
nodes: zod.z.array(
|
|
@@ -3168,6 +3211,332 @@ var KnowledgeClient = class {
|
|
|
3168
3211
|
}
|
|
3169
3212
|
};
|
|
3170
3213
|
|
|
3214
|
+
// src/scheduling/index.ts
|
|
3215
|
+
var SCHEDULING_BASE_PATH = "/scheduling/v1";
|
|
3216
|
+
var encode = encodeURIComponent;
|
|
3217
|
+
var SchedulingClient = class {
|
|
3218
|
+
calendarConnections;
|
|
3219
|
+
calendars;
|
|
3220
|
+
schedulingProfiles;
|
|
3221
|
+
calendarEvents;
|
|
3222
|
+
calendarEventTypes;
|
|
3223
|
+
availabilityConstraints;
|
|
3224
|
+
slots;
|
|
3225
|
+
schedulingLinks;
|
|
3226
|
+
/** The unauthenticated scheduling page + manage page (no Authorization header). */
|
|
3227
|
+
public;
|
|
3228
|
+
constructor(client) {
|
|
3229
|
+
this.schedulingLinks = new SchedulingLinkServiceImpl(client);
|
|
3230
|
+
this.public = new PublicSchedulingServiceImpl(client);
|
|
3231
|
+
this.calendarConnections = new CalendarConnectionServiceImpl(client);
|
|
3232
|
+
this.calendars = new CalendarServiceImpl(client);
|
|
3233
|
+
this.schedulingProfiles = new SchedulingProfileServiceImpl(client);
|
|
3234
|
+
this.calendarEvents = new CalendarEventServiceImpl(client);
|
|
3235
|
+
this.calendarEventTypes = new CalendarEventTypeServiceImpl(client);
|
|
3236
|
+
this.availabilityConstraints = new AvailabilityConstraintServiceImpl(client);
|
|
3237
|
+
this.slots = new SlotServiceImpl(client);
|
|
3238
|
+
}
|
|
3239
|
+
};
|
|
3240
|
+
var CalendarConnectionServiceImpl = class {
|
|
3241
|
+
constructor(client) {
|
|
3242
|
+
this.client = client;
|
|
3243
|
+
}
|
|
3244
|
+
client;
|
|
3245
|
+
listMine(query = {}) {
|
|
3246
|
+
return this.client.requestWithQuery(
|
|
3247
|
+
"GET",
|
|
3248
|
+
`${SCHEDULING_BASE_PATH}/me/calendar-connections`,
|
|
3249
|
+
query
|
|
3250
|
+
);
|
|
3251
|
+
}
|
|
3252
|
+
connect(request) {
|
|
3253
|
+
return this.client.request("POST", `${SCHEDULING_BASE_PATH}/me/calendar-connections`, request);
|
|
3254
|
+
}
|
|
3255
|
+
updateMine(id, request) {
|
|
3256
|
+
return this.client.request(
|
|
3257
|
+
"PATCH",
|
|
3258
|
+
`${SCHEDULING_BASE_PATH}/me/calendar-connections/${encode(id)}`,
|
|
3259
|
+
request
|
|
3260
|
+
);
|
|
3261
|
+
}
|
|
3262
|
+
async disconnectMine(id) {
|
|
3263
|
+
await this.client.request(
|
|
3264
|
+
"DELETE",
|
|
3265
|
+
`${SCHEDULING_BASE_PATH}/me/calendar-connections/${encode(id)}`
|
|
3266
|
+
);
|
|
3267
|
+
}
|
|
3268
|
+
syncMine(id, request = {}) {
|
|
3269
|
+
return this.client.request(
|
|
3270
|
+
"POST",
|
|
3271
|
+
`${SCHEDULING_BASE_PATH}/me/calendar-connections/${encode(id)}/sync`,
|
|
3272
|
+
request
|
|
3273
|
+
);
|
|
3274
|
+
}
|
|
3275
|
+
listForUser(userId, query = {}) {
|
|
3276
|
+
return this.client.requestWithQuery(
|
|
3277
|
+
"GET",
|
|
3278
|
+
`${SCHEDULING_BASE_PATH}/users/${encode(userId)}/calendar-connections`,
|
|
3279
|
+
query
|
|
3280
|
+
);
|
|
3281
|
+
}
|
|
3282
|
+
updateForUser(userId, id, request) {
|
|
3283
|
+
return this.client.request(
|
|
3284
|
+
"PATCH",
|
|
3285
|
+
`${SCHEDULING_BASE_PATH}/users/${encode(userId)}/calendar-connections/${encode(id)}`,
|
|
3286
|
+
request
|
|
3287
|
+
);
|
|
3288
|
+
}
|
|
3289
|
+
async disconnectForUser(userId, id) {
|
|
3290
|
+
await this.client.request(
|
|
3291
|
+
"DELETE",
|
|
3292
|
+
`${SCHEDULING_BASE_PATH}/users/${encode(userId)}/calendar-connections/${encode(id)}`
|
|
3293
|
+
);
|
|
3294
|
+
}
|
|
3295
|
+
};
|
|
3296
|
+
var CalendarServiceImpl = class {
|
|
3297
|
+
constructor(client) {
|
|
3298
|
+
this.client = client;
|
|
3299
|
+
}
|
|
3300
|
+
client;
|
|
3301
|
+
listMine(query = {}) {
|
|
3302
|
+
return this.client.requestWithQuery("GET", `${SCHEDULING_BASE_PATH}/me/calendars`, query);
|
|
3303
|
+
}
|
|
3304
|
+
getMine(id) {
|
|
3305
|
+
return this.client.request("GET", `${SCHEDULING_BASE_PATH}/me/calendars/${encode(id)}`);
|
|
3306
|
+
}
|
|
3307
|
+
updateMine(id, request) {
|
|
3308
|
+
return this.client.request(
|
|
3309
|
+
"PATCH",
|
|
3310
|
+
`${SCHEDULING_BASE_PATH}/me/calendars/${encode(id)}`,
|
|
3311
|
+
request
|
|
3312
|
+
);
|
|
3313
|
+
}
|
|
3314
|
+
listForUser(userId, query = {}) {
|
|
3315
|
+
return this.client.requestWithQuery(
|
|
3316
|
+
"GET",
|
|
3317
|
+
`${SCHEDULING_BASE_PATH}/users/${encode(userId)}/calendars`,
|
|
3318
|
+
query
|
|
3319
|
+
);
|
|
3320
|
+
}
|
|
3321
|
+
getForUser(userId, id) {
|
|
3322
|
+
return this.client.request(
|
|
3323
|
+
"GET",
|
|
3324
|
+
`${SCHEDULING_BASE_PATH}/users/${encode(userId)}/calendars/${encode(id)}`
|
|
3325
|
+
);
|
|
3326
|
+
}
|
|
3327
|
+
updateForUser(userId, id, request) {
|
|
3328
|
+
return this.client.request(
|
|
3329
|
+
"PATCH",
|
|
3330
|
+
`${SCHEDULING_BASE_PATH}/users/${encode(userId)}/calendars/${encode(id)}`,
|
|
3331
|
+
request
|
|
3332
|
+
);
|
|
3333
|
+
}
|
|
3334
|
+
};
|
|
3335
|
+
var SchedulingProfileServiceImpl = class {
|
|
3336
|
+
constructor(client) {
|
|
3337
|
+
this.client = client;
|
|
3338
|
+
}
|
|
3339
|
+
client;
|
|
3340
|
+
getMine() {
|
|
3341
|
+
return this.client.request("GET", `${SCHEDULING_BASE_PATH}/me/scheduling-profile`);
|
|
3342
|
+
}
|
|
3343
|
+
putMine(request) {
|
|
3344
|
+
return this.client.request("PUT", `${SCHEDULING_BASE_PATH}/me/scheduling-profile`, request);
|
|
3345
|
+
}
|
|
3346
|
+
getForUser(userId) {
|
|
3347
|
+
return this.client.request(
|
|
3348
|
+
"GET",
|
|
3349
|
+
`${SCHEDULING_BASE_PATH}/users/${encode(userId)}/scheduling-profile`
|
|
3350
|
+
);
|
|
3351
|
+
}
|
|
3352
|
+
putForUser(userId, request) {
|
|
3353
|
+
return this.client.request(
|
|
3354
|
+
"PUT",
|
|
3355
|
+
`${SCHEDULING_BASE_PATH}/users/${encode(userId)}/scheduling-profile`,
|
|
3356
|
+
request
|
|
3357
|
+
);
|
|
3358
|
+
}
|
|
3359
|
+
};
|
|
3360
|
+
var CalendarEventServiceImpl = class {
|
|
3361
|
+
constructor(client) {
|
|
3362
|
+
this.client = client;
|
|
3363
|
+
}
|
|
3364
|
+
client;
|
|
3365
|
+
list(query) {
|
|
3366
|
+
return this.client.requestWithQuery("GET", `${SCHEDULING_BASE_PATH}/calendar-events`, query);
|
|
3367
|
+
}
|
|
3368
|
+
get(id) {
|
|
3369
|
+
return this.client.request("GET", `${SCHEDULING_BASE_PATH}/calendar-events/${encode(id)}`);
|
|
3370
|
+
}
|
|
3371
|
+
create(request) {
|
|
3372
|
+
return this.client.request("POST", `${SCHEDULING_BASE_PATH}/calendar-events`, request);
|
|
3373
|
+
}
|
|
3374
|
+
update(id, request, scope) {
|
|
3375
|
+
return this.client.requestWithQuery(
|
|
3376
|
+
"PATCH",
|
|
3377
|
+
`${SCHEDULING_BASE_PATH}/calendar-events/${encode(id)}`,
|
|
3378
|
+
scope ? { scope } : void 0,
|
|
3379
|
+
request
|
|
3380
|
+
);
|
|
3381
|
+
}
|
|
3382
|
+
async delete(id, scope) {
|
|
3383
|
+
await this.client.requestWithQuery(
|
|
3384
|
+
"DELETE",
|
|
3385
|
+
`${SCHEDULING_BASE_PATH}/calendar-events/${encode(id)}`,
|
|
3386
|
+
scope ? { scope } : void 0
|
|
3387
|
+
);
|
|
3388
|
+
}
|
|
3389
|
+
respond(id, request) {
|
|
3390
|
+
return this.client.request(
|
|
3391
|
+
"POST",
|
|
3392
|
+
`${SCHEDULING_BASE_PATH}/calendar-events/${encode(id)}/respond`,
|
|
3393
|
+
request
|
|
3394
|
+
);
|
|
3395
|
+
}
|
|
3396
|
+
};
|
|
3397
|
+
var CalendarEventTypeServiceImpl = class {
|
|
3398
|
+
constructor(client) {
|
|
3399
|
+
this.client = client;
|
|
3400
|
+
}
|
|
3401
|
+
client;
|
|
3402
|
+
list(query = {}) {
|
|
3403
|
+
return this.client.requestWithQuery("GET", `${SCHEDULING_BASE_PATH}/calendar-event-types`, query);
|
|
3404
|
+
}
|
|
3405
|
+
get(key) {
|
|
3406
|
+
return this.client.request("GET", `${SCHEDULING_BASE_PATH}/calendar-event-types/${encode(key)}`);
|
|
3407
|
+
}
|
|
3408
|
+
put(key, request) {
|
|
3409
|
+
return this.client.request(
|
|
3410
|
+
"PUT",
|
|
3411
|
+
`${SCHEDULING_BASE_PATH}/calendar-event-types/${encode(key)}`,
|
|
3412
|
+
request
|
|
3413
|
+
);
|
|
3414
|
+
}
|
|
3415
|
+
update(key, request) {
|
|
3416
|
+
return this.client.request(
|
|
3417
|
+
"PATCH",
|
|
3418
|
+
`${SCHEDULING_BASE_PATH}/calendar-event-types/${encode(key)}`,
|
|
3419
|
+
request
|
|
3420
|
+
);
|
|
3421
|
+
}
|
|
3422
|
+
async delete(key) {
|
|
3423
|
+
await this.client.request(
|
|
3424
|
+
"DELETE",
|
|
3425
|
+
`${SCHEDULING_BASE_PATH}/calendar-event-types/${encode(key)}`
|
|
3426
|
+
);
|
|
3427
|
+
}
|
|
3428
|
+
};
|
|
3429
|
+
var AvailabilityConstraintServiceImpl = class {
|
|
3430
|
+
constructor(client) {
|
|
3431
|
+
this.client = client;
|
|
3432
|
+
}
|
|
3433
|
+
client;
|
|
3434
|
+
base(userId) {
|
|
3435
|
+
return userId ? `${SCHEDULING_BASE_PATH}/users/${encode(userId)}/availability-constraints` : `${SCHEDULING_BASE_PATH}/me/availability-constraints`;
|
|
3436
|
+
}
|
|
3437
|
+
listMine(query = {}) {
|
|
3438
|
+
return this.client.requestWithQuery("GET", this.base(), query);
|
|
3439
|
+
}
|
|
3440
|
+
getMine(id) {
|
|
3441
|
+
return this.client.request("GET", `${this.base()}/${encode(id)}`);
|
|
3442
|
+
}
|
|
3443
|
+
createMine(request) {
|
|
3444
|
+
return this.client.request("POST", this.base(), request);
|
|
3445
|
+
}
|
|
3446
|
+
updateMine(id, request) {
|
|
3447
|
+
return this.client.request("PATCH", `${this.base()}/${encode(id)}`, request);
|
|
3448
|
+
}
|
|
3449
|
+
async deleteMine(id) {
|
|
3450
|
+
await this.client.request("DELETE", `${this.base()}/${encode(id)}`);
|
|
3451
|
+
}
|
|
3452
|
+
listForUser(userId, query = {}) {
|
|
3453
|
+
return this.client.requestWithQuery("GET", this.base(userId), query);
|
|
3454
|
+
}
|
|
3455
|
+
getForUser(userId, id) {
|
|
3456
|
+
return this.client.request("GET", `${this.base(userId)}/${encode(id)}`);
|
|
3457
|
+
}
|
|
3458
|
+
createForUser(userId, request) {
|
|
3459
|
+
return this.client.request("POST", this.base(userId), request);
|
|
3460
|
+
}
|
|
3461
|
+
updateForUser(userId, id, request) {
|
|
3462
|
+
return this.client.request("PATCH", `${this.base(userId)}/${encode(id)}`, request);
|
|
3463
|
+
}
|
|
3464
|
+
async deleteForUser(userId, id) {
|
|
3465
|
+
await this.client.request("DELETE", `${this.base(userId)}/${encode(id)}`);
|
|
3466
|
+
}
|
|
3467
|
+
};
|
|
3468
|
+
var SlotServiceImpl = class {
|
|
3469
|
+
constructor(client) {
|
|
3470
|
+
this.client = client;
|
|
3471
|
+
}
|
|
3472
|
+
client;
|
|
3473
|
+
get(request) {
|
|
3474
|
+
return this.client.request("POST", `${SCHEDULING_BASE_PATH}/slots`, request);
|
|
3475
|
+
}
|
|
3476
|
+
};
|
|
3477
|
+
var SchedulingLinkServiceImpl = class {
|
|
3478
|
+
constructor(client) {
|
|
3479
|
+
this.client = client;
|
|
3480
|
+
}
|
|
3481
|
+
client;
|
|
3482
|
+
list(query = {}) {
|
|
3483
|
+
return this.client.requestWithQuery("GET", `${SCHEDULING_BASE_PATH}/scheduling-links`, query);
|
|
3484
|
+
}
|
|
3485
|
+
get(key) {
|
|
3486
|
+
return this.client.request("GET", `${SCHEDULING_BASE_PATH}/scheduling-links/${encode(key)}`);
|
|
3487
|
+
}
|
|
3488
|
+
create(request) {
|
|
3489
|
+
return this.client.request("POST", `${SCHEDULING_BASE_PATH}/scheduling-links`, request);
|
|
3490
|
+
}
|
|
3491
|
+
update(key, request) {
|
|
3492
|
+
return this.client.request("PATCH", `${SCHEDULING_BASE_PATH}/scheduling-links/${encode(key)}`, request);
|
|
3493
|
+
}
|
|
3494
|
+
async delete(key) {
|
|
3495
|
+
await this.client.request("DELETE", `${SCHEDULING_BASE_PATH}/scheduling-links/${encode(key)}`);
|
|
3496
|
+
}
|
|
3497
|
+
getPage(key, contactId) {
|
|
3498
|
+
const suffix = contactId ? `?contact_id=${encode(contactId)}` : "";
|
|
3499
|
+
return this.client.request("GET", `${SCHEDULING_BASE_PATH}/scheduling-links/${encode(key)}/page${suffix}`);
|
|
3500
|
+
}
|
|
3501
|
+
getSlots(key, query) {
|
|
3502
|
+
return this.client.requestWithQuery("GET", `${SCHEDULING_BASE_PATH}/scheduling-links/${encode(key)}/slots`, query);
|
|
3503
|
+
}
|
|
3504
|
+
book(key, request) {
|
|
3505
|
+
return this.client.request("POST", `${SCHEDULING_BASE_PATH}/scheduling-links/${encode(key)}/calendar-events`, request);
|
|
3506
|
+
}
|
|
3507
|
+
};
|
|
3508
|
+
var PublicSchedulingServiceImpl = class {
|
|
3509
|
+
constructor(client) {
|
|
3510
|
+
this.client = client;
|
|
3511
|
+
}
|
|
3512
|
+
client;
|
|
3513
|
+
base(orgId) {
|
|
3514
|
+
return `${SCHEDULING_BASE_PATH}/public/orgs/${encode(orgId)}`;
|
|
3515
|
+
}
|
|
3516
|
+
getLink(orgId, key, contactId) {
|
|
3517
|
+
const suffix = contactId ? `?contact_id=${encode(contactId)}` : "";
|
|
3518
|
+
return this.client.request("GET", `${this.base(orgId)}/links/${encode(key)}${suffix}`, void 0, { skipAuth: true });
|
|
3519
|
+
}
|
|
3520
|
+
getSlots(orgId, key, query) {
|
|
3521
|
+
const params = new URLSearchParams({ from: query.from, to: query.to, timezone: query.timezone });
|
|
3522
|
+
if (query.host_user_id) params.set("host_user_id", query.host_user_id);
|
|
3523
|
+
if (query.type_key) params.set("type_key", query.type_key);
|
|
3524
|
+
return this.client.request("GET", `${this.base(orgId)}/links/${encode(key)}/slots?${params.toString()}`, void 0, { skipAuth: true });
|
|
3525
|
+
}
|
|
3526
|
+
book(orgId, key, request) {
|
|
3527
|
+
return this.client.request("POST", `${this.base(orgId)}/links/${encode(key)}/calendar-events`, request, { skipAuth: true });
|
|
3528
|
+
}
|
|
3529
|
+
getEvent(orgId, id, token) {
|
|
3530
|
+
return this.client.request("GET", `${this.base(orgId)}/calendar-events/${encode(id)}?token=${encode(token)}`, void 0, { skipAuth: true });
|
|
3531
|
+
}
|
|
3532
|
+
cancel(orgId, id, request) {
|
|
3533
|
+
return this.client.request("POST", `${this.base(orgId)}/calendar-events/${encode(id)}/cancel`, request, { skipAuth: true });
|
|
3534
|
+
}
|
|
3535
|
+
reschedule(orgId, id, request) {
|
|
3536
|
+
return this.client.request("POST", `${this.base(orgId)}/calendar-events/${encode(id)}/reschedule`, request, { skipAuth: true });
|
|
3537
|
+
}
|
|
3538
|
+
};
|
|
3539
|
+
|
|
3171
3540
|
// src/storage/files.ts
|
|
3172
3541
|
var FILES_BASE_PATH = "/storage/v1/files";
|
|
3173
3542
|
var FileServiceImpl = class {
|
|
@@ -3309,7 +3678,7 @@ var ExecutionServiceImpl = class {
|
|
|
3309
3678
|
}
|
|
3310
3679
|
client;
|
|
3311
3680
|
list(options = {}) {
|
|
3312
|
-
return new
|
|
3681
|
+
return new chunkKMNEQP3G_cjs.PageIterator((opts) => this.listPage(opts), options);
|
|
3313
3682
|
}
|
|
3314
3683
|
async listPage(options = {}) {
|
|
3315
3684
|
return this.client.requestWithQuery(
|
|
@@ -3368,7 +3737,7 @@ var WorkflowServiceImpl = class {
|
|
|
3368
3737
|
}
|
|
3369
3738
|
client;
|
|
3370
3739
|
list(options = {}) {
|
|
3371
|
-
return new
|
|
3740
|
+
return new chunkKMNEQP3G_cjs.PageIterator((opts) => this.listPage(opts), options);
|
|
3372
3741
|
}
|
|
3373
3742
|
async listPage(options = {}) {
|
|
3374
3743
|
return this.client.requestWithQuery("GET", WORKFLOWS_BASE_PATH2, options);
|
|
@@ -3406,7 +3775,7 @@ var WorkflowServiceImpl = class {
|
|
|
3406
3775
|
return this.client.request("POST", `${WORKFLOWS_BASE_PATH2}/${key}/unpause`, {});
|
|
3407
3776
|
}
|
|
3408
3777
|
listVersions(key, options = {}) {
|
|
3409
|
-
return new
|
|
3778
|
+
return new chunkKMNEQP3G_cjs.PageIterator((opts) => this.listVersionsPage(key, opts), options);
|
|
3410
3779
|
}
|
|
3411
3780
|
async listVersionsPage(key, options = {}) {
|
|
3412
3781
|
return this.client.requestWithQuery(
|
|
@@ -3451,263 +3820,275 @@ var WorkflowClient = class {
|
|
|
3451
3820
|
|
|
3452
3821
|
Object.defineProperty(exports, "AppConfigurationSchema", {
|
|
3453
3822
|
enumerable: true,
|
|
3454
|
-
get: function () { return
|
|
3823
|
+
get: function () { return chunkKMNEQP3G_cjs.AppConfigurationSchema; }
|
|
3455
3824
|
});
|
|
3456
3825
|
Object.defineProperty(exports, "AppHomeSchema", {
|
|
3457
3826
|
enumerable: true,
|
|
3458
|
-
get: function () { return
|
|
3827
|
+
get: function () { return chunkKMNEQP3G_cjs.AppHomeSchema; }
|
|
3459
3828
|
});
|
|
3460
3829
|
Object.defineProperty(exports, "AppSchema", {
|
|
3461
3830
|
enumerable: true,
|
|
3462
|
-
get: function () { return
|
|
3831
|
+
get: function () { return chunkKMNEQP3G_cjs.AppSchema; }
|
|
3463
3832
|
});
|
|
3464
3833
|
Object.defineProperty(exports, "AttributeSchema", {
|
|
3465
3834
|
enumerable: true,
|
|
3466
|
-
get: function () { return
|
|
3835
|
+
get: function () { return chunkKMNEQP3G_cjs.AttributeSchema; }
|
|
3467
3836
|
});
|
|
3468
3837
|
Object.defineProperty(exports, "AuditFieldsSchema", {
|
|
3469
3838
|
enumerable: true,
|
|
3470
|
-
get: function () { return
|
|
3839
|
+
get: function () { return chunkKMNEQP3G_cjs.AuditFieldsSchema; }
|
|
3471
3840
|
});
|
|
3472
3841
|
Object.defineProperty(exports, "CURRENT_USER_DEFAULT", {
|
|
3473
3842
|
enumerable: true,
|
|
3474
|
-
get: function () { return
|
|
3843
|
+
get: function () { return chunkKMNEQP3G_cjs.CURRENT_USER_DEFAULT; }
|
|
3475
3844
|
});
|
|
3476
3845
|
Object.defineProperty(exports, "ColumnSchema", {
|
|
3477
3846
|
enumerable: true,
|
|
3478
|
-
get: function () { return
|
|
3847
|
+
get: function () { return chunkKMNEQP3G_cjs.ColumnSchema; }
|
|
3479
3848
|
});
|
|
3480
3849
|
Object.defineProperty(exports, "ComponentSchema", {
|
|
3481
3850
|
enumerable: true,
|
|
3482
|
-
get: function () { return
|
|
3851
|
+
get: function () { return chunkKMNEQP3G_cjs.ComponentSchema; }
|
|
3852
|
+
});
|
|
3853
|
+
Object.defineProperty(exports, "ContactAddressAttributeMetaSchema", {
|
|
3854
|
+
enumerable: true,
|
|
3855
|
+
get: function () { return chunkKMNEQP3G_cjs.ContactAddressAttributeMetaSchema; }
|
|
3483
3856
|
});
|
|
3484
3857
|
Object.defineProperty(exports, "CurrencyAttributeMetaSchema", {
|
|
3485
3858
|
enumerable: true,
|
|
3486
|
-
get: function () { return
|
|
3859
|
+
get: function () { return chunkKMNEQP3G_cjs.CurrencyAttributeMetaSchema; }
|
|
3487
3860
|
});
|
|
3488
3861
|
Object.defineProperty(exports, "DEFAULT_PAGE_SIZE", {
|
|
3489
3862
|
enumerable: true,
|
|
3490
|
-
get: function () { return
|
|
3863
|
+
get: function () { return chunkKMNEQP3G_cjs.DEFAULT_PAGE_SIZE; }
|
|
3491
3864
|
});
|
|
3492
3865
|
Object.defineProperty(exports, "DONE", {
|
|
3493
3866
|
enumerable: true,
|
|
3494
|
-
get: function () { return
|
|
3867
|
+
get: function () { return chunkKMNEQP3G_cjs.DONE; }
|
|
3495
3868
|
});
|
|
3496
3869
|
Object.defineProperty(exports, "DesignReferenceSchema", {
|
|
3497
3870
|
enumerable: true,
|
|
3498
|
-
get: function () { return
|
|
3871
|
+
get: function () { return chunkKMNEQP3G_cjs.DesignReferenceSchema; }
|
|
3872
|
+
});
|
|
3873
|
+
Object.defineProperty(exports, "EntityContactBindingSchema", {
|
|
3874
|
+
enumerable: true,
|
|
3875
|
+
get: function () { return chunkKMNEQP3G_cjs.EntityContactBindingSchema; }
|
|
3499
3876
|
});
|
|
3500
3877
|
Object.defineProperty(exports, "EntityExtensionSchema", {
|
|
3501
3878
|
enumerable: true,
|
|
3502
|
-
get: function () { return
|
|
3879
|
+
get: function () { return chunkKMNEQP3G_cjs.EntityExtensionSchema; }
|
|
3503
3880
|
});
|
|
3504
3881
|
Object.defineProperty(exports, "EntitySchema", {
|
|
3505
3882
|
enumerable: true,
|
|
3506
|
-
get: function () { return
|
|
3883
|
+
get: function () { return chunkKMNEQP3G_cjs.EntitySchema; }
|
|
3507
3884
|
});
|
|
3508
3885
|
Object.defineProperty(exports, "EntityWithSchemaSchema", {
|
|
3509
3886
|
enumerable: true,
|
|
3510
|
-
get: function () { return
|
|
3887
|
+
get: function () { return chunkKMNEQP3G_cjs.EntityWithSchemaSchema; }
|
|
3511
3888
|
});
|
|
3512
3889
|
Object.defineProperty(exports, "ExtensionPositionSchema", {
|
|
3513
3890
|
enumerable: true,
|
|
3514
|
-
get: function () { return
|
|
3891
|
+
get: function () { return chunkKMNEQP3G_cjs.ExtensionPositionSchema; }
|
|
3515
3892
|
});
|
|
3516
3893
|
Object.defineProperty(exports, "FileRefSchema", {
|
|
3517
3894
|
enumerable: true,
|
|
3518
|
-
get: function () { return
|
|
3895
|
+
get: function () { return chunkKMNEQP3G_cjs.FileRefSchema; }
|
|
3519
3896
|
});
|
|
3520
3897
|
Object.defineProperty(exports, "FilterElementSchema", {
|
|
3521
3898
|
enumerable: true,
|
|
3522
|
-
get: function () { return
|
|
3899
|
+
get: function () { return chunkKMNEQP3G_cjs.FilterElementSchema; }
|
|
3523
3900
|
});
|
|
3524
3901
|
Object.defineProperty(exports, "FilterGroupSchema", {
|
|
3525
3902
|
enumerable: true,
|
|
3526
|
-
get: function () { return
|
|
3903
|
+
get: function () { return chunkKMNEQP3G_cjs.FilterGroupSchema; }
|
|
3527
3904
|
});
|
|
3528
3905
|
Object.defineProperty(exports, "ListExtensionColumnPlacementSchema", {
|
|
3529
3906
|
enumerable: true,
|
|
3530
|
-
get: function () { return
|
|
3907
|
+
get: function () { return chunkKMNEQP3G_cjs.ListExtensionColumnPlacementSchema; }
|
|
3531
3908
|
});
|
|
3532
3909
|
Object.defineProperty(exports, "ListExtensionSchema", {
|
|
3533
3910
|
enumerable: true,
|
|
3534
|
-
get: function () { return
|
|
3911
|
+
get: function () { return chunkKMNEQP3G_cjs.ListExtensionSchema; }
|
|
3535
3912
|
});
|
|
3536
3913
|
Object.defineProperty(exports, "ListSchema", {
|
|
3537
3914
|
enumerable: true,
|
|
3538
|
-
get: function () { return
|
|
3915
|
+
get: function () { return chunkKMNEQP3G_cjs.ListSchema; }
|
|
3539
3916
|
});
|
|
3540
3917
|
Object.defineProperty(exports, "ListViewSchema", {
|
|
3541
3918
|
enumerable: true,
|
|
3542
|
-
get: function () { return
|
|
3919
|
+
get: function () { return chunkKMNEQP3G_cjs.ListViewSchema; }
|
|
3543
3920
|
});
|
|
3544
3921
|
Object.defineProperty(exports, "MENU_CONFIGURATION_EXTENSION_ANCHOR_ITEMS", {
|
|
3545
3922
|
enumerable: true,
|
|
3546
|
-
get: function () { return
|
|
3923
|
+
get: function () { return chunkKMNEQP3G_cjs.MENU_CONFIGURATION_EXTENSION_ANCHOR_ITEMS; }
|
|
3547
3924
|
});
|
|
3548
3925
|
Object.defineProperty(exports, "MenuConfigurationExtensionPlacementSchema", {
|
|
3549
3926
|
enumerable: true,
|
|
3550
|
-
get: function () { return
|
|
3927
|
+
get: function () { return chunkKMNEQP3G_cjs.MenuConfigurationExtensionPlacementSchema; }
|
|
3551
3928
|
});
|
|
3552
3929
|
Object.defineProperty(exports, "MenuConfigurationExtensionPositionSchema", {
|
|
3553
3930
|
enumerable: true,
|
|
3554
|
-
get: function () { return
|
|
3931
|
+
get: function () { return chunkKMNEQP3G_cjs.MenuConfigurationExtensionPositionSchema; }
|
|
3555
3932
|
});
|
|
3556
3933
|
Object.defineProperty(exports, "MenuConfigurationExtensionSchema", {
|
|
3557
3934
|
enumerable: true,
|
|
3558
|
-
get: function () { return
|
|
3935
|
+
get: function () { return chunkKMNEQP3G_cjs.MenuConfigurationExtensionSchema; }
|
|
3559
3936
|
});
|
|
3560
3937
|
Object.defineProperty(exports, "MenuConfigurationSchema", {
|
|
3561
3938
|
enumerable: true,
|
|
3562
|
-
get: function () { return
|
|
3939
|
+
get: function () { return chunkKMNEQP3G_cjs.MenuConfigurationSchema; }
|
|
3563
3940
|
});
|
|
3564
3941
|
Object.defineProperty(exports, "MenuItemSchema", {
|
|
3565
3942
|
enumerable: true,
|
|
3566
|
-
get: function () { return
|
|
3943
|
+
get: function () { return chunkKMNEQP3G_cjs.MenuItemSchema; }
|
|
3567
3944
|
});
|
|
3568
3945
|
Object.defineProperty(exports, "MenuItemType", {
|
|
3569
3946
|
enumerable: true,
|
|
3570
|
-
get: function () { return
|
|
3947
|
+
get: function () { return chunkKMNEQP3G_cjs.MenuItemType; }
|
|
3571
3948
|
});
|
|
3572
3949
|
Object.defineProperty(exports, "MetaClient", {
|
|
3573
3950
|
enumerable: true,
|
|
3574
|
-
get: function () { return
|
|
3951
|
+
get: function () { return chunkKMNEQP3G_cjs.MetaClient; }
|
|
3575
3952
|
});
|
|
3576
3953
|
Object.defineProperty(exports, "ModuleSchema", {
|
|
3577
3954
|
enumerable: true,
|
|
3578
|
-
get: function () { return
|
|
3955
|
+
get: function () { return chunkKMNEQP3G_cjs.ModuleSchema; }
|
|
3579
3956
|
});
|
|
3580
3957
|
Object.defineProperty(exports, "OnDeleteActionSchema", {
|
|
3581
3958
|
enumerable: true,
|
|
3582
|
-
get: function () { return
|
|
3959
|
+
get: function () { return chunkKMNEQP3G_cjs.OnDeleteActionSchema; }
|
|
3583
3960
|
});
|
|
3584
3961
|
Object.defineProperty(exports, "PAGE_EXTENSION_ANCHOR_MAIN", {
|
|
3585
3962
|
enumerable: true,
|
|
3586
|
-
get: function () { return
|
|
3963
|
+
get: function () { return chunkKMNEQP3G_cjs.PAGE_EXTENSION_ANCHOR_MAIN; }
|
|
3587
3964
|
});
|
|
3588
3965
|
Object.defineProperty(exports, "PAGE_EXTENSION_ANCHOR_SIDE_PANEL", {
|
|
3589
3966
|
enumerable: true,
|
|
3590
|
-
get: function () { return
|
|
3967
|
+
get: function () { return chunkKMNEQP3G_cjs.PAGE_EXTENSION_ANCHOR_SIDE_PANEL; }
|
|
3591
3968
|
});
|
|
3592
3969
|
Object.defineProperty(exports, "PLATFORM_ATTRIBUTE_NAMES", {
|
|
3593
3970
|
enumerable: true,
|
|
3594
|
-
get: function () { return
|
|
3971
|
+
get: function () { return chunkKMNEQP3G_cjs.PLATFORM_ATTRIBUTE_NAMES; }
|
|
3595
3972
|
});
|
|
3596
3973
|
Object.defineProperty(exports, "PLATFORM_USER_ID", {
|
|
3597
3974
|
enumerable: true,
|
|
3598
|
-
get: function () { return
|
|
3975
|
+
get: function () { return chunkKMNEQP3G_cjs.PLATFORM_USER_ID; }
|
|
3599
3976
|
});
|
|
3600
3977
|
Object.defineProperty(exports, "PageActionSchema", {
|
|
3601
3978
|
enumerable: true,
|
|
3602
|
-
get: function () { return
|
|
3979
|
+
get: function () { return chunkKMNEQP3G_cjs.PageActionSchema; }
|
|
3603
3980
|
});
|
|
3604
3981
|
Object.defineProperty(exports, "PageExtensionPlacementSchema", {
|
|
3605
3982
|
enumerable: true,
|
|
3606
|
-
get: function () { return
|
|
3983
|
+
get: function () { return chunkKMNEQP3G_cjs.PageExtensionPlacementSchema; }
|
|
3607
3984
|
});
|
|
3608
3985
|
Object.defineProperty(exports, "PageExtensionSchema", {
|
|
3609
3986
|
enumerable: true,
|
|
3610
|
-
get: function () { return
|
|
3987
|
+
get: function () { return chunkKMNEQP3G_cjs.PageExtensionSchema; }
|
|
3611
3988
|
});
|
|
3612
3989
|
Object.defineProperty(exports, "PageIterator", {
|
|
3613
3990
|
enumerable: true,
|
|
3614
|
-
get: function () { return
|
|
3991
|
+
get: function () { return chunkKMNEQP3G_cjs.PageIterator; }
|
|
3615
3992
|
});
|
|
3616
3993
|
Object.defineProperty(exports, "PageLayoutSchema", {
|
|
3617
3994
|
enumerable: true,
|
|
3618
|
-
get: function () { return
|
|
3995
|
+
get: function () { return chunkKMNEQP3G_cjs.PageLayoutSchema; }
|
|
3619
3996
|
});
|
|
3620
3997
|
Object.defineProperty(exports, "PageSchema", {
|
|
3621
3998
|
enumerable: true,
|
|
3622
|
-
get: function () { return
|
|
3999
|
+
get: function () { return chunkKMNEQP3G_cjs.PageSchema; }
|
|
3623
4000
|
});
|
|
3624
4001
|
Object.defineProperty(exports, "RelationAttributeMetaSchema", {
|
|
3625
4002
|
enumerable: true,
|
|
3626
|
-
get: function () { return
|
|
4003
|
+
get: function () { return chunkKMNEQP3G_cjs.RelationAttributeMetaSchema; }
|
|
3627
4004
|
});
|
|
3628
4005
|
Object.defineProperty(exports, "ResponseMetaSchema", {
|
|
3629
4006
|
enumerable: true,
|
|
3630
|
-
get: function () { return
|
|
4007
|
+
get: function () { return chunkKMNEQP3G_cjs.ResponseMetaSchema; }
|
|
3631
4008
|
});
|
|
3632
4009
|
Object.defineProperty(exports, "SortConfigSchema", {
|
|
3633
4010
|
enumerable: true,
|
|
3634
|
-
get: function () { return
|
|
4011
|
+
get: function () { return chunkKMNEQP3G_cjs.SortConfigSchema; }
|
|
3635
4012
|
});
|
|
3636
4013
|
Object.defineProperty(exports, "UserRefSchema", {
|
|
3637
4014
|
enumerable: true,
|
|
3638
|
-
get: function () { return
|
|
4015
|
+
get: function () { return chunkKMNEQP3G_cjs.UserRefSchema; }
|
|
3639
4016
|
});
|
|
3640
4017
|
Object.defineProperty(exports, "VariableSchema", {
|
|
3641
4018
|
enumerable: true,
|
|
3642
|
-
get: function () { return
|
|
4019
|
+
get: function () { return chunkKMNEQP3G_cjs.VariableSchema; }
|
|
3643
4020
|
});
|
|
3644
4021
|
Object.defineProperty(exports, "acceptsCurrentUserDefault", {
|
|
3645
4022
|
enumerable: true,
|
|
3646
|
-
get: function () { return
|
|
4023
|
+
get: function () { return chunkKMNEQP3G_cjs.acceptsCurrentUserDefault; }
|
|
3647
4024
|
});
|
|
3648
4025
|
Object.defineProperty(exports, "allCurrencyCodes", {
|
|
3649
4026
|
enumerable: true,
|
|
3650
|
-
get: function () { return
|
|
4027
|
+
get: function () { return chunkKMNEQP3G_cjs.allCurrencyCodes; }
|
|
3651
4028
|
});
|
|
3652
4029
|
Object.defineProperty(exports, "createIterator", {
|
|
3653
4030
|
enumerable: true,
|
|
3654
|
-
get: function () { return
|
|
4031
|
+
get: function () { return chunkKMNEQP3G_cjs.createIterator; }
|
|
3655
4032
|
});
|
|
3656
4033
|
Object.defineProperty(exports, "createListResultSchema", {
|
|
3657
4034
|
enumerable: true,
|
|
3658
|
-
get: function () { return
|
|
4035
|
+
get: function () { return chunkKMNEQP3G_cjs.createListResultSchema; }
|
|
3659
4036
|
});
|
|
3660
4037
|
Object.defineProperty(exports, "currencyLabel", {
|
|
3661
4038
|
enumerable: true,
|
|
3662
|
-
get: function () { return
|
|
4039
|
+
get: function () { return chunkKMNEQP3G_cjs.currencyLabel; }
|
|
3663
4040
|
});
|
|
3664
4041
|
Object.defineProperty(exports, "currencySymbol", {
|
|
3665
4042
|
enumerable: true,
|
|
3666
|
-
get: function () { return
|
|
4043
|
+
get: function () { return chunkKMNEQP3G_cjs.currencySymbol; }
|
|
3667
4044
|
});
|
|
3668
4045
|
Object.defineProperty(exports, "currencySymbolSide", {
|
|
3669
4046
|
enumerable: true,
|
|
3670
|
-
get: function () { return
|
|
4047
|
+
get: function () { return chunkKMNEQP3G_cjs.currencySymbolSide; }
|
|
3671
4048
|
});
|
|
3672
4049
|
Object.defineProperty(exports, "formatAmount", {
|
|
3673
4050
|
enumerable: true,
|
|
3674
|
-
get: function () { return
|
|
4051
|
+
get: function () { return chunkKMNEQP3G_cjs.formatAmount; }
|
|
3675
4052
|
});
|
|
3676
4053
|
Object.defineProperty(exports, "formatMoney", {
|
|
3677
4054
|
enumerable: true,
|
|
3678
|
-
get: function () { return
|
|
4055
|
+
get: function () { return chunkKMNEQP3G_cjs.formatMoney; }
|
|
3679
4056
|
});
|
|
3680
4057
|
Object.defineProperty(exports, "isCurrentUserDefault", {
|
|
3681
4058
|
enumerable: true,
|
|
3682
|
-
get: function () { return
|
|
4059
|
+
get: function () { return chunkKMNEQP3G_cjs.isCurrentUserDefault; }
|
|
3683
4060
|
});
|
|
3684
4061
|
Object.defineProperty(exports, "isPlatformAttributeName", {
|
|
3685
4062
|
enumerable: true,
|
|
3686
|
-
get: function () { return
|
|
4063
|
+
get: function () { return chunkKMNEQP3G_cjs.isPlatformAttributeName; }
|
|
3687
4064
|
});
|
|
3688
4065
|
Object.defineProperty(exports, "localeNumberSeparators", {
|
|
3689
4066
|
enumerable: true,
|
|
3690
|
-
get: function () { return
|
|
4067
|
+
get: function () { return chunkKMNEQP3G_cjs.localeNumberSeparators; }
|
|
3691
4068
|
});
|
|
3692
4069
|
Object.defineProperty(exports, "parseAmount", {
|
|
3693
4070
|
enumerable: true,
|
|
3694
|
-
get: function () { return
|
|
4071
|
+
get: function () { return chunkKMNEQP3G_cjs.parseAmount; }
|
|
4072
|
+
});
|
|
4073
|
+
Object.defineProperty(exports, "parseContactAddressMeta", {
|
|
4074
|
+
enumerable: true,
|
|
4075
|
+
get: function () { return chunkKMNEQP3G_cjs.parseContactAddressMeta; }
|
|
3695
4076
|
});
|
|
3696
4077
|
Object.defineProperty(exports, "parseCurrencyMeta", {
|
|
3697
4078
|
enumerable: true,
|
|
3698
|
-
get: function () { return
|
|
4079
|
+
get: function () { return chunkKMNEQP3G_cjs.parseCurrencyMeta; }
|
|
3699
4080
|
});
|
|
3700
4081
|
Object.defineProperty(exports, "parseFileMeta", {
|
|
3701
4082
|
enumerable: true,
|
|
3702
|
-
get: function () { return
|
|
4083
|
+
get: function () { return chunkKMNEQP3G_cjs.parseFileMeta; }
|
|
3703
4084
|
});
|
|
3704
4085
|
Object.defineProperty(exports, "parseRelationMeta", {
|
|
3705
4086
|
enumerable: true,
|
|
3706
|
-
get: function () { return
|
|
4087
|
+
get: function () { return chunkKMNEQP3G_cjs.parseRelationMeta; }
|
|
3707
4088
|
});
|
|
3708
4089
|
Object.defineProperty(exports, "platformAttributes", {
|
|
3709
4090
|
enumerable: true,
|
|
3710
|
-
get: function () { return
|
|
4091
|
+
get: function () { return chunkKMNEQP3G_cjs.platformAttributes; }
|
|
3711
4092
|
});
|
|
3712
4093
|
exports.AccountClient = AccountClient;
|
|
3713
4094
|
exports.ActionSchema = ActionSchema;
|
|
@@ -3744,6 +4125,7 @@ exports.ProteosError = ProteosError;
|
|
|
3744
4125
|
exports.RoleEntityPermissionSchema = RoleEntityPermissionSchema;
|
|
3745
4126
|
exports.RoleSchema = RoleSchema;
|
|
3746
4127
|
exports.SCOPED_PLATFORM_ENTITY_SLUGS = SCOPED_PLATFORM_ENTITY_SLUGS;
|
|
4128
|
+
exports.SchedulingClient = SchedulingClient;
|
|
3747
4129
|
exports.StorageClient = StorageClient;
|
|
3748
4130
|
exports.UNASSIGNED_SPACE_SLUG = UNASSIGNED_SPACE_SLUG;
|
|
3749
4131
|
exports.UserProfileAssignmentSchema = UserProfileAssignmentSchema;
|