@proteos/sdk 0.51.1 → 0.53.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-HEUXXELG.js} +311 -17
- package/dist/chunk-HEUXXELG.js.map +1 -0
- package/dist/{chunk-RKFXHDVU.cjs → chunk-SWCPI6SL.cjs} +326 -16
- package/dist/chunk-SWCPI6SL.cjs.map +1 -0
- package/dist/index.cjs +209 -102
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +213 -12
- package/dist/index.d.ts +213 -12
- package/dist/index.js +49 -2
- package/dist/index.js.map +1 -1
- package/dist/meta/index.cjs +123 -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-D5P6yk1L.d.cts} +1288 -69
- package/dist/{types-C9flkAj-.d.ts → types-D5P6yk1L.d.ts} +1288 -69
- package/package.json +3 -3
- package/src/conversation/index.ts +39 -0
- package/src/conversation/types.ts +108 -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 +60 -1
- package/src/meta/entity-extensions.ts +98 -0
- package/src/meta/index.ts +84 -1
- package/src/meta/layout/common-props.ts +8 -0
- package/src/meta/layout/control-registry.json +10 -2
- 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 +470 -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 chunkSWCPI6SL_cjs = require('./chunk-SWCPI6SL.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 chunkSWCPI6SL_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 chunkSWCPI6SL_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 chunkSWCPI6SL_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 chunkSWCPI6SL_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 chunkSWCPI6SL_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 chunkSWCPI6SL_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 chunkSWCPI6SL_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 chunkSWCPI6SL_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 chunkSWCPI6SL_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 chunkSWCPI6SL_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 chunkSWCPI6SL_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 chunkSWCPI6SL_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 chunkSWCPI6SL_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 chunkSWCPI6SL_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 chunkSWCPI6SL_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 chunkSWCPI6SL_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 chunkSWCPI6SL_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 = chunkSWCPI6SL_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 = chunkSWCPI6SL_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 = chunkSWCPI6SL_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: chunkSWCPI6SL_cjs.FileRefSchema.nullish()
|
|
997
997
|
});
|
|
998
|
-
|
|
998
|
+
chunkSWCPI6SL_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 = chunkSWCPI6SL_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 = chunkSWCPI6SL_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 = chunkSWCPI6SL_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
|
+
chunkSWCPI6SL_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
|
+
chunkSWCPI6SL_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 = chunkSWCPI6SL_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: chunkSWCPI6SL_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 chunkSWCPI6SL_cjs.PageIterator((opts) => this.listPage(entitySlug, opts), options);
|
|
2564
2576
|
}
|
|
2565
2577
|
async listPage(entitySlug, options = {}) {
|
|
2566
2578
|
return this.client.requestWithQuery(
|
|
@@ -2592,8 +2604,15 @@ var RecordServiceImpl = class {
|
|
|
2592
2604
|
transactions
|
|
2593
2605
|
);
|
|
2594
2606
|
}
|
|
2607
|
+
async publishContactObservations(entitySlug, options = {}) {
|
|
2608
|
+
return this.client.requestWithQuery(
|
|
2609
|
+
"POST",
|
|
2610
|
+
`${RECORDS_BASE_PATH}/${entitySlug}/contact-observations`,
|
|
2611
|
+
options
|
|
2612
|
+
);
|
|
2613
|
+
}
|
|
2595
2614
|
listPublic(orgId, entitySlug, options = {}) {
|
|
2596
|
-
return new
|
|
2615
|
+
return new chunkSWCPI6SL_cjs.PageIterator((opts) => this.listPublicPage(orgId, entitySlug, opts), options);
|
|
2597
2616
|
}
|
|
2598
2617
|
async listPublicPage(orgId, entitySlug, options = {}) {
|
|
2599
2618
|
return this.client.requestWithQuery(
|
|
@@ -2613,6 +2632,31 @@ var RecordServiceImpl = class {
|
|
|
2613
2632
|
);
|
|
2614
2633
|
}
|
|
2615
2634
|
};
|
|
2635
|
+
var RecordDuplicateServiceImpl = class {
|
|
2636
|
+
constructor(client) {
|
|
2637
|
+
this.client = client;
|
|
2638
|
+
}
|
|
2639
|
+
client;
|
|
2640
|
+
async list(entitySlug, query = {}) {
|
|
2641
|
+
return this.client.requestWithQuery(
|
|
2642
|
+
"GET",
|
|
2643
|
+
`${RECORDS_BASE_PATH}/${entitySlug}/duplicates`,
|
|
2644
|
+
query
|
|
2645
|
+
);
|
|
2646
|
+
}
|
|
2647
|
+
async get(entitySlug, id) {
|
|
2648
|
+
return this.client.request(
|
|
2649
|
+
"GET",
|
|
2650
|
+
`${RECORDS_BASE_PATH}/${entitySlug}/duplicates/${encodeURIComponent(id)}`
|
|
2651
|
+
);
|
|
2652
|
+
}
|
|
2653
|
+
async dismiss(entitySlug, id) {
|
|
2654
|
+
return this.client.request(
|
|
2655
|
+
"POST",
|
|
2656
|
+
`${RECORDS_BASE_PATH}/${entitySlug}/duplicates/${encodeURIComponent(id)}/dismiss`
|
|
2657
|
+
);
|
|
2658
|
+
}
|
|
2659
|
+
};
|
|
2616
2660
|
var BatchUpsertTransactionSchema = zod.z.object({
|
|
2617
2661
|
transaction_id: zod.z.string(),
|
|
2618
2662
|
data: zod.z.record(zod.z.unknown())
|
|
@@ -2635,9 +2679,12 @@ var BatchUpsertRecordsResponseSchema = zod.z.object({
|
|
|
2635
2679
|
var DataClient = class {
|
|
2636
2680
|
records;
|
|
2637
2681
|
queries;
|
|
2682
|
+
/** Duplicate pairs of an entity's records (raised by contact binding). */
|
|
2683
|
+
recordDuplicates;
|
|
2638
2684
|
constructor(client) {
|
|
2639
2685
|
this.records = new RecordServiceImpl(client);
|
|
2640
2686
|
this.queries = new QueryServiceImpl(client);
|
|
2687
|
+
this.recordDuplicates = new RecordDuplicateServiceImpl(client);
|
|
2641
2688
|
}
|
|
2642
2689
|
};
|
|
2643
2690
|
|
|
@@ -2752,7 +2799,7 @@ var ActionServiceImpl = class {
|
|
|
2752
2799
|
}
|
|
2753
2800
|
client;
|
|
2754
2801
|
list(options = {}) {
|
|
2755
|
-
return new
|
|
2802
|
+
return new chunkSWCPI6SL_cjs.PageIterator((opts) => this.listPage(opts), options);
|
|
2756
2803
|
}
|
|
2757
2804
|
async listPage(options = {}) {
|
|
2758
2805
|
return this.client.requestWithQuery("GET", ACTIONS_BASE_PATH, options);
|
|
@@ -2795,7 +2842,7 @@ var ActionServiceImpl = class {
|
|
|
2795
2842
|
}
|
|
2796
2843
|
};
|
|
2797
2844
|
var ActionScopeSchema = zod.z.enum(["entity", "entity_batch", "global"]);
|
|
2798
|
-
var ActionSchema =
|
|
2845
|
+
var ActionSchema = chunkSWCPI6SL_cjs.AuditFieldsSchema.extend({
|
|
2799
2846
|
slug: zod.z.string(),
|
|
2800
2847
|
org_id: zod.z.string(),
|
|
2801
2848
|
module_slug: zod.z.string(),
|
|
@@ -2804,8 +2851,8 @@ var ActionSchema = chunkRKFXHDVU_cjs.AuditFieldsSchema.extend({
|
|
|
2804
2851
|
name: zod.z.string(),
|
|
2805
2852
|
is_active: zod.z.boolean(),
|
|
2806
2853
|
file_id: zod.z.string(),
|
|
2807
|
-
params: zod.z.array(
|
|
2808
|
-
returns: zod.z.array(
|
|
2854
|
+
params: zod.z.array(chunkSWCPI6SL_cjs.AttributeSchema),
|
|
2855
|
+
returns: zod.z.array(chunkSWCPI6SL_cjs.AttributeSchema)
|
|
2809
2856
|
});
|
|
2810
2857
|
|
|
2811
2858
|
// src/functions/index.ts
|
|
@@ -2843,7 +2890,7 @@ var LabelServiceImpl = class {
|
|
|
2843
2890
|
}
|
|
2844
2891
|
client;
|
|
2845
2892
|
list(options = {}) {
|
|
2846
|
-
return new
|
|
2893
|
+
return new chunkSWCPI6SL_cjs.PageIterator((opts) => this.listPage(opts), options);
|
|
2847
2894
|
}
|
|
2848
2895
|
async listPage(options = {}) {
|
|
2849
2896
|
return this.client.requestWithQuery(
|
|
@@ -2874,7 +2921,7 @@ var LinkServiceImpl = class {
|
|
|
2874
2921
|
}
|
|
2875
2922
|
client;
|
|
2876
2923
|
list(options = {}) {
|
|
2877
|
-
return new
|
|
2924
|
+
return new chunkSWCPI6SL_cjs.PageIterator((opts) => this.listPage(opts), options);
|
|
2878
2925
|
}
|
|
2879
2926
|
async listPage(options = {}) {
|
|
2880
2927
|
return this.client.requestWithQuery("GET", LINKS_BASE_PATH, options);
|
|
@@ -2901,7 +2948,7 @@ var NodeServiceImpl = class {
|
|
|
2901
2948
|
}
|
|
2902
2949
|
client;
|
|
2903
2950
|
list(options = {}) {
|
|
2904
|
-
return new
|
|
2951
|
+
return new chunkSWCPI6SL_cjs.PageIterator((opts) => this.listPage(opts), options);
|
|
2905
2952
|
}
|
|
2906
2953
|
async listPage(options = {}) {
|
|
2907
2954
|
const { label_ids, space_slugs, ...rest } = options;
|
|
@@ -2998,7 +3045,7 @@ var SpaceServiceImpl = class {
|
|
|
2998
3045
|
}
|
|
2999
3046
|
client;
|
|
3000
3047
|
list(options = {}) {
|
|
3001
|
-
return new
|
|
3048
|
+
return new chunkSWCPI6SL_cjs.PageIterator((opts) => this.listPage(opts), options);
|
|
3002
3049
|
}
|
|
3003
3050
|
async listPage(options = {}) {
|
|
3004
3051
|
return this.client.requestWithQuery(
|
|
@@ -3029,7 +3076,7 @@ var RecordLinkServiceImpl = class {
|
|
|
3029
3076
|
}
|
|
3030
3077
|
client;
|
|
3031
3078
|
list(options = {}) {
|
|
3032
|
-
return new
|
|
3079
|
+
return new chunkSWCPI6SL_cjs.PageIterator((opts) => this.listPage(opts), options);
|
|
3033
3080
|
}
|
|
3034
3081
|
async listPage(options = {}) {
|
|
3035
3082
|
return this.client.requestWithQuery(
|
|
@@ -3062,7 +3109,7 @@ var KnowledgeNodeMetadataSchema = zod.z.object({
|
|
|
3062
3109
|
summary: zod.z.string().nullish(),
|
|
3063
3110
|
valid_from: zod.z.string().nullish(),
|
|
3064
3111
|
valid_until: zod.z.string().nullish()
|
|
3065
|
-
}).merge(
|
|
3112
|
+
}).merge(chunkSWCPI6SL_cjs.AuditFieldsSchema);
|
|
3066
3113
|
var KnowledgeNodeSchema = KnowledgeNodeMetadataSchema.extend({
|
|
3067
3114
|
content: zod.z.string()
|
|
3068
3115
|
});
|
|
@@ -3086,7 +3133,7 @@ var KnowledgeLinkSchema = zod.z.object({
|
|
|
3086
3133
|
"superseded_by"
|
|
3087
3134
|
]),
|
|
3088
3135
|
description: zod.z.string().nullish()
|
|
3089
|
-
}).merge(
|
|
3136
|
+
}).merge(chunkSWCPI6SL_cjs.AuditFieldsSchema);
|
|
3090
3137
|
var KnowledgeRecordLinkSchema = zod.z.object({
|
|
3091
3138
|
id: zod.z.string(),
|
|
3092
3139
|
org_id: zod.z.string(),
|
|
@@ -3094,7 +3141,7 @@ var KnowledgeRecordLinkSchema = zod.z.object({
|
|
|
3094
3141
|
entity_slug: zod.z.string(),
|
|
3095
3142
|
record_id: zod.z.string(),
|
|
3096
3143
|
created_at: zod.z.string(),
|
|
3097
|
-
created_by:
|
|
3144
|
+
created_by: chunkSWCPI6SL_cjs.UserRefSchema
|
|
3098
3145
|
});
|
|
3099
3146
|
var KnowledgeLabelSchema = zod.z.object({
|
|
3100
3147
|
id: zod.z.string(),
|
|
@@ -3104,13 +3151,13 @@ var KnowledgeLabelSchema = zod.z.object({
|
|
|
3104
3151
|
description: zod.z.string().nullish(),
|
|
3105
3152
|
color: zod.z.string().nullish(),
|
|
3106
3153
|
icon: zod.z.string().nullish()
|
|
3107
|
-
}).merge(
|
|
3154
|
+
}).merge(chunkSWCPI6SL_cjs.AuditFieldsSchema);
|
|
3108
3155
|
var KnowledgeNodeLabelSchema = zod.z.object({
|
|
3109
3156
|
org_id: zod.z.string(),
|
|
3110
3157
|
node_id: zod.z.string(),
|
|
3111
3158
|
label_id: zod.z.string(),
|
|
3112
3159
|
created_at: zod.z.string(),
|
|
3113
|
-
created_by:
|
|
3160
|
+
created_by: chunkSWCPI6SL_cjs.UserRefSchema
|
|
3114
3161
|
});
|
|
3115
3162
|
var NodeNeighborhoodSchema = zod.z.object({
|
|
3116
3163
|
nodes: zod.z.array(
|
|
@@ -3297,7 +3344,7 @@ var ExecutionServiceImpl = class {
|
|
|
3297
3344
|
}
|
|
3298
3345
|
client;
|
|
3299
3346
|
list(options = {}) {
|
|
3300
|
-
return new
|
|
3347
|
+
return new chunkSWCPI6SL_cjs.PageIterator((opts) => this.listPage(opts), options);
|
|
3301
3348
|
}
|
|
3302
3349
|
async listPage(options = {}) {
|
|
3303
3350
|
return this.client.requestWithQuery(
|
|
@@ -3356,7 +3403,7 @@ var WorkflowServiceImpl = class {
|
|
|
3356
3403
|
}
|
|
3357
3404
|
client;
|
|
3358
3405
|
list(options = {}) {
|
|
3359
|
-
return new
|
|
3406
|
+
return new chunkSWCPI6SL_cjs.PageIterator((opts) => this.listPage(opts), options);
|
|
3360
3407
|
}
|
|
3361
3408
|
async listPage(options = {}) {
|
|
3362
3409
|
return this.client.requestWithQuery("GET", WORKFLOWS_BASE_PATH2, options);
|
|
@@ -3394,7 +3441,7 @@ var WorkflowServiceImpl = class {
|
|
|
3394
3441
|
return this.client.request("POST", `${WORKFLOWS_BASE_PATH2}/${key}/unpause`, {});
|
|
3395
3442
|
}
|
|
3396
3443
|
listVersions(key, options = {}) {
|
|
3397
|
-
return new
|
|
3444
|
+
return new chunkSWCPI6SL_cjs.PageIterator((opts) => this.listVersionsPage(key, opts), options);
|
|
3398
3445
|
}
|
|
3399
3446
|
async listVersionsPage(key, options = {}) {
|
|
3400
3447
|
return this.client.requestWithQuery(
|
|
@@ -3439,215 +3486,275 @@ var WorkflowClient = class {
|
|
|
3439
3486
|
|
|
3440
3487
|
Object.defineProperty(exports, "AppConfigurationSchema", {
|
|
3441
3488
|
enumerable: true,
|
|
3442
|
-
get: function () { return
|
|
3489
|
+
get: function () { return chunkSWCPI6SL_cjs.AppConfigurationSchema; }
|
|
3443
3490
|
});
|
|
3444
3491
|
Object.defineProperty(exports, "AppHomeSchema", {
|
|
3445
3492
|
enumerable: true,
|
|
3446
|
-
get: function () { return
|
|
3493
|
+
get: function () { return chunkSWCPI6SL_cjs.AppHomeSchema; }
|
|
3447
3494
|
});
|
|
3448
3495
|
Object.defineProperty(exports, "AppSchema", {
|
|
3449
3496
|
enumerable: true,
|
|
3450
|
-
get: function () { return
|
|
3497
|
+
get: function () { return chunkSWCPI6SL_cjs.AppSchema; }
|
|
3451
3498
|
});
|
|
3452
3499
|
Object.defineProperty(exports, "AttributeSchema", {
|
|
3453
3500
|
enumerable: true,
|
|
3454
|
-
get: function () { return
|
|
3501
|
+
get: function () { return chunkSWCPI6SL_cjs.AttributeSchema; }
|
|
3455
3502
|
});
|
|
3456
3503
|
Object.defineProperty(exports, "AuditFieldsSchema", {
|
|
3457
3504
|
enumerable: true,
|
|
3458
|
-
get: function () { return
|
|
3505
|
+
get: function () { return chunkSWCPI6SL_cjs.AuditFieldsSchema; }
|
|
3459
3506
|
});
|
|
3460
3507
|
Object.defineProperty(exports, "CURRENT_USER_DEFAULT", {
|
|
3461
3508
|
enumerable: true,
|
|
3462
|
-
get: function () { return
|
|
3509
|
+
get: function () { return chunkSWCPI6SL_cjs.CURRENT_USER_DEFAULT; }
|
|
3463
3510
|
});
|
|
3464
3511
|
Object.defineProperty(exports, "ColumnSchema", {
|
|
3465
3512
|
enumerable: true,
|
|
3466
|
-
get: function () { return
|
|
3513
|
+
get: function () { return chunkSWCPI6SL_cjs.ColumnSchema; }
|
|
3467
3514
|
});
|
|
3468
3515
|
Object.defineProperty(exports, "ComponentSchema", {
|
|
3469
3516
|
enumerable: true,
|
|
3470
|
-
get: function () { return
|
|
3517
|
+
get: function () { return chunkSWCPI6SL_cjs.ComponentSchema; }
|
|
3518
|
+
});
|
|
3519
|
+
Object.defineProperty(exports, "ContactAddressAttributeMetaSchema", {
|
|
3520
|
+
enumerable: true,
|
|
3521
|
+
get: function () { return chunkSWCPI6SL_cjs.ContactAddressAttributeMetaSchema; }
|
|
3471
3522
|
});
|
|
3472
3523
|
Object.defineProperty(exports, "CurrencyAttributeMetaSchema", {
|
|
3473
3524
|
enumerable: true,
|
|
3474
|
-
get: function () { return
|
|
3525
|
+
get: function () { return chunkSWCPI6SL_cjs.CurrencyAttributeMetaSchema; }
|
|
3475
3526
|
});
|
|
3476
3527
|
Object.defineProperty(exports, "DEFAULT_PAGE_SIZE", {
|
|
3477
3528
|
enumerable: true,
|
|
3478
|
-
get: function () { return
|
|
3529
|
+
get: function () { return chunkSWCPI6SL_cjs.DEFAULT_PAGE_SIZE; }
|
|
3479
3530
|
});
|
|
3480
3531
|
Object.defineProperty(exports, "DONE", {
|
|
3481
3532
|
enumerable: true,
|
|
3482
|
-
get: function () { return
|
|
3533
|
+
get: function () { return chunkSWCPI6SL_cjs.DONE; }
|
|
3483
3534
|
});
|
|
3484
3535
|
Object.defineProperty(exports, "DesignReferenceSchema", {
|
|
3485
3536
|
enumerable: true,
|
|
3486
|
-
get: function () { return
|
|
3537
|
+
get: function () { return chunkSWCPI6SL_cjs.DesignReferenceSchema; }
|
|
3538
|
+
});
|
|
3539
|
+
Object.defineProperty(exports, "EntityContactBindingSchema", {
|
|
3540
|
+
enumerable: true,
|
|
3541
|
+
get: function () { return chunkSWCPI6SL_cjs.EntityContactBindingSchema; }
|
|
3542
|
+
});
|
|
3543
|
+
Object.defineProperty(exports, "EntityExtensionSchema", {
|
|
3544
|
+
enumerable: true,
|
|
3545
|
+
get: function () { return chunkSWCPI6SL_cjs.EntityExtensionSchema; }
|
|
3487
3546
|
});
|
|
3488
3547
|
Object.defineProperty(exports, "EntitySchema", {
|
|
3489
3548
|
enumerable: true,
|
|
3490
|
-
get: function () { return
|
|
3549
|
+
get: function () { return chunkSWCPI6SL_cjs.EntitySchema; }
|
|
3491
3550
|
});
|
|
3492
3551
|
Object.defineProperty(exports, "EntityWithSchemaSchema", {
|
|
3493
3552
|
enumerable: true,
|
|
3494
|
-
get: function () { return
|
|
3553
|
+
get: function () { return chunkSWCPI6SL_cjs.EntityWithSchemaSchema; }
|
|
3554
|
+
});
|
|
3555
|
+
Object.defineProperty(exports, "ExtensionPositionSchema", {
|
|
3556
|
+
enumerable: true,
|
|
3557
|
+
get: function () { return chunkSWCPI6SL_cjs.ExtensionPositionSchema; }
|
|
3495
3558
|
});
|
|
3496
3559
|
Object.defineProperty(exports, "FileRefSchema", {
|
|
3497
3560
|
enumerable: true,
|
|
3498
|
-
get: function () { return
|
|
3561
|
+
get: function () { return chunkSWCPI6SL_cjs.FileRefSchema; }
|
|
3499
3562
|
});
|
|
3500
3563
|
Object.defineProperty(exports, "FilterElementSchema", {
|
|
3501
3564
|
enumerable: true,
|
|
3502
|
-
get: function () { return
|
|
3565
|
+
get: function () { return chunkSWCPI6SL_cjs.FilterElementSchema; }
|
|
3503
3566
|
});
|
|
3504
3567
|
Object.defineProperty(exports, "FilterGroupSchema", {
|
|
3505
3568
|
enumerable: true,
|
|
3506
|
-
get: function () { return
|
|
3569
|
+
get: function () { return chunkSWCPI6SL_cjs.FilterGroupSchema; }
|
|
3570
|
+
});
|
|
3571
|
+
Object.defineProperty(exports, "ListExtensionColumnPlacementSchema", {
|
|
3572
|
+
enumerable: true,
|
|
3573
|
+
get: function () { return chunkSWCPI6SL_cjs.ListExtensionColumnPlacementSchema; }
|
|
3574
|
+
});
|
|
3575
|
+
Object.defineProperty(exports, "ListExtensionSchema", {
|
|
3576
|
+
enumerable: true,
|
|
3577
|
+
get: function () { return chunkSWCPI6SL_cjs.ListExtensionSchema; }
|
|
3507
3578
|
});
|
|
3508
3579
|
Object.defineProperty(exports, "ListSchema", {
|
|
3509
3580
|
enumerable: true,
|
|
3510
|
-
get: function () { return
|
|
3581
|
+
get: function () { return chunkSWCPI6SL_cjs.ListSchema; }
|
|
3511
3582
|
});
|
|
3512
3583
|
Object.defineProperty(exports, "ListViewSchema", {
|
|
3513
3584
|
enumerable: true,
|
|
3514
|
-
get: function () { return
|
|
3585
|
+
get: function () { return chunkSWCPI6SL_cjs.ListViewSchema; }
|
|
3586
|
+
});
|
|
3587
|
+
Object.defineProperty(exports, "MENU_CONFIGURATION_EXTENSION_ANCHOR_ITEMS", {
|
|
3588
|
+
enumerable: true,
|
|
3589
|
+
get: function () { return chunkSWCPI6SL_cjs.MENU_CONFIGURATION_EXTENSION_ANCHOR_ITEMS; }
|
|
3590
|
+
});
|
|
3591
|
+
Object.defineProperty(exports, "MenuConfigurationExtensionPlacementSchema", {
|
|
3592
|
+
enumerable: true,
|
|
3593
|
+
get: function () { return chunkSWCPI6SL_cjs.MenuConfigurationExtensionPlacementSchema; }
|
|
3594
|
+
});
|
|
3595
|
+
Object.defineProperty(exports, "MenuConfigurationExtensionPositionSchema", {
|
|
3596
|
+
enumerable: true,
|
|
3597
|
+
get: function () { return chunkSWCPI6SL_cjs.MenuConfigurationExtensionPositionSchema; }
|
|
3598
|
+
});
|
|
3599
|
+
Object.defineProperty(exports, "MenuConfigurationExtensionSchema", {
|
|
3600
|
+
enumerable: true,
|
|
3601
|
+
get: function () { return chunkSWCPI6SL_cjs.MenuConfigurationExtensionSchema; }
|
|
3515
3602
|
});
|
|
3516
3603
|
Object.defineProperty(exports, "MenuConfigurationSchema", {
|
|
3517
3604
|
enumerable: true,
|
|
3518
|
-
get: function () { return
|
|
3605
|
+
get: function () { return chunkSWCPI6SL_cjs.MenuConfigurationSchema; }
|
|
3519
3606
|
});
|
|
3520
3607
|
Object.defineProperty(exports, "MenuItemSchema", {
|
|
3521
3608
|
enumerable: true,
|
|
3522
|
-
get: function () { return
|
|
3609
|
+
get: function () { return chunkSWCPI6SL_cjs.MenuItemSchema; }
|
|
3523
3610
|
});
|
|
3524
3611
|
Object.defineProperty(exports, "MenuItemType", {
|
|
3525
3612
|
enumerable: true,
|
|
3526
|
-
get: function () { return
|
|
3613
|
+
get: function () { return chunkSWCPI6SL_cjs.MenuItemType; }
|
|
3527
3614
|
});
|
|
3528
3615
|
Object.defineProperty(exports, "MetaClient", {
|
|
3529
3616
|
enumerable: true,
|
|
3530
|
-
get: function () { return
|
|
3617
|
+
get: function () { return chunkSWCPI6SL_cjs.MetaClient; }
|
|
3531
3618
|
});
|
|
3532
3619
|
Object.defineProperty(exports, "ModuleSchema", {
|
|
3533
3620
|
enumerable: true,
|
|
3534
|
-
get: function () { return
|
|
3621
|
+
get: function () { return chunkSWCPI6SL_cjs.ModuleSchema; }
|
|
3535
3622
|
});
|
|
3536
3623
|
Object.defineProperty(exports, "OnDeleteActionSchema", {
|
|
3537
3624
|
enumerable: true,
|
|
3538
|
-
get: function () { return
|
|
3625
|
+
get: function () { return chunkSWCPI6SL_cjs.OnDeleteActionSchema; }
|
|
3626
|
+
});
|
|
3627
|
+
Object.defineProperty(exports, "PAGE_EXTENSION_ANCHOR_MAIN", {
|
|
3628
|
+
enumerable: true,
|
|
3629
|
+
get: function () { return chunkSWCPI6SL_cjs.PAGE_EXTENSION_ANCHOR_MAIN; }
|
|
3630
|
+
});
|
|
3631
|
+
Object.defineProperty(exports, "PAGE_EXTENSION_ANCHOR_SIDE_PANEL", {
|
|
3632
|
+
enumerable: true,
|
|
3633
|
+
get: function () { return chunkSWCPI6SL_cjs.PAGE_EXTENSION_ANCHOR_SIDE_PANEL; }
|
|
3539
3634
|
});
|
|
3540
3635
|
Object.defineProperty(exports, "PLATFORM_ATTRIBUTE_NAMES", {
|
|
3541
3636
|
enumerable: true,
|
|
3542
|
-
get: function () { return
|
|
3637
|
+
get: function () { return chunkSWCPI6SL_cjs.PLATFORM_ATTRIBUTE_NAMES; }
|
|
3543
3638
|
});
|
|
3544
3639
|
Object.defineProperty(exports, "PLATFORM_USER_ID", {
|
|
3545
3640
|
enumerable: true,
|
|
3546
|
-
get: function () { return
|
|
3641
|
+
get: function () { return chunkSWCPI6SL_cjs.PLATFORM_USER_ID; }
|
|
3547
3642
|
});
|
|
3548
3643
|
Object.defineProperty(exports, "PageActionSchema", {
|
|
3549
3644
|
enumerable: true,
|
|
3550
|
-
get: function () { return
|
|
3645
|
+
get: function () { return chunkSWCPI6SL_cjs.PageActionSchema; }
|
|
3646
|
+
});
|
|
3647
|
+
Object.defineProperty(exports, "PageExtensionPlacementSchema", {
|
|
3648
|
+
enumerable: true,
|
|
3649
|
+
get: function () { return chunkSWCPI6SL_cjs.PageExtensionPlacementSchema; }
|
|
3650
|
+
});
|
|
3651
|
+
Object.defineProperty(exports, "PageExtensionSchema", {
|
|
3652
|
+
enumerable: true,
|
|
3653
|
+
get: function () { return chunkSWCPI6SL_cjs.PageExtensionSchema; }
|
|
3551
3654
|
});
|
|
3552
3655
|
Object.defineProperty(exports, "PageIterator", {
|
|
3553
3656
|
enumerable: true,
|
|
3554
|
-
get: function () { return
|
|
3657
|
+
get: function () { return chunkSWCPI6SL_cjs.PageIterator; }
|
|
3555
3658
|
});
|
|
3556
3659
|
Object.defineProperty(exports, "PageLayoutSchema", {
|
|
3557
3660
|
enumerable: true,
|
|
3558
|
-
get: function () { return
|
|
3661
|
+
get: function () { return chunkSWCPI6SL_cjs.PageLayoutSchema; }
|
|
3559
3662
|
});
|
|
3560
3663
|
Object.defineProperty(exports, "PageSchema", {
|
|
3561
3664
|
enumerable: true,
|
|
3562
|
-
get: function () { return
|
|
3665
|
+
get: function () { return chunkSWCPI6SL_cjs.PageSchema; }
|
|
3563
3666
|
});
|
|
3564
3667
|
Object.defineProperty(exports, "RelationAttributeMetaSchema", {
|
|
3565
3668
|
enumerable: true,
|
|
3566
|
-
get: function () { return
|
|
3669
|
+
get: function () { return chunkSWCPI6SL_cjs.RelationAttributeMetaSchema; }
|
|
3567
3670
|
});
|
|
3568
3671
|
Object.defineProperty(exports, "ResponseMetaSchema", {
|
|
3569
3672
|
enumerable: true,
|
|
3570
|
-
get: function () { return
|
|
3673
|
+
get: function () { return chunkSWCPI6SL_cjs.ResponseMetaSchema; }
|
|
3571
3674
|
});
|
|
3572
3675
|
Object.defineProperty(exports, "SortConfigSchema", {
|
|
3573
3676
|
enumerable: true,
|
|
3574
|
-
get: function () { return
|
|
3677
|
+
get: function () { return chunkSWCPI6SL_cjs.SortConfigSchema; }
|
|
3575
3678
|
});
|
|
3576
3679
|
Object.defineProperty(exports, "UserRefSchema", {
|
|
3577
3680
|
enumerable: true,
|
|
3578
|
-
get: function () { return
|
|
3681
|
+
get: function () { return chunkSWCPI6SL_cjs.UserRefSchema; }
|
|
3579
3682
|
});
|
|
3580
3683
|
Object.defineProperty(exports, "VariableSchema", {
|
|
3581
3684
|
enumerable: true,
|
|
3582
|
-
get: function () { return
|
|
3685
|
+
get: function () { return chunkSWCPI6SL_cjs.VariableSchema; }
|
|
3583
3686
|
});
|
|
3584
3687
|
Object.defineProperty(exports, "acceptsCurrentUserDefault", {
|
|
3585
3688
|
enumerable: true,
|
|
3586
|
-
get: function () { return
|
|
3689
|
+
get: function () { return chunkSWCPI6SL_cjs.acceptsCurrentUserDefault; }
|
|
3587
3690
|
});
|
|
3588
3691
|
Object.defineProperty(exports, "allCurrencyCodes", {
|
|
3589
3692
|
enumerable: true,
|
|
3590
|
-
get: function () { return
|
|
3693
|
+
get: function () { return chunkSWCPI6SL_cjs.allCurrencyCodes; }
|
|
3591
3694
|
});
|
|
3592
3695
|
Object.defineProperty(exports, "createIterator", {
|
|
3593
3696
|
enumerable: true,
|
|
3594
|
-
get: function () { return
|
|
3697
|
+
get: function () { return chunkSWCPI6SL_cjs.createIterator; }
|
|
3595
3698
|
});
|
|
3596
3699
|
Object.defineProperty(exports, "createListResultSchema", {
|
|
3597
3700
|
enumerable: true,
|
|
3598
|
-
get: function () { return
|
|
3701
|
+
get: function () { return chunkSWCPI6SL_cjs.createListResultSchema; }
|
|
3599
3702
|
});
|
|
3600
3703
|
Object.defineProperty(exports, "currencyLabel", {
|
|
3601
3704
|
enumerable: true,
|
|
3602
|
-
get: function () { return
|
|
3705
|
+
get: function () { return chunkSWCPI6SL_cjs.currencyLabel; }
|
|
3603
3706
|
});
|
|
3604
3707
|
Object.defineProperty(exports, "currencySymbol", {
|
|
3605
3708
|
enumerable: true,
|
|
3606
|
-
get: function () { return
|
|
3709
|
+
get: function () { return chunkSWCPI6SL_cjs.currencySymbol; }
|
|
3607
3710
|
});
|
|
3608
3711
|
Object.defineProperty(exports, "currencySymbolSide", {
|
|
3609
3712
|
enumerable: true,
|
|
3610
|
-
get: function () { return
|
|
3713
|
+
get: function () { return chunkSWCPI6SL_cjs.currencySymbolSide; }
|
|
3611
3714
|
});
|
|
3612
3715
|
Object.defineProperty(exports, "formatAmount", {
|
|
3613
3716
|
enumerable: true,
|
|
3614
|
-
get: function () { return
|
|
3717
|
+
get: function () { return chunkSWCPI6SL_cjs.formatAmount; }
|
|
3615
3718
|
});
|
|
3616
3719
|
Object.defineProperty(exports, "formatMoney", {
|
|
3617
3720
|
enumerable: true,
|
|
3618
|
-
get: function () { return
|
|
3721
|
+
get: function () { return chunkSWCPI6SL_cjs.formatMoney; }
|
|
3619
3722
|
});
|
|
3620
3723
|
Object.defineProperty(exports, "isCurrentUserDefault", {
|
|
3621
3724
|
enumerable: true,
|
|
3622
|
-
get: function () { return
|
|
3725
|
+
get: function () { return chunkSWCPI6SL_cjs.isCurrentUserDefault; }
|
|
3623
3726
|
});
|
|
3624
3727
|
Object.defineProperty(exports, "isPlatformAttributeName", {
|
|
3625
3728
|
enumerable: true,
|
|
3626
|
-
get: function () { return
|
|
3729
|
+
get: function () { return chunkSWCPI6SL_cjs.isPlatformAttributeName; }
|
|
3627
3730
|
});
|
|
3628
3731
|
Object.defineProperty(exports, "localeNumberSeparators", {
|
|
3629
3732
|
enumerable: true,
|
|
3630
|
-
get: function () { return
|
|
3733
|
+
get: function () { return chunkSWCPI6SL_cjs.localeNumberSeparators; }
|
|
3631
3734
|
});
|
|
3632
3735
|
Object.defineProperty(exports, "parseAmount", {
|
|
3633
3736
|
enumerable: true,
|
|
3634
|
-
get: function () { return
|
|
3737
|
+
get: function () { return chunkSWCPI6SL_cjs.parseAmount; }
|
|
3738
|
+
});
|
|
3739
|
+
Object.defineProperty(exports, "parseContactAddressMeta", {
|
|
3740
|
+
enumerable: true,
|
|
3741
|
+
get: function () { return chunkSWCPI6SL_cjs.parseContactAddressMeta; }
|
|
3635
3742
|
});
|
|
3636
3743
|
Object.defineProperty(exports, "parseCurrencyMeta", {
|
|
3637
3744
|
enumerable: true,
|
|
3638
|
-
get: function () { return
|
|
3745
|
+
get: function () { return chunkSWCPI6SL_cjs.parseCurrencyMeta; }
|
|
3639
3746
|
});
|
|
3640
3747
|
Object.defineProperty(exports, "parseFileMeta", {
|
|
3641
3748
|
enumerable: true,
|
|
3642
|
-
get: function () { return
|
|
3749
|
+
get: function () { return chunkSWCPI6SL_cjs.parseFileMeta; }
|
|
3643
3750
|
});
|
|
3644
3751
|
Object.defineProperty(exports, "parseRelationMeta", {
|
|
3645
3752
|
enumerable: true,
|
|
3646
|
-
get: function () { return
|
|
3753
|
+
get: function () { return chunkSWCPI6SL_cjs.parseRelationMeta; }
|
|
3647
3754
|
});
|
|
3648
3755
|
Object.defineProperty(exports, "platformAttributes", {
|
|
3649
3756
|
enumerable: true,
|
|
3650
|
-
get: function () { return
|
|
3757
|
+
get: function () { return chunkSWCPI6SL_cjs.platformAttributes; }
|
|
3651
3758
|
});
|
|
3652
3759
|
exports.AccountClient = AccountClient;
|
|
3653
3760
|
exports.ActionSchema = ActionSchema;
|