@proteos/sdk 0.51.0 → 0.52.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-IRFFXJMB.js → chunk-VKS2VX24.js} +289 -16
- package/dist/chunk-VKS2VX24.js.map +1 -0
- package/dist/{chunk-RKFXHDVU.cjs → chunk-WEEC4REL.cjs} +301 -15
- package/dist/chunk-WEEC4REL.cjs.map +1 -0
- package/dist/index.cjs +162 -102
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +107 -8
- package/dist/index.d.ts +107 -8
- package/dist/index.js +14 -2
- package/dist/index.js.map +1 -1
- package/dist/meta/index.cjs +111 -59
- 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-C9flkAj-.d.cts → types-DHhuGDpV.d.cts} +1200 -75
- package/dist/{types-C9flkAj-.d.ts → types-DHhuGDpV.d.ts} +1200 -75
- package/package.json +1 -1
- package/src/conversation/index.ts +39 -0
- package/src/conversation/types.ts +72 -1
- package/src/index.ts +41 -0
- package/src/meta/entity-extensions.ts +98 -0
- package/src/meta/index.ts +76 -0
- package/src/meta/layout/common-props.ts +8 -0
- package/src/meta/layout/elements.ts +15 -10
- package/src/meta/layout/index.ts +1 -0
- package/src/meta/list-extensions.ts +98 -0
- package/src/meta/menu-configuration-extensions.ts +132 -0
- package/src/meta/page-extensions.ts +98 -0
- package/src/meta/types.ts +398 -0
- package/dist/chunk-IRFFXJMB.js.map +0 -1
- package/dist/chunk-RKFXHDVU.cjs.map +0 -1
package/dist/index.cjs
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var chunkWEEC4REL_cjs = require('./chunk-WEEC4REL.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 chunkWEEC4REL_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 chunkWEEC4REL_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 chunkWEEC4REL_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 chunkWEEC4REL_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 chunkWEEC4REL_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 chunkWEEC4REL_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 chunkWEEC4REL_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 chunkWEEC4REL_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 chunkWEEC4REL_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 chunkWEEC4REL_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 chunkWEEC4REL_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 chunkWEEC4REL_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 chunkWEEC4REL_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 chunkWEEC4REL_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 chunkWEEC4REL_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 chunkWEEC4REL_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 chunkWEEC4REL_cjs.PageIterator((opts) => this.fetchRolesPage(userId, opts), options);
|
|
825
825
|
}
|
|
826
826
|
async assignRole(userId, request) {
|
|
827
827
|
return this.client.request(
|
|
@@ -974,28 +974,28 @@ var SCOPED_PLATFORM_ENTITY_SLUGS = ["knowledge-nodes"];
|
|
|
974
974
|
function isPlatformEntity(slug) {
|
|
975
975
|
return PLATFORM_ENTITY_SLUGS.includes(slug);
|
|
976
976
|
}
|
|
977
|
-
var RoleEntityPermissionSchema =
|
|
977
|
+
var RoleEntityPermissionSchema = chunkWEEC4REL_cjs.AuditFieldsSchema.extend({
|
|
978
978
|
id: zod.z.string(),
|
|
979
979
|
role_slug: zod.z.string(),
|
|
980
980
|
entity_slug: zod.z.string(),
|
|
981
981
|
permission: zod.z.enum(["read", "write", "delete", "read_scoped", "write_scoped", "delete_scoped"])
|
|
982
982
|
});
|
|
983
|
-
var UserRoleAssignmentSchema =
|
|
983
|
+
var UserRoleAssignmentSchema = chunkWEEC4REL_cjs.AuditFieldsSchema.extend({
|
|
984
984
|
id: zod.z.string(),
|
|
985
985
|
user_id: zod.z.string(),
|
|
986
986
|
role_slug: zod.z.string(),
|
|
987
987
|
org_id: zod.z.string()
|
|
988
988
|
});
|
|
989
|
-
var UserSchema =
|
|
989
|
+
var UserSchema = chunkWEEC4REL_cjs.AuditFieldsSchema.extend({
|
|
990
990
|
id: zod.z.string(),
|
|
991
991
|
email: zod.z.string(),
|
|
992
992
|
given_name: zod.z.string(),
|
|
993
993
|
family_name: zod.z.string(),
|
|
994
994
|
external_id: zod.z.string(),
|
|
995
995
|
default_org_id: zod.z.string(),
|
|
996
|
-
profile_image:
|
|
996
|
+
profile_image: chunkWEEC4REL_cjs.FileRefSchema.nullish()
|
|
997
997
|
});
|
|
998
|
-
|
|
998
|
+
chunkWEEC4REL_cjs.AuditFieldsSchema.extend({
|
|
999
999
|
id: zod.z.string(),
|
|
1000
1000
|
user_id: zod.z.string(),
|
|
1001
1001
|
org_id: zod.z.string(),
|
|
@@ -1005,7 +1005,7 @@ chunkRKFXHDVU_cjs.AuditFieldsSchema.extend({
|
|
|
1005
1005
|
expires_at: zod.z.string().nullable(),
|
|
1006
1006
|
last_used_at: zod.z.string().nullable()
|
|
1007
1007
|
});
|
|
1008
|
-
var ProfileSchema =
|
|
1008
|
+
var ProfileSchema = chunkWEEC4REL_cjs.AuditFieldsSchema.extend({
|
|
1009
1009
|
slug: zod.z.string(),
|
|
1010
1010
|
name: zod.z.string(),
|
|
1011
1011
|
org_id: zod.z.string(),
|
|
@@ -1014,32 +1014,32 @@ var ProfileSchema = chunkRKFXHDVU_cjs.AuditFieldsSchema.extend({
|
|
|
1014
1014
|
default_app_slug: zod.z.string(),
|
|
1015
1015
|
app_slugs: zod.z.array(zod.z.string())
|
|
1016
1016
|
});
|
|
1017
|
-
var UserProfileAssignmentSchema =
|
|
1017
|
+
var UserProfileAssignmentSchema = chunkWEEC4REL_cjs.AuditFieldsSchema.extend({
|
|
1018
1018
|
id: zod.z.string(),
|
|
1019
1019
|
user_id: zod.z.string(),
|
|
1020
1020
|
profile_slug: zod.z.string(),
|
|
1021
1021
|
org_id: zod.z.string()
|
|
1022
1022
|
});
|
|
1023
|
-
var RoleSchema =
|
|
1023
|
+
var RoleSchema = chunkWEEC4REL_cjs.AuditFieldsSchema.extend({
|
|
1024
1024
|
slug: zod.z.string(),
|
|
1025
1025
|
name: zod.z.string(),
|
|
1026
1026
|
org_id: zod.z.string(),
|
|
1027
1027
|
description: zod.z.string()
|
|
1028
1028
|
});
|
|
1029
|
-
|
|
1029
|
+
chunkWEEC4REL_cjs.AuditFieldsSchema.extend({
|
|
1030
1030
|
slug: zod.z.string(),
|
|
1031
1031
|
name: zod.z.string(),
|
|
1032
1032
|
org_id: zod.z.string(),
|
|
1033
1033
|
description: zod.z.string(),
|
|
1034
1034
|
parent_team_slug: zod.z.string()
|
|
1035
1035
|
});
|
|
1036
|
-
|
|
1036
|
+
chunkWEEC4REL_cjs.AuditFieldsSchema.extend({
|
|
1037
1037
|
id: zod.z.string(),
|
|
1038
1038
|
org_id: zod.z.string(),
|
|
1039
1039
|
team_slug: zod.z.string(),
|
|
1040
1040
|
user_id: zod.z.string()
|
|
1041
1041
|
});
|
|
1042
|
-
var OrganizationSchema =
|
|
1042
|
+
var OrganizationSchema = chunkWEEC4REL_cjs.AuditFieldsSchema.extend({
|
|
1043
1043
|
id: zod.z.string(),
|
|
1044
1044
|
name: zod.z.string(),
|
|
1045
1045
|
description: zod.z.string()
|
|
@@ -1048,7 +1048,7 @@ var SharePermissionSchema = zod.z.enum(["read", "write", "delete"]);
|
|
|
1048
1048
|
zod.z.object({
|
|
1049
1049
|
entity_slug: zod.z.string(),
|
|
1050
1050
|
record_id: zod.z.string(),
|
|
1051
|
-
principal:
|
|
1051
|
+
principal: chunkWEEC4REL_cjs.PrincipalRefSchema,
|
|
1052
1052
|
permission: SharePermissionSchema
|
|
1053
1053
|
});
|
|
1054
1054
|
|
|
@@ -2280,6 +2280,15 @@ var ToneProfileServiceImpl = class {
|
|
|
2280
2280
|
query
|
|
2281
2281
|
);
|
|
2282
2282
|
}
|
|
2283
|
+
upsertProfile(request) {
|
|
2284
|
+
return this.client.request("PUT", `${CONVERSATION_BASE_PATH}/tone-profiles`, request);
|
|
2285
|
+
}
|
|
2286
|
+
async deleteProfile(id) {
|
|
2287
|
+
await this.client.request(
|
|
2288
|
+
"DELETE",
|
|
2289
|
+
`${CONVERSATION_BASE_PATH}/tone-profiles/${encodeURIComponent(id)}`
|
|
2290
|
+
);
|
|
2291
|
+
}
|
|
2283
2292
|
};
|
|
2284
2293
|
var TranscriptionServiceImpl = class {
|
|
2285
2294
|
constructor(client) {
|
|
@@ -2289,6 +2298,9 @@ var TranscriptionServiceImpl = class {
|
|
|
2289
2298
|
createFromFile(request) {
|
|
2290
2299
|
return this.client.request("POST", `${CONVERSATION_BASE_PATH}/transcriptions`, request);
|
|
2291
2300
|
}
|
|
2301
|
+
createFromText(request) {
|
|
2302
|
+
return this.client.request("POST", `${CONVERSATION_BASE_PATH}/transcriptions`, request);
|
|
2303
|
+
}
|
|
2292
2304
|
list(query = {}) {
|
|
2293
2305
|
return this.client.requestWithQuery("GET", `${CONVERSATION_BASE_PATH}/transcriptions`, query);
|
|
2294
2306
|
}
|
|
@@ -2560,7 +2572,7 @@ var RecordServiceImpl = class {
|
|
|
2560
2572
|
}
|
|
2561
2573
|
client;
|
|
2562
2574
|
list(entitySlug, options = {}) {
|
|
2563
|
-
return new
|
|
2575
|
+
return new chunkWEEC4REL_cjs.PageIterator((opts) => this.listPage(entitySlug, opts), options);
|
|
2564
2576
|
}
|
|
2565
2577
|
async listPage(entitySlug, options = {}) {
|
|
2566
2578
|
return this.client.requestWithQuery(
|
|
@@ -2593,7 +2605,7 @@ var RecordServiceImpl = class {
|
|
|
2593
2605
|
);
|
|
2594
2606
|
}
|
|
2595
2607
|
listPublic(orgId, entitySlug, options = {}) {
|
|
2596
|
-
return new
|
|
2608
|
+
return new chunkWEEC4REL_cjs.PageIterator((opts) => this.listPublicPage(orgId, entitySlug, opts), options);
|
|
2597
2609
|
}
|
|
2598
2610
|
async listPublicPage(orgId, entitySlug, options = {}) {
|
|
2599
2611
|
return this.client.requestWithQuery(
|
|
@@ -2752,7 +2764,7 @@ var ActionServiceImpl = class {
|
|
|
2752
2764
|
}
|
|
2753
2765
|
client;
|
|
2754
2766
|
list(options = {}) {
|
|
2755
|
-
return new
|
|
2767
|
+
return new chunkWEEC4REL_cjs.PageIterator((opts) => this.listPage(opts), options);
|
|
2756
2768
|
}
|
|
2757
2769
|
async listPage(options = {}) {
|
|
2758
2770
|
return this.client.requestWithQuery("GET", ACTIONS_BASE_PATH, options);
|
|
@@ -2795,7 +2807,7 @@ var ActionServiceImpl = class {
|
|
|
2795
2807
|
}
|
|
2796
2808
|
};
|
|
2797
2809
|
var ActionScopeSchema = zod.z.enum(["entity", "entity_batch", "global"]);
|
|
2798
|
-
var ActionSchema =
|
|
2810
|
+
var ActionSchema = chunkWEEC4REL_cjs.AuditFieldsSchema.extend({
|
|
2799
2811
|
slug: zod.z.string(),
|
|
2800
2812
|
org_id: zod.z.string(),
|
|
2801
2813
|
module_slug: zod.z.string(),
|
|
@@ -2804,8 +2816,8 @@ var ActionSchema = chunkRKFXHDVU_cjs.AuditFieldsSchema.extend({
|
|
|
2804
2816
|
name: zod.z.string(),
|
|
2805
2817
|
is_active: zod.z.boolean(),
|
|
2806
2818
|
file_id: zod.z.string(),
|
|
2807
|
-
params: zod.z.array(
|
|
2808
|
-
returns: zod.z.array(
|
|
2819
|
+
params: zod.z.array(chunkWEEC4REL_cjs.AttributeSchema),
|
|
2820
|
+
returns: zod.z.array(chunkWEEC4REL_cjs.AttributeSchema)
|
|
2809
2821
|
});
|
|
2810
2822
|
|
|
2811
2823
|
// src/functions/index.ts
|
|
@@ -2843,7 +2855,7 @@ var LabelServiceImpl = class {
|
|
|
2843
2855
|
}
|
|
2844
2856
|
client;
|
|
2845
2857
|
list(options = {}) {
|
|
2846
|
-
return new
|
|
2858
|
+
return new chunkWEEC4REL_cjs.PageIterator((opts) => this.listPage(opts), options);
|
|
2847
2859
|
}
|
|
2848
2860
|
async listPage(options = {}) {
|
|
2849
2861
|
return this.client.requestWithQuery(
|
|
@@ -2874,7 +2886,7 @@ var LinkServiceImpl = class {
|
|
|
2874
2886
|
}
|
|
2875
2887
|
client;
|
|
2876
2888
|
list(options = {}) {
|
|
2877
|
-
return new
|
|
2889
|
+
return new chunkWEEC4REL_cjs.PageIterator((opts) => this.listPage(opts), options);
|
|
2878
2890
|
}
|
|
2879
2891
|
async listPage(options = {}) {
|
|
2880
2892
|
return this.client.requestWithQuery("GET", LINKS_BASE_PATH, options);
|
|
@@ -2901,7 +2913,7 @@ var NodeServiceImpl = class {
|
|
|
2901
2913
|
}
|
|
2902
2914
|
client;
|
|
2903
2915
|
list(options = {}) {
|
|
2904
|
-
return new
|
|
2916
|
+
return new chunkWEEC4REL_cjs.PageIterator((opts) => this.listPage(opts), options);
|
|
2905
2917
|
}
|
|
2906
2918
|
async listPage(options = {}) {
|
|
2907
2919
|
const { label_ids, space_slugs, ...rest } = options;
|
|
@@ -2998,7 +3010,7 @@ var SpaceServiceImpl = class {
|
|
|
2998
3010
|
}
|
|
2999
3011
|
client;
|
|
3000
3012
|
list(options = {}) {
|
|
3001
|
-
return new
|
|
3013
|
+
return new chunkWEEC4REL_cjs.PageIterator((opts) => this.listPage(opts), options);
|
|
3002
3014
|
}
|
|
3003
3015
|
async listPage(options = {}) {
|
|
3004
3016
|
return this.client.requestWithQuery(
|
|
@@ -3029,7 +3041,7 @@ var RecordLinkServiceImpl = class {
|
|
|
3029
3041
|
}
|
|
3030
3042
|
client;
|
|
3031
3043
|
list(options = {}) {
|
|
3032
|
-
return new
|
|
3044
|
+
return new chunkWEEC4REL_cjs.PageIterator((opts) => this.listPage(opts), options);
|
|
3033
3045
|
}
|
|
3034
3046
|
async listPage(options = {}) {
|
|
3035
3047
|
return this.client.requestWithQuery(
|
|
@@ -3062,7 +3074,7 @@ var KnowledgeNodeMetadataSchema = zod.z.object({
|
|
|
3062
3074
|
summary: zod.z.string().nullish(),
|
|
3063
3075
|
valid_from: zod.z.string().nullish(),
|
|
3064
3076
|
valid_until: zod.z.string().nullish()
|
|
3065
|
-
}).merge(
|
|
3077
|
+
}).merge(chunkWEEC4REL_cjs.AuditFieldsSchema);
|
|
3066
3078
|
var KnowledgeNodeSchema = KnowledgeNodeMetadataSchema.extend({
|
|
3067
3079
|
content: zod.z.string()
|
|
3068
3080
|
});
|
|
@@ -3086,7 +3098,7 @@ var KnowledgeLinkSchema = zod.z.object({
|
|
|
3086
3098
|
"superseded_by"
|
|
3087
3099
|
]),
|
|
3088
3100
|
description: zod.z.string().nullish()
|
|
3089
|
-
}).merge(
|
|
3101
|
+
}).merge(chunkWEEC4REL_cjs.AuditFieldsSchema);
|
|
3090
3102
|
var KnowledgeRecordLinkSchema = zod.z.object({
|
|
3091
3103
|
id: zod.z.string(),
|
|
3092
3104
|
org_id: zod.z.string(),
|
|
@@ -3094,7 +3106,7 @@ var KnowledgeRecordLinkSchema = zod.z.object({
|
|
|
3094
3106
|
entity_slug: zod.z.string(),
|
|
3095
3107
|
record_id: zod.z.string(),
|
|
3096
3108
|
created_at: zod.z.string(),
|
|
3097
|
-
created_by:
|
|
3109
|
+
created_by: chunkWEEC4REL_cjs.UserRefSchema
|
|
3098
3110
|
});
|
|
3099
3111
|
var KnowledgeLabelSchema = zod.z.object({
|
|
3100
3112
|
id: zod.z.string(),
|
|
@@ -3104,13 +3116,13 @@ var KnowledgeLabelSchema = zod.z.object({
|
|
|
3104
3116
|
description: zod.z.string().nullish(),
|
|
3105
3117
|
color: zod.z.string().nullish(),
|
|
3106
3118
|
icon: zod.z.string().nullish()
|
|
3107
|
-
}).merge(
|
|
3119
|
+
}).merge(chunkWEEC4REL_cjs.AuditFieldsSchema);
|
|
3108
3120
|
var KnowledgeNodeLabelSchema = zod.z.object({
|
|
3109
3121
|
org_id: zod.z.string(),
|
|
3110
3122
|
node_id: zod.z.string(),
|
|
3111
3123
|
label_id: zod.z.string(),
|
|
3112
3124
|
created_at: zod.z.string(),
|
|
3113
|
-
created_by:
|
|
3125
|
+
created_by: chunkWEEC4REL_cjs.UserRefSchema
|
|
3114
3126
|
});
|
|
3115
3127
|
var NodeNeighborhoodSchema = zod.z.object({
|
|
3116
3128
|
nodes: zod.z.array(
|
|
@@ -3297,7 +3309,7 @@ var ExecutionServiceImpl = class {
|
|
|
3297
3309
|
}
|
|
3298
3310
|
client;
|
|
3299
3311
|
list(options = {}) {
|
|
3300
|
-
return new
|
|
3312
|
+
return new chunkWEEC4REL_cjs.PageIterator((opts) => this.listPage(opts), options);
|
|
3301
3313
|
}
|
|
3302
3314
|
async listPage(options = {}) {
|
|
3303
3315
|
return this.client.requestWithQuery(
|
|
@@ -3356,7 +3368,7 @@ var WorkflowServiceImpl = class {
|
|
|
3356
3368
|
}
|
|
3357
3369
|
client;
|
|
3358
3370
|
list(options = {}) {
|
|
3359
|
-
return new
|
|
3371
|
+
return new chunkWEEC4REL_cjs.PageIterator((opts) => this.listPage(opts), options);
|
|
3360
3372
|
}
|
|
3361
3373
|
async listPage(options = {}) {
|
|
3362
3374
|
return this.client.requestWithQuery("GET", WORKFLOWS_BASE_PATH2, options);
|
|
@@ -3394,7 +3406,7 @@ var WorkflowServiceImpl = class {
|
|
|
3394
3406
|
return this.client.request("POST", `${WORKFLOWS_BASE_PATH2}/${key}/unpause`, {});
|
|
3395
3407
|
}
|
|
3396
3408
|
listVersions(key, options = {}) {
|
|
3397
|
-
return new
|
|
3409
|
+
return new chunkWEEC4REL_cjs.PageIterator((opts) => this.listVersionsPage(key, opts), options);
|
|
3398
3410
|
}
|
|
3399
3411
|
async listVersionsPage(key, options = {}) {
|
|
3400
3412
|
return this.client.requestWithQuery(
|
|
@@ -3439,215 +3451,263 @@ var WorkflowClient = class {
|
|
|
3439
3451
|
|
|
3440
3452
|
Object.defineProperty(exports, "AppConfigurationSchema", {
|
|
3441
3453
|
enumerable: true,
|
|
3442
|
-
get: function () { return
|
|
3454
|
+
get: function () { return chunkWEEC4REL_cjs.AppConfigurationSchema; }
|
|
3443
3455
|
});
|
|
3444
3456
|
Object.defineProperty(exports, "AppHomeSchema", {
|
|
3445
3457
|
enumerable: true,
|
|
3446
|
-
get: function () { return
|
|
3458
|
+
get: function () { return chunkWEEC4REL_cjs.AppHomeSchema; }
|
|
3447
3459
|
});
|
|
3448
3460
|
Object.defineProperty(exports, "AppSchema", {
|
|
3449
3461
|
enumerable: true,
|
|
3450
|
-
get: function () { return
|
|
3462
|
+
get: function () { return chunkWEEC4REL_cjs.AppSchema; }
|
|
3451
3463
|
});
|
|
3452
3464
|
Object.defineProperty(exports, "AttributeSchema", {
|
|
3453
3465
|
enumerable: true,
|
|
3454
|
-
get: function () { return
|
|
3466
|
+
get: function () { return chunkWEEC4REL_cjs.AttributeSchema; }
|
|
3455
3467
|
});
|
|
3456
3468
|
Object.defineProperty(exports, "AuditFieldsSchema", {
|
|
3457
3469
|
enumerable: true,
|
|
3458
|
-
get: function () { return
|
|
3470
|
+
get: function () { return chunkWEEC4REL_cjs.AuditFieldsSchema; }
|
|
3459
3471
|
});
|
|
3460
3472
|
Object.defineProperty(exports, "CURRENT_USER_DEFAULT", {
|
|
3461
3473
|
enumerable: true,
|
|
3462
|
-
get: function () { return
|
|
3474
|
+
get: function () { return chunkWEEC4REL_cjs.CURRENT_USER_DEFAULT; }
|
|
3463
3475
|
});
|
|
3464
3476
|
Object.defineProperty(exports, "ColumnSchema", {
|
|
3465
3477
|
enumerable: true,
|
|
3466
|
-
get: function () { return
|
|
3478
|
+
get: function () { return chunkWEEC4REL_cjs.ColumnSchema; }
|
|
3467
3479
|
});
|
|
3468
3480
|
Object.defineProperty(exports, "ComponentSchema", {
|
|
3469
3481
|
enumerable: true,
|
|
3470
|
-
get: function () { return
|
|
3482
|
+
get: function () { return chunkWEEC4REL_cjs.ComponentSchema; }
|
|
3471
3483
|
});
|
|
3472
3484
|
Object.defineProperty(exports, "CurrencyAttributeMetaSchema", {
|
|
3473
3485
|
enumerable: true,
|
|
3474
|
-
get: function () { return
|
|
3486
|
+
get: function () { return chunkWEEC4REL_cjs.CurrencyAttributeMetaSchema; }
|
|
3475
3487
|
});
|
|
3476
3488
|
Object.defineProperty(exports, "DEFAULT_PAGE_SIZE", {
|
|
3477
3489
|
enumerable: true,
|
|
3478
|
-
get: function () { return
|
|
3490
|
+
get: function () { return chunkWEEC4REL_cjs.DEFAULT_PAGE_SIZE; }
|
|
3479
3491
|
});
|
|
3480
3492
|
Object.defineProperty(exports, "DONE", {
|
|
3481
3493
|
enumerable: true,
|
|
3482
|
-
get: function () { return
|
|
3494
|
+
get: function () { return chunkWEEC4REL_cjs.DONE; }
|
|
3483
3495
|
});
|
|
3484
3496
|
Object.defineProperty(exports, "DesignReferenceSchema", {
|
|
3485
3497
|
enumerable: true,
|
|
3486
|
-
get: function () { return
|
|
3498
|
+
get: function () { return chunkWEEC4REL_cjs.DesignReferenceSchema; }
|
|
3499
|
+
});
|
|
3500
|
+
Object.defineProperty(exports, "EntityExtensionSchema", {
|
|
3501
|
+
enumerable: true,
|
|
3502
|
+
get: function () { return chunkWEEC4REL_cjs.EntityExtensionSchema; }
|
|
3487
3503
|
});
|
|
3488
3504
|
Object.defineProperty(exports, "EntitySchema", {
|
|
3489
3505
|
enumerable: true,
|
|
3490
|
-
get: function () { return
|
|
3506
|
+
get: function () { return chunkWEEC4REL_cjs.EntitySchema; }
|
|
3491
3507
|
});
|
|
3492
3508
|
Object.defineProperty(exports, "EntityWithSchemaSchema", {
|
|
3493
3509
|
enumerable: true,
|
|
3494
|
-
get: function () { return
|
|
3510
|
+
get: function () { return chunkWEEC4REL_cjs.EntityWithSchemaSchema; }
|
|
3511
|
+
});
|
|
3512
|
+
Object.defineProperty(exports, "ExtensionPositionSchema", {
|
|
3513
|
+
enumerable: true,
|
|
3514
|
+
get: function () { return chunkWEEC4REL_cjs.ExtensionPositionSchema; }
|
|
3495
3515
|
});
|
|
3496
3516
|
Object.defineProperty(exports, "FileRefSchema", {
|
|
3497
3517
|
enumerable: true,
|
|
3498
|
-
get: function () { return
|
|
3518
|
+
get: function () { return chunkWEEC4REL_cjs.FileRefSchema; }
|
|
3499
3519
|
});
|
|
3500
3520
|
Object.defineProperty(exports, "FilterElementSchema", {
|
|
3501
3521
|
enumerable: true,
|
|
3502
|
-
get: function () { return
|
|
3522
|
+
get: function () { return chunkWEEC4REL_cjs.FilterElementSchema; }
|
|
3503
3523
|
});
|
|
3504
3524
|
Object.defineProperty(exports, "FilterGroupSchema", {
|
|
3505
3525
|
enumerable: true,
|
|
3506
|
-
get: function () { return
|
|
3526
|
+
get: function () { return chunkWEEC4REL_cjs.FilterGroupSchema; }
|
|
3527
|
+
});
|
|
3528
|
+
Object.defineProperty(exports, "ListExtensionColumnPlacementSchema", {
|
|
3529
|
+
enumerable: true,
|
|
3530
|
+
get: function () { return chunkWEEC4REL_cjs.ListExtensionColumnPlacementSchema; }
|
|
3531
|
+
});
|
|
3532
|
+
Object.defineProperty(exports, "ListExtensionSchema", {
|
|
3533
|
+
enumerable: true,
|
|
3534
|
+
get: function () { return chunkWEEC4REL_cjs.ListExtensionSchema; }
|
|
3507
3535
|
});
|
|
3508
3536
|
Object.defineProperty(exports, "ListSchema", {
|
|
3509
3537
|
enumerable: true,
|
|
3510
|
-
get: function () { return
|
|
3538
|
+
get: function () { return chunkWEEC4REL_cjs.ListSchema; }
|
|
3511
3539
|
});
|
|
3512
3540
|
Object.defineProperty(exports, "ListViewSchema", {
|
|
3513
3541
|
enumerable: true,
|
|
3514
|
-
get: function () { return
|
|
3542
|
+
get: function () { return chunkWEEC4REL_cjs.ListViewSchema; }
|
|
3543
|
+
});
|
|
3544
|
+
Object.defineProperty(exports, "MENU_CONFIGURATION_EXTENSION_ANCHOR_ITEMS", {
|
|
3545
|
+
enumerable: true,
|
|
3546
|
+
get: function () { return chunkWEEC4REL_cjs.MENU_CONFIGURATION_EXTENSION_ANCHOR_ITEMS; }
|
|
3547
|
+
});
|
|
3548
|
+
Object.defineProperty(exports, "MenuConfigurationExtensionPlacementSchema", {
|
|
3549
|
+
enumerable: true,
|
|
3550
|
+
get: function () { return chunkWEEC4REL_cjs.MenuConfigurationExtensionPlacementSchema; }
|
|
3551
|
+
});
|
|
3552
|
+
Object.defineProperty(exports, "MenuConfigurationExtensionPositionSchema", {
|
|
3553
|
+
enumerable: true,
|
|
3554
|
+
get: function () { return chunkWEEC4REL_cjs.MenuConfigurationExtensionPositionSchema; }
|
|
3555
|
+
});
|
|
3556
|
+
Object.defineProperty(exports, "MenuConfigurationExtensionSchema", {
|
|
3557
|
+
enumerable: true,
|
|
3558
|
+
get: function () { return chunkWEEC4REL_cjs.MenuConfigurationExtensionSchema; }
|
|
3515
3559
|
});
|
|
3516
3560
|
Object.defineProperty(exports, "MenuConfigurationSchema", {
|
|
3517
3561
|
enumerable: true,
|
|
3518
|
-
get: function () { return
|
|
3562
|
+
get: function () { return chunkWEEC4REL_cjs.MenuConfigurationSchema; }
|
|
3519
3563
|
});
|
|
3520
3564
|
Object.defineProperty(exports, "MenuItemSchema", {
|
|
3521
3565
|
enumerable: true,
|
|
3522
|
-
get: function () { return
|
|
3566
|
+
get: function () { return chunkWEEC4REL_cjs.MenuItemSchema; }
|
|
3523
3567
|
});
|
|
3524
3568
|
Object.defineProperty(exports, "MenuItemType", {
|
|
3525
3569
|
enumerable: true,
|
|
3526
|
-
get: function () { return
|
|
3570
|
+
get: function () { return chunkWEEC4REL_cjs.MenuItemType; }
|
|
3527
3571
|
});
|
|
3528
3572
|
Object.defineProperty(exports, "MetaClient", {
|
|
3529
3573
|
enumerable: true,
|
|
3530
|
-
get: function () { return
|
|
3574
|
+
get: function () { return chunkWEEC4REL_cjs.MetaClient; }
|
|
3531
3575
|
});
|
|
3532
3576
|
Object.defineProperty(exports, "ModuleSchema", {
|
|
3533
3577
|
enumerable: true,
|
|
3534
|
-
get: function () { return
|
|
3578
|
+
get: function () { return chunkWEEC4REL_cjs.ModuleSchema; }
|
|
3535
3579
|
});
|
|
3536
3580
|
Object.defineProperty(exports, "OnDeleteActionSchema", {
|
|
3537
3581
|
enumerable: true,
|
|
3538
|
-
get: function () { return
|
|
3582
|
+
get: function () { return chunkWEEC4REL_cjs.OnDeleteActionSchema; }
|
|
3583
|
+
});
|
|
3584
|
+
Object.defineProperty(exports, "PAGE_EXTENSION_ANCHOR_MAIN", {
|
|
3585
|
+
enumerable: true,
|
|
3586
|
+
get: function () { return chunkWEEC4REL_cjs.PAGE_EXTENSION_ANCHOR_MAIN; }
|
|
3587
|
+
});
|
|
3588
|
+
Object.defineProperty(exports, "PAGE_EXTENSION_ANCHOR_SIDE_PANEL", {
|
|
3589
|
+
enumerable: true,
|
|
3590
|
+
get: function () { return chunkWEEC4REL_cjs.PAGE_EXTENSION_ANCHOR_SIDE_PANEL; }
|
|
3539
3591
|
});
|
|
3540
3592
|
Object.defineProperty(exports, "PLATFORM_ATTRIBUTE_NAMES", {
|
|
3541
3593
|
enumerable: true,
|
|
3542
|
-
get: function () { return
|
|
3594
|
+
get: function () { return chunkWEEC4REL_cjs.PLATFORM_ATTRIBUTE_NAMES; }
|
|
3543
3595
|
});
|
|
3544
3596
|
Object.defineProperty(exports, "PLATFORM_USER_ID", {
|
|
3545
3597
|
enumerable: true,
|
|
3546
|
-
get: function () { return
|
|
3598
|
+
get: function () { return chunkWEEC4REL_cjs.PLATFORM_USER_ID; }
|
|
3547
3599
|
});
|
|
3548
3600
|
Object.defineProperty(exports, "PageActionSchema", {
|
|
3549
3601
|
enumerable: true,
|
|
3550
|
-
get: function () { return
|
|
3602
|
+
get: function () { return chunkWEEC4REL_cjs.PageActionSchema; }
|
|
3603
|
+
});
|
|
3604
|
+
Object.defineProperty(exports, "PageExtensionPlacementSchema", {
|
|
3605
|
+
enumerable: true,
|
|
3606
|
+
get: function () { return chunkWEEC4REL_cjs.PageExtensionPlacementSchema; }
|
|
3607
|
+
});
|
|
3608
|
+
Object.defineProperty(exports, "PageExtensionSchema", {
|
|
3609
|
+
enumerable: true,
|
|
3610
|
+
get: function () { return chunkWEEC4REL_cjs.PageExtensionSchema; }
|
|
3551
3611
|
});
|
|
3552
3612
|
Object.defineProperty(exports, "PageIterator", {
|
|
3553
3613
|
enumerable: true,
|
|
3554
|
-
get: function () { return
|
|
3614
|
+
get: function () { return chunkWEEC4REL_cjs.PageIterator; }
|
|
3555
3615
|
});
|
|
3556
3616
|
Object.defineProperty(exports, "PageLayoutSchema", {
|
|
3557
3617
|
enumerable: true,
|
|
3558
|
-
get: function () { return
|
|
3618
|
+
get: function () { return chunkWEEC4REL_cjs.PageLayoutSchema; }
|
|
3559
3619
|
});
|
|
3560
3620
|
Object.defineProperty(exports, "PageSchema", {
|
|
3561
3621
|
enumerable: true,
|
|
3562
|
-
get: function () { return
|
|
3622
|
+
get: function () { return chunkWEEC4REL_cjs.PageSchema; }
|
|
3563
3623
|
});
|
|
3564
3624
|
Object.defineProperty(exports, "RelationAttributeMetaSchema", {
|
|
3565
3625
|
enumerable: true,
|
|
3566
|
-
get: function () { return
|
|
3626
|
+
get: function () { return chunkWEEC4REL_cjs.RelationAttributeMetaSchema; }
|
|
3567
3627
|
});
|
|
3568
3628
|
Object.defineProperty(exports, "ResponseMetaSchema", {
|
|
3569
3629
|
enumerable: true,
|
|
3570
|
-
get: function () { return
|
|
3630
|
+
get: function () { return chunkWEEC4REL_cjs.ResponseMetaSchema; }
|
|
3571
3631
|
});
|
|
3572
3632
|
Object.defineProperty(exports, "SortConfigSchema", {
|
|
3573
3633
|
enumerable: true,
|
|
3574
|
-
get: function () { return
|
|
3634
|
+
get: function () { return chunkWEEC4REL_cjs.SortConfigSchema; }
|
|
3575
3635
|
});
|
|
3576
3636
|
Object.defineProperty(exports, "UserRefSchema", {
|
|
3577
3637
|
enumerable: true,
|
|
3578
|
-
get: function () { return
|
|
3638
|
+
get: function () { return chunkWEEC4REL_cjs.UserRefSchema; }
|
|
3579
3639
|
});
|
|
3580
3640
|
Object.defineProperty(exports, "VariableSchema", {
|
|
3581
3641
|
enumerable: true,
|
|
3582
|
-
get: function () { return
|
|
3642
|
+
get: function () { return chunkWEEC4REL_cjs.VariableSchema; }
|
|
3583
3643
|
});
|
|
3584
3644
|
Object.defineProperty(exports, "acceptsCurrentUserDefault", {
|
|
3585
3645
|
enumerable: true,
|
|
3586
|
-
get: function () { return
|
|
3646
|
+
get: function () { return chunkWEEC4REL_cjs.acceptsCurrentUserDefault; }
|
|
3587
3647
|
});
|
|
3588
3648
|
Object.defineProperty(exports, "allCurrencyCodes", {
|
|
3589
3649
|
enumerable: true,
|
|
3590
|
-
get: function () { return
|
|
3650
|
+
get: function () { return chunkWEEC4REL_cjs.allCurrencyCodes; }
|
|
3591
3651
|
});
|
|
3592
3652
|
Object.defineProperty(exports, "createIterator", {
|
|
3593
3653
|
enumerable: true,
|
|
3594
|
-
get: function () { return
|
|
3654
|
+
get: function () { return chunkWEEC4REL_cjs.createIterator; }
|
|
3595
3655
|
});
|
|
3596
3656
|
Object.defineProperty(exports, "createListResultSchema", {
|
|
3597
3657
|
enumerable: true,
|
|
3598
|
-
get: function () { return
|
|
3658
|
+
get: function () { return chunkWEEC4REL_cjs.createListResultSchema; }
|
|
3599
3659
|
});
|
|
3600
3660
|
Object.defineProperty(exports, "currencyLabel", {
|
|
3601
3661
|
enumerable: true,
|
|
3602
|
-
get: function () { return
|
|
3662
|
+
get: function () { return chunkWEEC4REL_cjs.currencyLabel; }
|
|
3603
3663
|
});
|
|
3604
3664
|
Object.defineProperty(exports, "currencySymbol", {
|
|
3605
3665
|
enumerable: true,
|
|
3606
|
-
get: function () { return
|
|
3666
|
+
get: function () { return chunkWEEC4REL_cjs.currencySymbol; }
|
|
3607
3667
|
});
|
|
3608
3668
|
Object.defineProperty(exports, "currencySymbolSide", {
|
|
3609
3669
|
enumerable: true,
|
|
3610
|
-
get: function () { return
|
|
3670
|
+
get: function () { return chunkWEEC4REL_cjs.currencySymbolSide; }
|
|
3611
3671
|
});
|
|
3612
3672
|
Object.defineProperty(exports, "formatAmount", {
|
|
3613
3673
|
enumerable: true,
|
|
3614
|
-
get: function () { return
|
|
3674
|
+
get: function () { return chunkWEEC4REL_cjs.formatAmount; }
|
|
3615
3675
|
});
|
|
3616
3676
|
Object.defineProperty(exports, "formatMoney", {
|
|
3617
3677
|
enumerable: true,
|
|
3618
|
-
get: function () { return
|
|
3678
|
+
get: function () { return chunkWEEC4REL_cjs.formatMoney; }
|
|
3619
3679
|
});
|
|
3620
3680
|
Object.defineProperty(exports, "isCurrentUserDefault", {
|
|
3621
3681
|
enumerable: true,
|
|
3622
|
-
get: function () { return
|
|
3682
|
+
get: function () { return chunkWEEC4REL_cjs.isCurrentUserDefault; }
|
|
3623
3683
|
});
|
|
3624
3684
|
Object.defineProperty(exports, "isPlatformAttributeName", {
|
|
3625
3685
|
enumerable: true,
|
|
3626
|
-
get: function () { return
|
|
3686
|
+
get: function () { return chunkWEEC4REL_cjs.isPlatformAttributeName; }
|
|
3627
3687
|
});
|
|
3628
3688
|
Object.defineProperty(exports, "localeNumberSeparators", {
|
|
3629
3689
|
enumerable: true,
|
|
3630
|
-
get: function () { return
|
|
3690
|
+
get: function () { return chunkWEEC4REL_cjs.localeNumberSeparators; }
|
|
3631
3691
|
});
|
|
3632
3692
|
Object.defineProperty(exports, "parseAmount", {
|
|
3633
3693
|
enumerable: true,
|
|
3634
|
-
get: function () { return
|
|
3694
|
+
get: function () { return chunkWEEC4REL_cjs.parseAmount; }
|
|
3635
3695
|
});
|
|
3636
3696
|
Object.defineProperty(exports, "parseCurrencyMeta", {
|
|
3637
3697
|
enumerable: true,
|
|
3638
|
-
get: function () { return
|
|
3698
|
+
get: function () { return chunkWEEC4REL_cjs.parseCurrencyMeta; }
|
|
3639
3699
|
});
|
|
3640
3700
|
Object.defineProperty(exports, "parseFileMeta", {
|
|
3641
3701
|
enumerable: true,
|
|
3642
|
-
get: function () { return
|
|
3702
|
+
get: function () { return chunkWEEC4REL_cjs.parseFileMeta; }
|
|
3643
3703
|
});
|
|
3644
3704
|
Object.defineProperty(exports, "parseRelationMeta", {
|
|
3645
3705
|
enumerable: true,
|
|
3646
|
-
get: function () { return
|
|
3706
|
+
get: function () { return chunkWEEC4REL_cjs.parseRelationMeta; }
|
|
3647
3707
|
});
|
|
3648
3708
|
Object.defineProperty(exports, "platformAttributes", {
|
|
3649
3709
|
enumerable: true,
|
|
3650
|
-
get: function () { return
|
|
3710
|
+
get: function () { return chunkWEEC4REL_cjs.platformAttributes; }
|
|
3651
3711
|
});
|
|
3652
3712
|
exports.AccountClient = AccountClient;
|
|
3653
3713
|
exports.ActionSchema = ActionSchema;
|