@proteos/sdk 0.43.0 → 0.45.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-5Y6JDCFX.cjs → chunk-33EULWIM.cjs} +2 -2
- package/dist/{chunk-5Y6JDCFX.cjs.map → chunk-33EULWIM.cjs.map} +1 -1
- package/dist/{chunk-ONMJ52OX.js → chunk-IGIAJVX6.js} +2 -2
- package/dist/{chunk-ONMJ52OX.js.map → chunk-IGIAJVX6.js.map} +1 -1
- package/dist/index.cjs +116 -85
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +57 -4
- package/dist/index.d.ts +57 -4
- package/dist/index.js +33 -2
- package/dist/index.js.map +1 -1
- package/dist/meta/index.cjs +53 -53
- 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-Biohdxjn.d.cts → types-BTdBFq34.d.cts} +3 -1
- package/dist/{types-Biohdxjn.d.ts → types-BTdBFq34.d.ts} +3 -1
- package/package.json +1 -1
- package/src/conversation/index.ts +42 -0
- package/src/conversation/types.ts +37 -0
- package/src/meta/layout/page-layout.ts +3 -1
- package/src/storage/files.ts +22 -0
package/dist/index.cjs
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var chunk33EULWIM_cjs = require('./chunk-33EULWIM.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 chunk33EULWIM_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 chunk33EULWIM_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 chunk33EULWIM_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 chunk33EULWIM_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 chunk33EULWIM_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 chunk33EULWIM_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 chunk33EULWIM_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);
|
|
@@ -437,7 +437,7 @@ var OrganizationServiceImpl = class {
|
|
|
437
437
|
}
|
|
438
438
|
client;
|
|
439
439
|
list(options = {}) {
|
|
440
|
-
return new
|
|
440
|
+
return new chunk33EULWIM_cjs.PageIterator((opts) => this.listPage(opts), options);
|
|
441
441
|
}
|
|
442
442
|
async listPage(options = {}) {
|
|
443
443
|
return this.client.requestWithQuery(
|
|
@@ -468,7 +468,7 @@ var RoleServiceImpl = class {
|
|
|
468
468
|
}
|
|
469
469
|
client;
|
|
470
470
|
list(options = {}) {
|
|
471
|
-
return new
|
|
471
|
+
return new chunk33EULWIM_cjs.PageIterator((opts) => this.listPage(opts), options);
|
|
472
472
|
}
|
|
473
473
|
async listPage(options = {}) {
|
|
474
474
|
return this.client.requestWithQuery("GET", ROLES_BASE_PATH, options);
|
|
@@ -489,7 +489,7 @@ var RoleServiceImpl = class {
|
|
|
489
489
|
await this.client.request("DELETE", `${ROLES_BASE_PATH}/${slug}`);
|
|
490
490
|
}
|
|
491
491
|
getPermissions(roleSlug, options = {}) {
|
|
492
|
-
return new
|
|
492
|
+
return new chunk33EULWIM_cjs.PageIterator((opts) => this.fetchPermissionsPage(roleSlug, opts), options);
|
|
493
493
|
}
|
|
494
494
|
async assignPermission(roleSlug, request) {
|
|
495
495
|
return this.client.request(
|
|
@@ -521,7 +521,7 @@ var UserServiceImpl = class {
|
|
|
521
521
|
}
|
|
522
522
|
client;
|
|
523
523
|
list(options = {}) {
|
|
524
|
-
return new
|
|
524
|
+
return new chunk33EULWIM_cjs.PageIterator((opts) => this.listPage(opts), options);
|
|
525
525
|
}
|
|
526
526
|
async listPage(options = {}) {
|
|
527
527
|
return this.client.requestWithQuery("GET", USERS_BASE_PATH, options);
|
|
@@ -536,7 +536,7 @@ var UserServiceImpl = class {
|
|
|
536
536
|
return this.client.request("PATCH", `${USERS_BASE_PATH}/${id}`, request);
|
|
537
537
|
}
|
|
538
538
|
getRoles(userId, options = {}) {
|
|
539
|
-
return new
|
|
539
|
+
return new chunk33EULWIM_cjs.PageIterator((opts) => this.fetchRolesPage(userId, opts), options);
|
|
540
540
|
}
|
|
541
541
|
async assignRole(userId, request) {
|
|
542
542
|
return this.client.request(
|
|
@@ -640,19 +640,19 @@ var PLATFORM_ENTITY_SLUGS = PLATFORM_ENTITIES.map(
|
|
|
640
640
|
function isPlatformEntity(slug) {
|
|
641
641
|
return PLATFORM_ENTITY_SLUGS.includes(slug);
|
|
642
642
|
}
|
|
643
|
-
var RoleEntityPermissionSchema =
|
|
643
|
+
var RoleEntityPermissionSchema = chunk33EULWIM_cjs.AuditFieldsSchema.extend({
|
|
644
644
|
id: zod.z.string(),
|
|
645
645
|
role_slug: zod.z.string(),
|
|
646
646
|
entity_slug: zod.z.string(),
|
|
647
647
|
permission: zod.z.enum(["read", "write", "delete"])
|
|
648
648
|
});
|
|
649
|
-
var UserRoleAssignmentSchema =
|
|
649
|
+
var UserRoleAssignmentSchema = chunk33EULWIM_cjs.AuditFieldsSchema.extend({
|
|
650
650
|
id: zod.z.string(),
|
|
651
651
|
user_id: zod.z.string(),
|
|
652
652
|
role_slug: zod.z.string(),
|
|
653
653
|
org_id: zod.z.string()
|
|
654
654
|
});
|
|
655
|
-
var UserSchema =
|
|
655
|
+
var UserSchema = chunk33EULWIM_cjs.AuditFieldsSchema.extend({
|
|
656
656
|
id: zod.z.string(),
|
|
657
657
|
email: zod.z.string(),
|
|
658
658
|
given_name: zod.z.string(),
|
|
@@ -660,7 +660,7 @@ var UserSchema = chunk5Y6JDCFX_cjs.AuditFieldsSchema.extend({
|
|
|
660
660
|
external_id: zod.z.string(),
|
|
661
661
|
default_org_id: zod.z.string()
|
|
662
662
|
});
|
|
663
|
-
|
|
663
|
+
chunk33EULWIM_cjs.AuditFieldsSchema.extend({
|
|
664
664
|
id: zod.z.string(),
|
|
665
665
|
user_id: zod.z.string(),
|
|
666
666
|
org_id: zod.z.string(),
|
|
@@ -670,13 +670,13 @@ chunk5Y6JDCFX_cjs.AuditFieldsSchema.extend({
|
|
|
670
670
|
expires_at: zod.z.string().nullable(),
|
|
671
671
|
last_used_at: zod.z.string().nullable()
|
|
672
672
|
});
|
|
673
|
-
var RoleSchema =
|
|
673
|
+
var RoleSchema = chunk33EULWIM_cjs.AuditFieldsSchema.extend({
|
|
674
674
|
slug: zod.z.string(),
|
|
675
675
|
name: zod.z.string(),
|
|
676
676
|
org_id: zod.z.string(),
|
|
677
677
|
description: zod.z.string()
|
|
678
678
|
});
|
|
679
|
-
var OrganizationSchema =
|
|
679
|
+
var OrganizationSchema = chunk33EULWIM_cjs.AuditFieldsSchema.extend({
|
|
680
680
|
id: zod.z.string(),
|
|
681
681
|
name: zod.z.string(),
|
|
682
682
|
description: zod.z.string()
|
|
@@ -1437,6 +1437,9 @@ var ContactServiceImpl = class {
|
|
|
1437
1437
|
`${CONVERSATION_BASE_PATH}/contacts/${encodeURIComponent(id)}`
|
|
1438
1438
|
);
|
|
1439
1439
|
}
|
|
1440
|
+
create(request) {
|
|
1441
|
+
return this.client.request("POST", `${CONVERSATION_BASE_PATH}/contacts`, request);
|
|
1442
|
+
}
|
|
1440
1443
|
update(id, request) {
|
|
1441
1444
|
return this.client.request(
|
|
1442
1445
|
"PATCH",
|
|
@@ -1457,6 +1460,28 @@ var ContactServiceImpl = class {
|
|
|
1457
1460
|
`${CONVERSATION_BASE_PATH}/contacts/${encodeURIComponent(contactId)}/addresses/${encodeURIComponent(addressId)}`
|
|
1458
1461
|
);
|
|
1459
1462
|
}
|
|
1463
|
+
linkRecord(request) {
|
|
1464
|
+
return this.client.request("POST", `${CONVERSATION_BASE_PATH}/contact-record-links`, request);
|
|
1465
|
+
}
|
|
1466
|
+
listRecordLinks(query = {}) {
|
|
1467
|
+
return this.client.requestWithQuery(
|
|
1468
|
+
"GET",
|
|
1469
|
+
`${CONVERSATION_BASE_PATH}/contact-record-links`,
|
|
1470
|
+
query
|
|
1471
|
+
);
|
|
1472
|
+
}
|
|
1473
|
+
getRecordLink(linkId) {
|
|
1474
|
+
return this.client.request(
|
|
1475
|
+
"GET",
|
|
1476
|
+
`${CONVERSATION_BASE_PATH}/contact-record-links/${encodeURIComponent(linkId)}`
|
|
1477
|
+
);
|
|
1478
|
+
}
|
|
1479
|
+
unlinkRecord(linkId) {
|
|
1480
|
+
return this.client.request(
|
|
1481
|
+
"DELETE",
|
|
1482
|
+
`${CONVERSATION_BASE_PATH}/contact-record-links/${encodeURIComponent(linkId)}`
|
|
1483
|
+
);
|
|
1484
|
+
}
|
|
1460
1485
|
merge(contactId, request) {
|
|
1461
1486
|
return this.client.request(
|
|
1462
1487
|
"POST",
|
|
@@ -1960,7 +1985,7 @@ var RecordServiceImpl = class {
|
|
|
1960
1985
|
}
|
|
1961
1986
|
client;
|
|
1962
1987
|
list(entitySlug, options = {}) {
|
|
1963
|
-
return new
|
|
1988
|
+
return new chunk33EULWIM_cjs.PageIterator((opts) => this.listPage(entitySlug, opts), options);
|
|
1964
1989
|
}
|
|
1965
1990
|
async listPage(entitySlug, options = {}) {
|
|
1966
1991
|
return this.client.requestWithQuery(
|
|
@@ -1993,7 +2018,7 @@ var RecordServiceImpl = class {
|
|
|
1993
2018
|
);
|
|
1994
2019
|
}
|
|
1995
2020
|
listPublic(orgId, entitySlug, options = {}) {
|
|
1996
|
-
return new
|
|
2021
|
+
return new chunk33EULWIM_cjs.PageIterator((opts) => this.listPublicPage(orgId, entitySlug, opts), options);
|
|
1997
2022
|
}
|
|
1998
2023
|
async listPublicPage(orgId, entitySlug, options = {}) {
|
|
1999
2024
|
return this.client.requestWithQuery(
|
|
@@ -2152,7 +2177,7 @@ var ActionServiceImpl = class {
|
|
|
2152
2177
|
}
|
|
2153
2178
|
client;
|
|
2154
2179
|
list(options = {}) {
|
|
2155
|
-
return new
|
|
2180
|
+
return new chunk33EULWIM_cjs.PageIterator((opts) => this.listPage(opts), options);
|
|
2156
2181
|
}
|
|
2157
2182
|
async listPage(options = {}) {
|
|
2158
2183
|
return this.client.requestWithQuery("GET", ACTIONS_BASE_PATH, options);
|
|
@@ -2187,7 +2212,7 @@ var ActionServiceImpl = class {
|
|
|
2187
2212
|
}
|
|
2188
2213
|
};
|
|
2189
2214
|
var ActionScopeSchema = zod.z.enum(["entity", "global"]);
|
|
2190
|
-
var ActionSchema =
|
|
2215
|
+
var ActionSchema = chunk33EULWIM_cjs.AuditFieldsSchema.extend({
|
|
2191
2216
|
slug: zod.z.string(),
|
|
2192
2217
|
org_id: zod.z.string(),
|
|
2193
2218
|
module_slug: zod.z.string(),
|
|
@@ -2196,8 +2221,8 @@ var ActionSchema = chunk5Y6JDCFX_cjs.AuditFieldsSchema.extend({
|
|
|
2196
2221
|
name: zod.z.string(),
|
|
2197
2222
|
is_active: zod.z.boolean(),
|
|
2198
2223
|
file_id: zod.z.string(),
|
|
2199
|
-
params: zod.z.array(
|
|
2200
|
-
returns: zod.z.array(
|
|
2224
|
+
params: zod.z.array(chunk33EULWIM_cjs.AttributeSchema),
|
|
2225
|
+
returns: zod.z.array(chunk33EULWIM_cjs.AttributeSchema)
|
|
2201
2226
|
});
|
|
2202
2227
|
|
|
2203
2228
|
// src/functions/index.ts
|
|
@@ -2232,7 +2257,7 @@ var LabelServiceImpl = class {
|
|
|
2232
2257
|
}
|
|
2233
2258
|
client;
|
|
2234
2259
|
list(options = {}) {
|
|
2235
|
-
return new
|
|
2260
|
+
return new chunk33EULWIM_cjs.PageIterator((opts) => this.listPage(opts), options);
|
|
2236
2261
|
}
|
|
2237
2262
|
async listPage(options = {}) {
|
|
2238
2263
|
return this.client.requestWithQuery(
|
|
@@ -2263,7 +2288,7 @@ var LinkServiceImpl = class {
|
|
|
2263
2288
|
}
|
|
2264
2289
|
client;
|
|
2265
2290
|
list(options = {}) {
|
|
2266
|
-
return new
|
|
2291
|
+
return new chunk33EULWIM_cjs.PageIterator((opts) => this.listPage(opts), options);
|
|
2267
2292
|
}
|
|
2268
2293
|
async listPage(options = {}) {
|
|
2269
2294
|
return this.client.requestWithQuery("GET", LINKS_BASE_PATH, options);
|
|
@@ -2290,7 +2315,7 @@ var NodeServiceImpl = class {
|
|
|
2290
2315
|
}
|
|
2291
2316
|
client;
|
|
2292
2317
|
list(options = {}) {
|
|
2293
|
-
return new
|
|
2318
|
+
return new chunk33EULWIM_cjs.PageIterator((opts) => this.listPage(opts), options);
|
|
2294
2319
|
}
|
|
2295
2320
|
async listPage(options = {}) {
|
|
2296
2321
|
const { label_ids, ...rest } = options;
|
|
@@ -2384,7 +2409,7 @@ var RecordLinkServiceImpl = class {
|
|
|
2384
2409
|
}
|
|
2385
2410
|
client;
|
|
2386
2411
|
list(options = {}) {
|
|
2387
|
-
return new
|
|
2412
|
+
return new chunk33EULWIM_cjs.PageIterator((opts) => this.listPage(opts), options);
|
|
2388
2413
|
}
|
|
2389
2414
|
async listPage(options = {}) {
|
|
2390
2415
|
return this.client.requestWithQuery(
|
|
@@ -2416,7 +2441,7 @@ var KnowledgeNodeMetadataSchema = zod.z.object({
|
|
|
2416
2441
|
summary: zod.z.string().nullish(),
|
|
2417
2442
|
valid_from: zod.z.string().nullish(),
|
|
2418
2443
|
valid_until: zod.z.string().nullish()
|
|
2419
|
-
}).merge(
|
|
2444
|
+
}).merge(chunk33EULWIM_cjs.AuditFieldsSchema);
|
|
2420
2445
|
var KnowledgeNodeSchema = KnowledgeNodeMetadataSchema.extend({
|
|
2421
2446
|
content: zod.z.string()
|
|
2422
2447
|
});
|
|
@@ -2440,7 +2465,7 @@ var KnowledgeLinkSchema = zod.z.object({
|
|
|
2440
2465
|
"superseded_by"
|
|
2441
2466
|
]),
|
|
2442
2467
|
description: zod.z.string().nullish()
|
|
2443
|
-
}).merge(
|
|
2468
|
+
}).merge(chunk33EULWIM_cjs.AuditFieldsSchema);
|
|
2444
2469
|
var KnowledgeRecordLinkSchema = zod.z.object({
|
|
2445
2470
|
id: zod.z.string(),
|
|
2446
2471
|
org_id: zod.z.string(),
|
|
@@ -2448,7 +2473,7 @@ var KnowledgeRecordLinkSchema = zod.z.object({
|
|
|
2448
2473
|
entity_slug: zod.z.string(),
|
|
2449
2474
|
record_id: zod.z.string(),
|
|
2450
2475
|
created_at: zod.z.string(),
|
|
2451
|
-
created_by:
|
|
2476
|
+
created_by: chunk33EULWIM_cjs.UserRefSchema
|
|
2452
2477
|
});
|
|
2453
2478
|
var KnowledgeLabelSchema = zod.z.object({
|
|
2454
2479
|
id: zod.z.string(),
|
|
@@ -2458,13 +2483,13 @@ var KnowledgeLabelSchema = zod.z.object({
|
|
|
2458
2483
|
description: zod.z.string().nullish(),
|
|
2459
2484
|
color: zod.z.string().nullish(),
|
|
2460
2485
|
icon: zod.z.string().nullish()
|
|
2461
|
-
}).merge(
|
|
2486
|
+
}).merge(chunk33EULWIM_cjs.AuditFieldsSchema);
|
|
2462
2487
|
var KnowledgeNodeLabelSchema = zod.z.object({
|
|
2463
2488
|
org_id: zod.z.string(),
|
|
2464
2489
|
node_id: zod.z.string(),
|
|
2465
2490
|
label_id: zod.z.string(),
|
|
2466
2491
|
created_at: zod.z.string(),
|
|
2467
|
-
created_by:
|
|
2492
|
+
created_by: chunk33EULWIM_cjs.UserRefSchema
|
|
2468
2493
|
});
|
|
2469
2494
|
var NodeNeighborhoodSchema = zod.z.object({
|
|
2470
2495
|
nodes: zod.z.array(
|
|
@@ -2592,6 +2617,12 @@ var FileServiceImpl = class {
|
|
|
2592
2617
|
);
|
|
2593
2618
|
return response.data;
|
|
2594
2619
|
}
|
|
2620
|
+
async delete(id) {
|
|
2621
|
+
await this.client.request("DELETE", `${FILES_BASE_PATH}/${id}`);
|
|
2622
|
+
}
|
|
2623
|
+
async deleteVersion(id, versionId) {
|
|
2624
|
+
await this.client.request("DELETE", `${FILES_BASE_PATH}/${id}/versions/${versionId}`);
|
|
2625
|
+
}
|
|
2595
2626
|
async createDownloadUrl(id, options) {
|
|
2596
2627
|
const body = options?.allowsMultiUse !== void 0 ? { allows_multi_use: options.allowsMultiUse } : void 0;
|
|
2597
2628
|
const response = await this.client.request(
|
|
@@ -2639,7 +2670,7 @@ var ExecutionServiceImpl = class {
|
|
|
2639
2670
|
}
|
|
2640
2671
|
client;
|
|
2641
2672
|
list(options = {}) {
|
|
2642
|
-
return new
|
|
2673
|
+
return new chunk33EULWIM_cjs.PageIterator((opts) => this.listPage(opts), options);
|
|
2643
2674
|
}
|
|
2644
2675
|
async listPage(options = {}) {
|
|
2645
2676
|
return this.client.requestWithQuery(
|
|
@@ -2698,7 +2729,7 @@ var WorkflowServiceImpl = class {
|
|
|
2698
2729
|
}
|
|
2699
2730
|
client;
|
|
2700
2731
|
list(options = {}) {
|
|
2701
|
-
return new
|
|
2732
|
+
return new chunk33EULWIM_cjs.PageIterator((opts) => this.listPage(opts), options);
|
|
2702
2733
|
}
|
|
2703
2734
|
async listPage(options = {}) {
|
|
2704
2735
|
return this.client.requestWithQuery("GET", WORKFLOWS_BASE_PATH2, options);
|
|
@@ -2736,7 +2767,7 @@ var WorkflowServiceImpl = class {
|
|
|
2736
2767
|
return this.client.request("POST", `${WORKFLOWS_BASE_PATH2}/${key}/unpause`, {});
|
|
2737
2768
|
}
|
|
2738
2769
|
listVersions(key, options = {}) {
|
|
2739
|
-
return new
|
|
2770
|
+
return new chunk33EULWIM_cjs.PageIterator((opts) => this.listVersionsPage(key, opts), options);
|
|
2740
2771
|
}
|
|
2741
2772
|
async listVersionsPage(key, options = {}) {
|
|
2742
2773
|
return this.client.requestWithQuery(
|
|
@@ -2781,195 +2812,195 @@ var WorkflowClient = class {
|
|
|
2781
2812
|
|
|
2782
2813
|
Object.defineProperty(exports, "AppSchema", {
|
|
2783
2814
|
enumerable: true,
|
|
2784
|
-
get: function () { return
|
|
2815
|
+
get: function () { return chunk33EULWIM_cjs.AppSchema; }
|
|
2785
2816
|
});
|
|
2786
2817
|
Object.defineProperty(exports, "AttributeSchema", {
|
|
2787
2818
|
enumerable: true,
|
|
2788
|
-
get: function () { return
|
|
2819
|
+
get: function () { return chunk33EULWIM_cjs.AttributeSchema; }
|
|
2789
2820
|
});
|
|
2790
2821
|
Object.defineProperty(exports, "AuditFieldsSchema", {
|
|
2791
2822
|
enumerable: true,
|
|
2792
|
-
get: function () { return
|
|
2823
|
+
get: function () { return chunk33EULWIM_cjs.AuditFieldsSchema; }
|
|
2793
2824
|
});
|
|
2794
2825
|
Object.defineProperty(exports, "ColumnSchema", {
|
|
2795
2826
|
enumerable: true,
|
|
2796
|
-
get: function () { return
|
|
2827
|
+
get: function () { return chunk33EULWIM_cjs.ColumnSchema; }
|
|
2797
2828
|
});
|
|
2798
2829
|
Object.defineProperty(exports, "ComponentSchema", {
|
|
2799
2830
|
enumerable: true,
|
|
2800
|
-
get: function () { return
|
|
2831
|
+
get: function () { return chunk33EULWIM_cjs.ComponentSchema; }
|
|
2801
2832
|
});
|
|
2802
2833
|
Object.defineProperty(exports, "CurrencyAttributeMetaSchema", {
|
|
2803
2834
|
enumerable: true,
|
|
2804
|
-
get: function () { return
|
|
2835
|
+
get: function () { return chunk33EULWIM_cjs.CurrencyAttributeMetaSchema; }
|
|
2805
2836
|
});
|
|
2806
2837
|
Object.defineProperty(exports, "DEFAULT_PAGE_SIZE", {
|
|
2807
2838
|
enumerable: true,
|
|
2808
|
-
get: function () { return
|
|
2839
|
+
get: function () { return chunk33EULWIM_cjs.DEFAULT_PAGE_SIZE; }
|
|
2809
2840
|
});
|
|
2810
2841
|
Object.defineProperty(exports, "DONE", {
|
|
2811
2842
|
enumerable: true,
|
|
2812
|
-
get: function () { return
|
|
2843
|
+
get: function () { return chunk33EULWIM_cjs.DONE; }
|
|
2813
2844
|
});
|
|
2814
2845
|
Object.defineProperty(exports, "DesignReferenceSchema", {
|
|
2815
2846
|
enumerable: true,
|
|
2816
|
-
get: function () { return
|
|
2847
|
+
get: function () { return chunk33EULWIM_cjs.DesignReferenceSchema; }
|
|
2817
2848
|
});
|
|
2818
2849
|
Object.defineProperty(exports, "EntitySchema", {
|
|
2819
2850
|
enumerable: true,
|
|
2820
|
-
get: function () { return
|
|
2851
|
+
get: function () { return chunk33EULWIM_cjs.EntitySchema; }
|
|
2821
2852
|
});
|
|
2822
2853
|
Object.defineProperty(exports, "EntityWithSchemaSchema", {
|
|
2823
2854
|
enumerable: true,
|
|
2824
|
-
get: function () { return
|
|
2855
|
+
get: function () { return chunk33EULWIM_cjs.EntityWithSchemaSchema; }
|
|
2825
2856
|
});
|
|
2826
2857
|
Object.defineProperty(exports, "FileRefSchema", {
|
|
2827
2858
|
enumerable: true,
|
|
2828
|
-
get: function () { return
|
|
2859
|
+
get: function () { return chunk33EULWIM_cjs.FileRefSchema; }
|
|
2829
2860
|
});
|
|
2830
2861
|
Object.defineProperty(exports, "FilterElementSchema", {
|
|
2831
2862
|
enumerable: true,
|
|
2832
|
-
get: function () { return
|
|
2863
|
+
get: function () { return chunk33EULWIM_cjs.FilterElementSchema; }
|
|
2833
2864
|
});
|
|
2834
2865
|
Object.defineProperty(exports, "FilterGroupSchema", {
|
|
2835
2866
|
enumerable: true,
|
|
2836
|
-
get: function () { return
|
|
2867
|
+
get: function () { return chunk33EULWIM_cjs.FilterGroupSchema; }
|
|
2837
2868
|
});
|
|
2838
2869
|
Object.defineProperty(exports, "ListSchema", {
|
|
2839
2870
|
enumerable: true,
|
|
2840
|
-
get: function () { return
|
|
2871
|
+
get: function () { return chunk33EULWIM_cjs.ListSchema; }
|
|
2841
2872
|
});
|
|
2842
2873
|
Object.defineProperty(exports, "ListViewSchema", {
|
|
2843
2874
|
enumerable: true,
|
|
2844
|
-
get: function () { return
|
|
2875
|
+
get: function () { return chunk33EULWIM_cjs.ListViewSchema; }
|
|
2845
2876
|
});
|
|
2846
2877
|
Object.defineProperty(exports, "MenuConfigurationSchema", {
|
|
2847
2878
|
enumerable: true,
|
|
2848
|
-
get: function () { return
|
|
2879
|
+
get: function () { return chunk33EULWIM_cjs.MenuConfigurationSchema; }
|
|
2849
2880
|
});
|
|
2850
2881
|
Object.defineProperty(exports, "MenuItemSchema", {
|
|
2851
2882
|
enumerable: true,
|
|
2852
|
-
get: function () { return
|
|
2883
|
+
get: function () { return chunk33EULWIM_cjs.MenuItemSchema; }
|
|
2853
2884
|
});
|
|
2854
2885
|
Object.defineProperty(exports, "MenuItemType", {
|
|
2855
2886
|
enumerable: true,
|
|
2856
|
-
get: function () { return
|
|
2887
|
+
get: function () { return chunk33EULWIM_cjs.MenuItemType; }
|
|
2857
2888
|
});
|
|
2858
2889
|
Object.defineProperty(exports, "MetaClient", {
|
|
2859
2890
|
enumerable: true,
|
|
2860
|
-
get: function () { return
|
|
2891
|
+
get: function () { return chunk33EULWIM_cjs.MetaClient; }
|
|
2861
2892
|
});
|
|
2862
2893
|
Object.defineProperty(exports, "ModuleSchema", {
|
|
2863
2894
|
enumerable: true,
|
|
2864
|
-
get: function () { return
|
|
2895
|
+
get: function () { return chunk33EULWIM_cjs.ModuleSchema; }
|
|
2865
2896
|
});
|
|
2866
2897
|
Object.defineProperty(exports, "OnDeleteActionSchema", {
|
|
2867
2898
|
enumerable: true,
|
|
2868
|
-
get: function () { return
|
|
2899
|
+
get: function () { return chunk33EULWIM_cjs.OnDeleteActionSchema; }
|
|
2869
2900
|
});
|
|
2870
2901
|
Object.defineProperty(exports, "PLATFORM_ATTRIBUTE_NAMES", {
|
|
2871
2902
|
enumerable: true,
|
|
2872
|
-
get: function () { return
|
|
2903
|
+
get: function () { return chunk33EULWIM_cjs.PLATFORM_ATTRIBUTE_NAMES; }
|
|
2873
2904
|
});
|
|
2874
2905
|
Object.defineProperty(exports, "PLATFORM_USER_ID", {
|
|
2875
2906
|
enumerable: true,
|
|
2876
|
-
get: function () { return
|
|
2907
|
+
get: function () { return chunk33EULWIM_cjs.PLATFORM_USER_ID; }
|
|
2877
2908
|
});
|
|
2878
2909
|
Object.defineProperty(exports, "PageActionSchema", {
|
|
2879
2910
|
enumerable: true,
|
|
2880
|
-
get: function () { return
|
|
2911
|
+
get: function () { return chunk33EULWIM_cjs.PageActionSchema; }
|
|
2881
2912
|
});
|
|
2882
2913
|
Object.defineProperty(exports, "PageIterator", {
|
|
2883
2914
|
enumerable: true,
|
|
2884
|
-
get: function () { return
|
|
2915
|
+
get: function () { return chunk33EULWIM_cjs.PageIterator; }
|
|
2885
2916
|
});
|
|
2886
2917
|
Object.defineProperty(exports, "PageLayoutSchema", {
|
|
2887
2918
|
enumerable: true,
|
|
2888
|
-
get: function () { return
|
|
2919
|
+
get: function () { return chunk33EULWIM_cjs.PageLayoutSchema; }
|
|
2889
2920
|
});
|
|
2890
2921
|
Object.defineProperty(exports, "PageSchema", {
|
|
2891
2922
|
enumerable: true,
|
|
2892
|
-
get: function () { return
|
|
2923
|
+
get: function () { return chunk33EULWIM_cjs.PageSchema; }
|
|
2893
2924
|
});
|
|
2894
2925
|
Object.defineProperty(exports, "RelationAttributeMetaSchema", {
|
|
2895
2926
|
enumerable: true,
|
|
2896
|
-
get: function () { return
|
|
2927
|
+
get: function () { return chunk33EULWIM_cjs.RelationAttributeMetaSchema; }
|
|
2897
2928
|
});
|
|
2898
2929
|
Object.defineProperty(exports, "ResponseMetaSchema", {
|
|
2899
2930
|
enumerable: true,
|
|
2900
|
-
get: function () { return
|
|
2931
|
+
get: function () { return chunk33EULWIM_cjs.ResponseMetaSchema; }
|
|
2901
2932
|
});
|
|
2902
2933
|
Object.defineProperty(exports, "SortConfigSchema", {
|
|
2903
2934
|
enumerable: true,
|
|
2904
|
-
get: function () { return
|
|
2935
|
+
get: function () { return chunk33EULWIM_cjs.SortConfigSchema; }
|
|
2905
2936
|
});
|
|
2906
2937
|
Object.defineProperty(exports, "UserRefSchema", {
|
|
2907
2938
|
enumerable: true,
|
|
2908
|
-
get: function () { return
|
|
2939
|
+
get: function () { return chunk33EULWIM_cjs.UserRefSchema; }
|
|
2909
2940
|
});
|
|
2910
2941
|
Object.defineProperty(exports, "VariableSchema", {
|
|
2911
2942
|
enumerable: true,
|
|
2912
|
-
get: function () { return
|
|
2943
|
+
get: function () { return chunk33EULWIM_cjs.VariableSchema; }
|
|
2913
2944
|
});
|
|
2914
2945
|
Object.defineProperty(exports, "allCurrencyCodes", {
|
|
2915
2946
|
enumerable: true,
|
|
2916
|
-
get: function () { return
|
|
2947
|
+
get: function () { return chunk33EULWIM_cjs.allCurrencyCodes; }
|
|
2917
2948
|
});
|
|
2918
2949
|
Object.defineProperty(exports, "createIterator", {
|
|
2919
2950
|
enumerable: true,
|
|
2920
|
-
get: function () { return
|
|
2951
|
+
get: function () { return chunk33EULWIM_cjs.createIterator; }
|
|
2921
2952
|
});
|
|
2922
2953
|
Object.defineProperty(exports, "createListResultSchema", {
|
|
2923
2954
|
enumerable: true,
|
|
2924
|
-
get: function () { return
|
|
2955
|
+
get: function () { return chunk33EULWIM_cjs.createListResultSchema; }
|
|
2925
2956
|
});
|
|
2926
2957
|
Object.defineProperty(exports, "currencyLabel", {
|
|
2927
2958
|
enumerable: true,
|
|
2928
|
-
get: function () { return
|
|
2959
|
+
get: function () { return chunk33EULWIM_cjs.currencyLabel; }
|
|
2929
2960
|
});
|
|
2930
2961
|
Object.defineProperty(exports, "currencySymbol", {
|
|
2931
2962
|
enumerable: true,
|
|
2932
|
-
get: function () { return
|
|
2963
|
+
get: function () { return chunk33EULWIM_cjs.currencySymbol; }
|
|
2933
2964
|
});
|
|
2934
2965
|
Object.defineProperty(exports, "currencySymbolSide", {
|
|
2935
2966
|
enumerable: true,
|
|
2936
|
-
get: function () { return
|
|
2967
|
+
get: function () { return chunk33EULWIM_cjs.currencySymbolSide; }
|
|
2937
2968
|
});
|
|
2938
2969
|
Object.defineProperty(exports, "formatAmount", {
|
|
2939
2970
|
enumerable: true,
|
|
2940
|
-
get: function () { return
|
|
2971
|
+
get: function () { return chunk33EULWIM_cjs.formatAmount; }
|
|
2941
2972
|
});
|
|
2942
2973
|
Object.defineProperty(exports, "formatMoney", {
|
|
2943
2974
|
enumerable: true,
|
|
2944
|
-
get: function () { return
|
|
2975
|
+
get: function () { return chunk33EULWIM_cjs.formatMoney; }
|
|
2945
2976
|
});
|
|
2946
2977
|
Object.defineProperty(exports, "isPlatformAttributeName", {
|
|
2947
2978
|
enumerable: true,
|
|
2948
|
-
get: function () { return
|
|
2979
|
+
get: function () { return chunk33EULWIM_cjs.isPlatformAttributeName; }
|
|
2949
2980
|
});
|
|
2950
2981
|
Object.defineProperty(exports, "localeNumberSeparators", {
|
|
2951
2982
|
enumerable: true,
|
|
2952
|
-
get: function () { return
|
|
2983
|
+
get: function () { return chunk33EULWIM_cjs.localeNumberSeparators; }
|
|
2953
2984
|
});
|
|
2954
2985
|
Object.defineProperty(exports, "parseAmount", {
|
|
2955
2986
|
enumerable: true,
|
|
2956
|
-
get: function () { return
|
|
2987
|
+
get: function () { return chunk33EULWIM_cjs.parseAmount; }
|
|
2957
2988
|
});
|
|
2958
2989
|
Object.defineProperty(exports, "parseCurrencyMeta", {
|
|
2959
2990
|
enumerable: true,
|
|
2960
|
-
get: function () { return
|
|
2991
|
+
get: function () { return chunk33EULWIM_cjs.parseCurrencyMeta; }
|
|
2961
2992
|
});
|
|
2962
2993
|
Object.defineProperty(exports, "parseFileMeta", {
|
|
2963
2994
|
enumerable: true,
|
|
2964
|
-
get: function () { return
|
|
2995
|
+
get: function () { return chunk33EULWIM_cjs.parseFileMeta; }
|
|
2965
2996
|
});
|
|
2966
2997
|
Object.defineProperty(exports, "parseRelationMeta", {
|
|
2967
2998
|
enumerable: true,
|
|
2968
|
-
get: function () { return
|
|
2999
|
+
get: function () { return chunk33EULWIM_cjs.parseRelationMeta; }
|
|
2969
3000
|
});
|
|
2970
3001
|
Object.defineProperty(exports, "platformAttributes", {
|
|
2971
3002
|
enumerable: true,
|
|
2972
|
-
get: function () { return
|
|
3003
|
+
get: function () { return chunk33EULWIM_cjs.platformAttributes; }
|
|
2973
3004
|
});
|
|
2974
3005
|
exports.AccountClient = AccountClient;
|
|
2975
3006
|
exports.ActionSchema = ActionSchema;
|