@proteos/sdk 0.42.1 → 0.42.3
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-HVO3UMFS.cjs → chunk-5Y6JDCFX.cjs} +12 -2
- package/dist/chunk-5Y6JDCFX.cjs.map +1 -0
- package/dist/{chunk-Y2TJBWC5.js → chunk-ONMJ52OX.js} +12 -2
- package/dist/chunk-ONMJ52OX.js.map +1 -0
- package/dist/index.cjs +85 -85
- package/dist/index.d.cts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +2 -2
- 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-CiCNPrXT.d.cts → types-Biohdxjn.d.cts} +18 -2
- package/dist/{types-CiCNPrXT.d.ts → types-Biohdxjn.d.ts} +18 -2
- package/package.json +1 -1
- package/src/meta/layout/elements.ts +27 -0
- package/src/meta/layout/index.ts +1 -0
- package/dist/chunk-HVO3UMFS.cjs.map +0 -1
- package/dist/chunk-Y2TJBWC5.js.map +0 -1
package/dist/index.cjs
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var chunk5Y6JDCFX_cjs = require('./chunk-5Y6JDCFX.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 chunk5Y6JDCFX_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 chunk5Y6JDCFX_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 chunk5Y6JDCFX_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 chunk5Y6JDCFX_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 chunk5Y6JDCFX_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 chunk5Y6JDCFX_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 chunk5Y6JDCFX_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 chunk5Y6JDCFX_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 chunk5Y6JDCFX_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 chunk5Y6JDCFX_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 chunk5Y6JDCFX_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 chunk5Y6JDCFX_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 = chunk5Y6JDCFX_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 = chunk5Y6JDCFX_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 = chunk5Y6JDCFX_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 = chunkHVO3UMFS_cjs.AuditFieldsSchema.extend({
|
|
|
660
660
|
external_id: zod.z.string(),
|
|
661
661
|
default_org_id: zod.z.string()
|
|
662
662
|
});
|
|
663
|
-
|
|
663
|
+
chunk5Y6JDCFX_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 @@ chunkHVO3UMFS_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 = chunk5Y6JDCFX_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 = chunk5Y6JDCFX_cjs.AuditFieldsSchema.extend({
|
|
680
680
|
id: zod.z.string(),
|
|
681
681
|
name: zod.z.string(),
|
|
682
682
|
description: zod.z.string()
|
|
@@ -1960,7 +1960,7 @@ var RecordServiceImpl = class {
|
|
|
1960
1960
|
}
|
|
1961
1961
|
client;
|
|
1962
1962
|
list(entitySlug, options = {}) {
|
|
1963
|
-
return new
|
|
1963
|
+
return new chunk5Y6JDCFX_cjs.PageIterator((opts) => this.listPage(entitySlug, opts), options);
|
|
1964
1964
|
}
|
|
1965
1965
|
async listPage(entitySlug, options = {}) {
|
|
1966
1966
|
return this.client.requestWithQuery(
|
|
@@ -1993,7 +1993,7 @@ var RecordServiceImpl = class {
|
|
|
1993
1993
|
);
|
|
1994
1994
|
}
|
|
1995
1995
|
listPublic(orgId, entitySlug, options = {}) {
|
|
1996
|
-
return new
|
|
1996
|
+
return new chunk5Y6JDCFX_cjs.PageIterator((opts) => this.listPublicPage(orgId, entitySlug, opts), options);
|
|
1997
1997
|
}
|
|
1998
1998
|
async listPublicPage(orgId, entitySlug, options = {}) {
|
|
1999
1999
|
return this.client.requestWithQuery(
|
|
@@ -2152,7 +2152,7 @@ var ActionServiceImpl = class {
|
|
|
2152
2152
|
}
|
|
2153
2153
|
client;
|
|
2154
2154
|
list(options = {}) {
|
|
2155
|
-
return new
|
|
2155
|
+
return new chunk5Y6JDCFX_cjs.PageIterator((opts) => this.listPage(opts), options);
|
|
2156
2156
|
}
|
|
2157
2157
|
async listPage(options = {}) {
|
|
2158
2158
|
return this.client.requestWithQuery("GET", ACTIONS_BASE_PATH, options);
|
|
@@ -2187,7 +2187,7 @@ var ActionServiceImpl = class {
|
|
|
2187
2187
|
}
|
|
2188
2188
|
};
|
|
2189
2189
|
var ActionScopeSchema = zod.z.enum(["entity", "global"]);
|
|
2190
|
-
var ActionSchema =
|
|
2190
|
+
var ActionSchema = chunk5Y6JDCFX_cjs.AuditFieldsSchema.extend({
|
|
2191
2191
|
slug: zod.z.string(),
|
|
2192
2192
|
org_id: zod.z.string(),
|
|
2193
2193
|
module_slug: zod.z.string(),
|
|
@@ -2196,8 +2196,8 @@ var ActionSchema = chunkHVO3UMFS_cjs.AuditFieldsSchema.extend({
|
|
|
2196
2196
|
name: zod.z.string(),
|
|
2197
2197
|
is_active: zod.z.boolean(),
|
|
2198
2198
|
file_id: zod.z.string(),
|
|
2199
|
-
params: zod.z.array(
|
|
2200
|
-
returns: zod.z.array(
|
|
2199
|
+
params: zod.z.array(chunk5Y6JDCFX_cjs.AttributeSchema),
|
|
2200
|
+
returns: zod.z.array(chunk5Y6JDCFX_cjs.AttributeSchema)
|
|
2201
2201
|
});
|
|
2202
2202
|
|
|
2203
2203
|
// src/functions/index.ts
|
|
@@ -2232,7 +2232,7 @@ var LabelServiceImpl = class {
|
|
|
2232
2232
|
}
|
|
2233
2233
|
client;
|
|
2234
2234
|
list(options = {}) {
|
|
2235
|
-
return new
|
|
2235
|
+
return new chunk5Y6JDCFX_cjs.PageIterator((opts) => this.listPage(opts), options);
|
|
2236
2236
|
}
|
|
2237
2237
|
async listPage(options = {}) {
|
|
2238
2238
|
return this.client.requestWithQuery(
|
|
@@ -2263,7 +2263,7 @@ var LinkServiceImpl = class {
|
|
|
2263
2263
|
}
|
|
2264
2264
|
client;
|
|
2265
2265
|
list(options = {}) {
|
|
2266
|
-
return new
|
|
2266
|
+
return new chunk5Y6JDCFX_cjs.PageIterator((opts) => this.listPage(opts), options);
|
|
2267
2267
|
}
|
|
2268
2268
|
async listPage(options = {}) {
|
|
2269
2269
|
return this.client.requestWithQuery("GET", LINKS_BASE_PATH, options);
|
|
@@ -2290,7 +2290,7 @@ var NodeServiceImpl = class {
|
|
|
2290
2290
|
}
|
|
2291
2291
|
client;
|
|
2292
2292
|
list(options = {}) {
|
|
2293
|
-
return new
|
|
2293
|
+
return new chunk5Y6JDCFX_cjs.PageIterator((opts) => this.listPage(opts), options);
|
|
2294
2294
|
}
|
|
2295
2295
|
async listPage(options = {}) {
|
|
2296
2296
|
const { label_ids, ...rest } = options;
|
|
@@ -2384,7 +2384,7 @@ var RecordLinkServiceImpl = class {
|
|
|
2384
2384
|
}
|
|
2385
2385
|
client;
|
|
2386
2386
|
list(options = {}) {
|
|
2387
|
-
return new
|
|
2387
|
+
return new chunk5Y6JDCFX_cjs.PageIterator((opts) => this.listPage(opts), options);
|
|
2388
2388
|
}
|
|
2389
2389
|
async listPage(options = {}) {
|
|
2390
2390
|
return this.client.requestWithQuery(
|
|
@@ -2416,7 +2416,7 @@ var KnowledgeNodeMetadataSchema = zod.z.object({
|
|
|
2416
2416
|
summary: zod.z.string().nullish(),
|
|
2417
2417
|
valid_from: zod.z.string().nullish(),
|
|
2418
2418
|
valid_until: zod.z.string().nullish()
|
|
2419
|
-
}).merge(
|
|
2419
|
+
}).merge(chunk5Y6JDCFX_cjs.AuditFieldsSchema);
|
|
2420
2420
|
var KnowledgeNodeSchema = KnowledgeNodeMetadataSchema.extend({
|
|
2421
2421
|
content: zod.z.string()
|
|
2422
2422
|
});
|
|
@@ -2440,7 +2440,7 @@ var KnowledgeLinkSchema = zod.z.object({
|
|
|
2440
2440
|
"superseded_by"
|
|
2441
2441
|
]),
|
|
2442
2442
|
description: zod.z.string().nullish()
|
|
2443
|
-
}).merge(
|
|
2443
|
+
}).merge(chunk5Y6JDCFX_cjs.AuditFieldsSchema);
|
|
2444
2444
|
var KnowledgeRecordLinkSchema = zod.z.object({
|
|
2445
2445
|
id: zod.z.string(),
|
|
2446
2446
|
org_id: zod.z.string(),
|
|
@@ -2448,7 +2448,7 @@ var KnowledgeRecordLinkSchema = zod.z.object({
|
|
|
2448
2448
|
entity_slug: zod.z.string(),
|
|
2449
2449
|
record_id: zod.z.string(),
|
|
2450
2450
|
created_at: zod.z.string(),
|
|
2451
|
-
created_by:
|
|
2451
|
+
created_by: chunk5Y6JDCFX_cjs.UserRefSchema
|
|
2452
2452
|
});
|
|
2453
2453
|
var KnowledgeLabelSchema = zod.z.object({
|
|
2454
2454
|
id: zod.z.string(),
|
|
@@ -2458,13 +2458,13 @@ var KnowledgeLabelSchema = zod.z.object({
|
|
|
2458
2458
|
description: zod.z.string().nullish(),
|
|
2459
2459
|
color: zod.z.string().nullish(),
|
|
2460
2460
|
icon: zod.z.string().nullish()
|
|
2461
|
-
}).merge(
|
|
2461
|
+
}).merge(chunk5Y6JDCFX_cjs.AuditFieldsSchema);
|
|
2462
2462
|
var KnowledgeNodeLabelSchema = zod.z.object({
|
|
2463
2463
|
org_id: zod.z.string(),
|
|
2464
2464
|
node_id: zod.z.string(),
|
|
2465
2465
|
label_id: zod.z.string(),
|
|
2466
2466
|
created_at: zod.z.string(),
|
|
2467
|
-
created_by:
|
|
2467
|
+
created_by: chunk5Y6JDCFX_cjs.UserRefSchema
|
|
2468
2468
|
});
|
|
2469
2469
|
var NodeNeighborhoodSchema = zod.z.object({
|
|
2470
2470
|
nodes: zod.z.array(
|
|
@@ -2639,7 +2639,7 @@ var ExecutionServiceImpl = class {
|
|
|
2639
2639
|
}
|
|
2640
2640
|
client;
|
|
2641
2641
|
list(options = {}) {
|
|
2642
|
-
return new
|
|
2642
|
+
return new chunk5Y6JDCFX_cjs.PageIterator((opts) => this.listPage(opts), options);
|
|
2643
2643
|
}
|
|
2644
2644
|
async listPage(options = {}) {
|
|
2645
2645
|
return this.client.requestWithQuery(
|
|
@@ -2698,7 +2698,7 @@ var WorkflowServiceImpl = class {
|
|
|
2698
2698
|
}
|
|
2699
2699
|
client;
|
|
2700
2700
|
list(options = {}) {
|
|
2701
|
-
return new
|
|
2701
|
+
return new chunk5Y6JDCFX_cjs.PageIterator((opts) => this.listPage(opts), options);
|
|
2702
2702
|
}
|
|
2703
2703
|
async listPage(options = {}) {
|
|
2704
2704
|
return this.client.requestWithQuery("GET", WORKFLOWS_BASE_PATH2, options);
|
|
@@ -2736,7 +2736,7 @@ var WorkflowServiceImpl = class {
|
|
|
2736
2736
|
return this.client.request("POST", `${WORKFLOWS_BASE_PATH2}/${key}/unpause`, {});
|
|
2737
2737
|
}
|
|
2738
2738
|
listVersions(key, options = {}) {
|
|
2739
|
-
return new
|
|
2739
|
+
return new chunk5Y6JDCFX_cjs.PageIterator((opts) => this.listVersionsPage(key, opts), options);
|
|
2740
2740
|
}
|
|
2741
2741
|
async listVersionsPage(key, options = {}) {
|
|
2742
2742
|
return this.client.requestWithQuery(
|
|
@@ -2781,195 +2781,195 @@ var WorkflowClient = class {
|
|
|
2781
2781
|
|
|
2782
2782
|
Object.defineProperty(exports, "AppSchema", {
|
|
2783
2783
|
enumerable: true,
|
|
2784
|
-
get: function () { return
|
|
2784
|
+
get: function () { return chunk5Y6JDCFX_cjs.AppSchema; }
|
|
2785
2785
|
});
|
|
2786
2786
|
Object.defineProperty(exports, "AttributeSchema", {
|
|
2787
2787
|
enumerable: true,
|
|
2788
|
-
get: function () { return
|
|
2788
|
+
get: function () { return chunk5Y6JDCFX_cjs.AttributeSchema; }
|
|
2789
2789
|
});
|
|
2790
2790
|
Object.defineProperty(exports, "AuditFieldsSchema", {
|
|
2791
2791
|
enumerable: true,
|
|
2792
|
-
get: function () { return
|
|
2792
|
+
get: function () { return chunk5Y6JDCFX_cjs.AuditFieldsSchema; }
|
|
2793
2793
|
});
|
|
2794
2794
|
Object.defineProperty(exports, "ColumnSchema", {
|
|
2795
2795
|
enumerable: true,
|
|
2796
|
-
get: function () { return
|
|
2796
|
+
get: function () { return chunk5Y6JDCFX_cjs.ColumnSchema; }
|
|
2797
2797
|
});
|
|
2798
2798
|
Object.defineProperty(exports, "ComponentSchema", {
|
|
2799
2799
|
enumerable: true,
|
|
2800
|
-
get: function () { return
|
|
2800
|
+
get: function () { return chunk5Y6JDCFX_cjs.ComponentSchema; }
|
|
2801
2801
|
});
|
|
2802
2802
|
Object.defineProperty(exports, "CurrencyAttributeMetaSchema", {
|
|
2803
2803
|
enumerable: true,
|
|
2804
|
-
get: function () { return
|
|
2804
|
+
get: function () { return chunk5Y6JDCFX_cjs.CurrencyAttributeMetaSchema; }
|
|
2805
2805
|
});
|
|
2806
2806
|
Object.defineProperty(exports, "DEFAULT_PAGE_SIZE", {
|
|
2807
2807
|
enumerable: true,
|
|
2808
|
-
get: function () { return
|
|
2808
|
+
get: function () { return chunk5Y6JDCFX_cjs.DEFAULT_PAGE_SIZE; }
|
|
2809
2809
|
});
|
|
2810
2810
|
Object.defineProperty(exports, "DONE", {
|
|
2811
2811
|
enumerable: true,
|
|
2812
|
-
get: function () { return
|
|
2812
|
+
get: function () { return chunk5Y6JDCFX_cjs.DONE; }
|
|
2813
2813
|
});
|
|
2814
2814
|
Object.defineProperty(exports, "DesignReferenceSchema", {
|
|
2815
2815
|
enumerable: true,
|
|
2816
|
-
get: function () { return
|
|
2816
|
+
get: function () { return chunk5Y6JDCFX_cjs.DesignReferenceSchema; }
|
|
2817
2817
|
});
|
|
2818
2818
|
Object.defineProperty(exports, "EntitySchema", {
|
|
2819
2819
|
enumerable: true,
|
|
2820
|
-
get: function () { return
|
|
2820
|
+
get: function () { return chunk5Y6JDCFX_cjs.EntitySchema; }
|
|
2821
2821
|
});
|
|
2822
2822
|
Object.defineProperty(exports, "EntityWithSchemaSchema", {
|
|
2823
2823
|
enumerable: true,
|
|
2824
|
-
get: function () { return
|
|
2824
|
+
get: function () { return chunk5Y6JDCFX_cjs.EntityWithSchemaSchema; }
|
|
2825
2825
|
});
|
|
2826
2826
|
Object.defineProperty(exports, "FileRefSchema", {
|
|
2827
2827
|
enumerable: true,
|
|
2828
|
-
get: function () { return
|
|
2828
|
+
get: function () { return chunk5Y6JDCFX_cjs.FileRefSchema; }
|
|
2829
2829
|
});
|
|
2830
2830
|
Object.defineProperty(exports, "FilterElementSchema", {
|
|
2831
2831
|
enumerable: true,
|
|
2832
|
-
get: function () { return
|
|
2832
|
+
get: function () { return chunk5Y6JDCFX_cjs.FilterElementSchema; }
|
|
2833
2833
|
});
|
|
2834
2834
|
Object.defineProperty(exports, "FilterGroupSchema", {
|
|
2835
2835
|
enumerable: true,
|
|
2836
|
-
get: function () { return
|
|
2836
|
+
get: function () { return chunk5Y6JDCFX_cjs.FilterGroupSchema; }
|
|
2837
2837
|
});
|
|
2838
2838
|
Object.defineProperty(exports, "ListSchema", {
|
|
2839
2839
|
enumerable: true,
|
|
2840
|
-
get: function () { return
|
|
2840
|
+
get: function () { return chunk5Y6JDCFX_cjs.ListSchema; }
|
|
2841
2841
|
});
|
|
2842
2842
|
Object.defineProperty(exports, "ListViewSchema", {
|
|
2843
2843
|
enumerable: true,
|
|
2844
|
-
get: function () { return
|
|
2844
|
+
get: function () { return chunk5Y6JDCFX_cjs.ListViewSchema; }
|
|
2845
2845
|
});
|
|
2846
2846
|
Object.defineProperty(exports, "MenuConfigurationSchema", {
|
|
2847
2847
|
enumerable: true,
|
|
2848
|
-
get: function () { return
|
|
2848
|
+
get: function () { return chunk5Y6JDCFX_cjs.MenuConfigurationSchema; }
|
|
2849
2849
|
});
|
|
2850
2850
|
Object.defineProperty(exports, "MenuItemSchema", {
|
|
2851
2851
|
enumerable: true,
|
|
2852
|
-
get: function () { return
|
|
2852
|
+
get: function () { return chunk5Y6JDCFX_cjs.MenuItemSchema; }
|
|
2853
2853
|
});
|
|
2854
2854
|
Object.defineProperty(exports, "MenuItemType", {
|
|
2855
2855
|
enumerable: true,
|
|
2856
|
-
get: function () { return
|
|
2856
|
+
get: function () { return chunk5Y6JDCFX_cjs.MenuItemType; }
|
|
2857
2857
|
});
|
|
2858
2858
|
Object.defineProperty(exports, "MetaClient", {
|
|
2859
2859
|
enumerable: true,
|
|
2860
|
-
get: function () { return
|
|
2860
|
+
get: function () { return chunk5Y6JDCFX_cjs.MetaClient; }
|
|
2861
2861
|
});
|
|
2862
2862
|
Object.defineProperty(exports, "ModuleSchema", {
|
|
2863
2863
|
enumerable: true,
|
|
2864
|
-
get: function () { return
|
|
2864
|
+
get: function () { return chunk5Y6JDCFX_cjs.ModuleSchema; }
|
|
2865
2865
|
});
|
|
2866
2866
|
Object.defineProperty(exports, "OnDeleteActionSchema", {
|
|
2867
2867
|
enumerable: true,
|
|
2868
|
-
get: function () { return
|
|
2868
|
+
get: function () { return chunk5Y6JDCFX_cjs.OnDeleteActionSchema; }
|
|
2869
2869
|
});
|
|
2870
2870
|
Object.defineProperty(exports, "PLATFORM_ATTRIBUTE_NAMES", {
|
|
2871
2871
|
enumerable: true,
|
|
2872
|
-
get: function () { return
|
|
2872
|
+
get: function () { return chunk5Y6JDCFX_cjs.PLATFORM_ATTRIBUTE_NAMES; }
|
|
2873
2873
|
});
|
|
2874
2874
|
Object.defineProperty(exports, "PLATFORM_USER_ID", {
|
|
2875
2875
|
enumerable: true,
|
|
2876
|
-
get: function () { return
|
|
2876
|
+
get: function () { return chunk5Y6JDCFX_cjs.PLATFORM_USER_ID; }
|
|
2877
2877
|
});
|
|
2878
2878
|
Object.defineProperty(exports, "PageActionSchema", {
|
|
2879
2879
|
enumerable: true,
|
|
2880
|
-
get: function () { return
|
|
2880
|
+
get: function () { return chunk5Y6JDCFX_cjs.PageActionSchema; }
|
|
2881
2881
|
});
|
|
2882
2882
|
Object.defineProperty(exports, "PageIterator", {
|
|
2883
2883
|
enumerable: true,
|
|
2884
|
-
get: function () { return
|
|
2884
|
+
get: function () { return chunk5Y6JDCFX_cjs.PageIterator; }
|
|
2885
2885
|
});
|
|
2886
2886
|
Object.defineProperty(exports, "PageLayoutSchema", {
|
|
2887
2887
|
enumerable: true,
|
|
2888
|
-
get: function () { return
|
|
2888
|
+
get: function () { return chunk5Y6JDCFX_cjs.PageLayoutSchema; }
|
|
2889
2889
|
});
|
|
2890
2890
|
Object.defineProperty(exports, "PageSchema", {
|
|
2891
2891
|
enumerable: true,
|
|
2892
|
-
get: function () { return
|
|
2892
|
+
get: function () { return chunk5Y6JDCFX_cjs.PageSchema; }
|
|
2893
2893
|
});
|
|
2894
2894
|
Object.defineProperty(exports, "RelationAttributeMetaSchema", {
|
|
2895
2895
|
enumerable: true,
|
|
2896
|
-
get: function () { return
|
|
2896
|
+
get: function () { return chunk5Y6JDCFX_cjs.RelationAttributeMetaSchema; }
|
|
2897
2897
|
});
|
|
2898
2898
|
Object.defineProperty(exports, "ResponseMetaSchema", {
|
|
2899
2899
|
enumerable: true,
|
|
2900
|
-
get: function () { return
|
|
2900
|
+
get: function () { return chunk5Y6JDCFX_cjs.ResponseMetaSchema; }
|
|
2901
2901
|
});
|
|
2902
2902
|
Object.defineProperty(exports, "SortConfigSchema", {
|
|
2903
2903
|
enumerable: true,
|
|
2904
|
-
get: function () { return
|
|
2904
|
+
get: function () { return chunk5Y6JDCFX_cjs.SortConfigSchema; }
|
|
2905
2905
|
});
|
|
2906
2906
|
Object.defineProperty(exports, "UserRefSchema", {
|
|
2907
2907
|
enumerable: true,
|
|
2908
|
-
get: function () { return
|
|
2908
|
+
get: function () { return chunk5Y6JDCFX_cjs.UserRefSchema; }
|
|
2909
2909
|
});
|
|
2910
2910
|
Object.defineProperty(exports, "VariableSchema", {
|
|
2911
2911
|
enumerable: true,
|
|
2912
|
-
get: function () { return
|
|
2912
|
+
get: function () { return chunk5Y6JDCFX_cjs.VariableSchema; }
|
|
2913
2913
|
});
|
|
2914
2914
|
Object.defineProperty(exports, "allCurrencyCodes", {
|
|
2915
2915
|
enumerable: true,
|
|
2916
|
-
get: function () { return
|
|
2916
|
+
get: function () { return chunk5Y6JDCFX_cjs.allCurrencyCodes; }
|
|
2917
2917
|
});
|
|
2918
2918
|
Object.defineProperty(exports, "createIterator", {
|
|
2919
2919
|
enumerable: true,
|
|
2920
|
-
get: function () { return
|
|
2920
|
+
get: function () { return chunk5Y6JDCFX_cjs.createIterator; }
|
|
2921
2921
|
});
|
|
2922
2922
|
Object.defineProperty(exports, "createListResultSchema", {
|
|
2923
2923
|
enumerable: true,
|
|
2924
|
-
get: function () { return
|
|
2924
|
+
get: function () { return chunk5Y6JDCFX_cjs.createListResultSchema; }
|
|
2925
2925
|
});
|
|
2926
2926
|
Object.defineProperty(exports, "currencyLabel", {
|
|
2927
2927
|
enumerable: true,
|
|
2928
|
-
get: function () { return
|
|
2928
|
+
get: function () { return chunk5Y6JDCFX_cjs.currencyLabel; }
|
|
2929
2929
|
});
|
|
2930
2930
|
Object.defineProperty(exports, "currencySymbol", {
|
|
2931
2931
|
enumerable: true,
|
|
2932
|
-
get: function () { return
|
|
2932
|
+
get: function () { return chunk5Y6JDCFX_cjs.currencySymbol; }
|
|
2933
2933
|
});
|
|
2934
2934
|
Object.defineProperty(exports, "currencySymbolSide", {
|
|
2935
2935
|
enumerable: true,
|
|
2936
|
-
get: function () { return
|
|
2936
|
+
get: function () { return chunk5Y6JDCFX_cjs.currencySymbolSide; }
|
|
2937
2937
|
});
|
|
2938
2938
|
Object.defineProperty(exports, "formatAmount", {
|
|
2939
2939
|
enumerable: true,
|
|
2940
|
-
get: function () { return
|
|
2940
|
+
get: function () { return chunk5Y6JDCFX_cjs.formatAmount; }
|
|
2941
2941
|
});
|
|
2942
2942
|
Object.defineProperty(exports, "formatMoney", {
|
|
2943
2943
|
enumerable: true,
|
|
2944
|
-
get: function () { return
|
|
2944
|
+
get: function () { return chunk5Y6JDCFX_cjs.formatMoney; }
|
|
2945
2945
|
});
|
|
2946
2946
|
Object.defineProperty(exports, "isPlatformAttributeName", {
|
|
2947
2947
|
enumerable: true,
|
|
2948
|
-
get: function () { return
|
|
2948
|
+
get: function () { return chunk5Y6JDCFX_cjs.isPlatformAttributeName; }
|
|
2949
2949
|
});
|
|
2950
2950
|
Object.defineProperty(exports, "localeNumberSeparators", {
|
|
2951
2951
|
enumerable: true,
|
|
2952
|
-
get: function () { return
|
|
2952
|
+
get: function () { return chunk5Y6JDCFX_cjs.localeNumberSeparators; }
|
|
2953
2953
|
});
|
|
2954
2954
|
Object.defineProperty(exports, "parseAmount", {
|
|
2955
2955
|
enumerable: true,
|
|
2956
|
-
get: function () { return
|
|
2956
|
+
get: function () { return chunk5Y6JDCFX_cjs.parseAmount; }
|
|
2957
2957
|
});
|
|
2958
2958
|
Object.defineProperty(exports, "parseCurrencyMeta", {
|
|
2959
2959
|
enumerable: true,
|
|
2960
|
-
get: function () { return
|
|
2960
|
+
get: function () { return chunk5Y6JDCFX_cjs.parseCurrencyMeta; }
|
|
2961
2961
|
});
|
|
2962
2962
|
Object.defineProperty(exports, "parseFileMeta", {
|
|
2963
2963
|
enumerable: true,
|
|
2964
|
-
get: function () { return
|
|
2964
|
+
get: function () { return chunk5Y6JDCFX_cjs.parseFileMeta; }
|
|
2965
2965
|
});
|
|
2966
2966
|
Object.defineProperty(exports, "parseRelationMeta", {
|
|
2967
2967
|
enumerable: true,
|
|
2968
|
-
get: function () { return
|
|
2968
|
+
get: function () { return chunk5Y6JDCFX_cjs.parseRelationMeta; }
|
|
2969
2969
|
});
|
|
2970
2970
|
Object.defineProperty(exports, "platformAttributes", {
|
|
2971
2971
|
enumerable: true,
|
|
2972
|
-
get: function () { return
|
|
2972
|
+
get: function () { return chunk5Y6JDCFX_cjs.platformAttributes; }
|
|
2973
2973
|
});
|
|
2974
2974
|
exports.AccountClient = AccountClient;
|
|
2975
2975
|
exports.ActionSchema = ActionSchema;
|
package/dist/index.d.cts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { A as AuditFields, L as ListOptions, a as Attribute, U as UserRef$2, P as PageIterator, b as ListResult, c as ProteosClient, F as FileRef, d as PublicAccessOperation } from './types-
|
|
2
|
-
export { e as App, f as AppSchema, g as AppService, h as ArrayAttributeMeta, i as AttributeSchema, j as AttributeType, k as AuditFieldsSchema, C as ClientOptions, l as Column, m as ColumnSchema, n as ComparisonOperator, o as Component, p as ComponentSchema, q as ComponentService, r as CreateAppRequest, s as CreateComponentRequest, t as CreateDesignReferenceRequest, u as CreateEntityRequest, v as CreateListRequest, w as CreateListViewRequest, x as CreateMenuConfigurationRequest, y as CreatePageRequest, z as CreateVariableRequest, B as CurrencyAttributeMeta, D as CurrencyAttributeMetaSchema, E as CurrencySymbolSide, G as CurrencyValue, H as DEFAULT_OPTIONS, I as DEFAULT_PAGE_SIZE, J as DONE, K as DeployModuleRequest, M as DesignReference, N as DesignReferenceContent, O as DesignReferenceSchema, Q as DesignReferenceService, R as Done, S as Entity, T as EntitySchema, V as EntityService, W as EntityWithSchema, X as EntityWithSchemaSchema, Y as EnumAttributeMeta, Z as EnumValue, _ as FileAttributeMeta, $ as FileRefSchema, a0 as FilterElement, a1 as FilterElementSchema, a2 as FilterGroup, a3 as FilterGroupSchema, a4 as List, a5 as ListAppsOptions, a6 as ListComponentsOptions, a7 as ListDesignReferencesOptions, a8 as ListEntitiesOptions, a9 as ListFn, aa as ListListViewsOptions, ab as ListListsOptions, ac as ListMenuConfigurationsOptions, ad as ListModulesOptions, ae as ListPagesOptions, af as ListSchema, ag as ListService, ah as ListVariablesOptions, ai as ListView, aj as ListViewSchema, ak as ListViewService, al as LogicalOperator, am as MenuConfiguration, an as MenuConfigurationSchema, ao as MenuConfigurationService, ap as MenuItem, aq as MenuItemSchema, ar as MenuItemType, as as MetaClient, at as MetaListOptions, au as Module, av as ModuleSchema, aw as ModuleService, ax as ModuleStatus, ay as OnDeleteAction, az as OnDeleteActionSchema, aA as PLATFORM_ATTRIBUTE_NAMES, aB as PLATFORM_USER_ID, aC as Page, aD as PageAction, aE as PageActionSchema, aF as PageLayout, aG as PageLayoutSchema, aH as PageSchema, aI as PageService, aJ as PageType, aK as PublicPageComponent, aL as PublicPageResponse, aM as RelationAttributeMeta, aN as RelationAttributeMetaSchema, aO as RequestOptions, aP as ResolvedClientOptions, aQ as ResponseMeta, aR as ResponseMetaSchema, aS as SortConfig, aT as SortConfigSchema, aU as SortDirection, aV as Timestamps, aW as TokenProvider, aX as UpdateAppRequest, aY as UpdateComponentRequest, aZ as UpdateDesignReferenceRequest, a_ as UpdateEntityRequest, a$ as UpdateListRequest, b0 as UpdateListViewRequest, b1 as UpdateMenuConfigurationRequest, b2 as UpdatePageRequest, b3 as UpdateVariableRequest, b4 as UserRefSchema, b5 as UserType, b6 as Variable, b7 as VariableSchema, b8 as VariableService, b9 as allCurrencyCodes, ba as createIterator, bb as createListResultSchema, bc as currencyLabel, bd as currencySymbol, be as currencySymbolSide, bf as formatAmount, bg as formatMoney, bh as isPlatformAttributeName, bi as localeNumberSeparators, bj as parseAmount, bk as parseCurrencyMeta, bl as parseFileMeta, bm as parseRelationMeta, bn as platformAttributes, bo as resolveOptions } from './types-
|
|
1
|
+
import { A as AuditFields, L as ListOptions, a as Attribute, U as UserRef$2, P as PageIterator, b as ListResult, c as ProteosClient, F as FileRef, d as PublicAccessOperation } from './types-Biohdxjn.cjs';
|
|
2
|
+
export { e as App, f as AppSchema, g as AppService, h as ArrayAttributeMeta, i as AttributeSchema, j as AttributeType, k as AuditFieldsSchema, C as ClientOptions, l as Column, m as ColumnSchema, n as ComparisonOperator, o as Component, p as ComponentSchema, q as ComponentService, r as CreateAppRequest, s as CreateComponentRequest, t as CreateDesignReferenceRequest, u as CreateEntityRequest, v as CreateListRequest, w as CreateListViewRequest, x as CreateMenuConfigurationRequest, y as CreatePageRequest, z as CreateVariableRequest, B as CurrencyAttributeMeta, D as CurrencyAttributeMetaSchema, E as CurrencySymbolSide, G as CurrencyValue, H as DEFAULT_OPTIONS, I as DEFAULT_PAGE_SIZE, J as DONE, K as DeployModuleRequest, M as DesignReference, N as DesignReferenceContent, O as DesignReferenceSchema, Q as DesignReferenceService, R as Done, S as Entity, T as EntitySchema, V as EntityService, W as EntityWithSchema, X as EntityWithSchemaSchema, Y as EnumAttributeMeta, Z as EnumValue, _ as FileAttributeMeta, $ as FileRefSchema, a0 as FilterElement, a1 as FilterElementSchema, a2 as FilterGroup, a3 as FilterGroupSchema, a4 as List, a5 as ListAppsOptions, a6 as ListComponentsOptions, a7 as ListDesignReferencesOptions, a8 as ListEntitiesOptions, a9 as ListFn, aa as ListListViewsOptions, ab as ListListsOptions, ac as ListMenuConfigurationsOptions, ad as ListModulesOptions, ae as ListPagesOptions, af as ListSchema, ag as ListService, ah as ListVariablesOptions, ai as ListView, aj as ListViewSchema, ak as ListViewService, al as LogicalOperator, am as MenuConfiguration, an as MenuConfigurationSchema, ao as MenuConfigurationService, ap as MenuItem, aq as MenuItemSchema, ar as MenuItemType, as as MetaClient, at as MetaListOptions, au as Module, av as ModuleSchema, aw as ModuleService, ax as ModuleStatus, ay as OnDeleteAction, az as OnDeleteActionSchema, aA as PLATFORM_ATTRIBUTE_NAMES, aB as PLATFORM_USER_ID, aC as Page, aD as PageAction, aE as PageActionSchema, aF as PageLayout, aG as PageLayoutSchema, aH as PageSchema, aI as PageService, aJ as PageType, aK as PublicPageComponent, aL as PublicPageResponse, aM as RelationAttributeMeta, aN as RelationAttributeMetaSchema, aO as RequestOptions, aP as ResolvedClientOptions, aQ as ResponseMeta, aR as ResponseMetaSchema, aS as SortConfig, aT as SortConfigSchema, aU as SortDirection, aV as Timestamps, aW as TokenProvider, aX as UpdateAppRequest, aY as UpdateComponentRequest, aZ as UpdateDesignReferenceRequest, a_ as UpdateEntityRequest, a$ as UpdateListRequest, b0 as UpdateListViewRequest, b1 as UpdateMenuConfigurationRequest, b2 as UpdatePageRequest, b3 as UpdateVariableRequest, b4 as UserRefSchema, b5 as UserType, b6 as Variable, b7 as VariableSchema, b8 as VariableService, b9 as allCurrencyCodes, ba as createIterator, bb as createListResultSchema, bc as currencyLabel, bd as currencySymbol, be as currencySymbolSide, bf as formatAmount, bg as formatMoney, bh as isPlatformAttributeName, bi as localeNumberSeparators, bj as parseAmount, bk as parseCurrencyMeta, bl as parseFileMeta, bm as parseRelationMeta, bn as platformAttributes, bo as resolveOptions } from './types-Biohdxjn.cjs';
|
|
3
3
|
import { z } from 'zod';
|
|
4
4
|
|
|
5
5
|
/**
|
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { A as AuditFields, L as ListOptions, a as Attribute, U as UserRef$2, P as PageIterator, b as ListResult, c as ProteosClient, F as FileRef, d as PublicAccessOperation } from './types-
|
|
2
|
-
export { e as App, f as AppSchema, g as AppService, h as ArrayAttributeMeta, i as AttributeSchema, j as AttributeType, k as AuditFieldsSchema, C as ClientOptions, l as Column, m as ColumnSchema, n as ComparisonOperator, o as Component, p as ComponentSchema, q as ComponentService, r as CreateAppRequest, s as CreateComponentRequest, t as CreateDesignReferenceRequest, u as CreateEntityRequest, v as CreateListRequest, w as CreateListViewRequest, x as CreateMenuConfigurationRequest, y as CreatePageRequest, z as CreateVariableRequest, B as CurrencyAttributeMeta, D as CurrencyAttributeMetaSchema, E as CurrencySymbolSide, G as CurrencyValue, H as DEFAULT_OPTIONS, I as DEFAULT_PAGE_SIZE, J as DONE, K as DeployModuleRequest, M as DesignReference, N as DesignReferenceContent, O as DesignReferenceSchema, Q as DesignReferenceService, R as Done, S as Entity, T as EntitySchema, V as EntityService, W as EntityWithSchema, X as EntityWithSchemaSchema, Y as EnumAttributeMeta, Z as EnumValue, _ as FileAttributeMeta, $ as FileRefSchema, a0 as FilterElement, a1 as FilterElementSchema, a2 as FilterGroup, a3 as FilterGroupSchema, a4 as List, a5 as ListAppsOptions, a6 as ListComponentsOptions, a7 as ListDesignReferencesOptions, a8 as ListEntitiesOptions, a9 as ListFn, aa as ListListViewsOptions, ab as ListListsOptions, ac as ListMenuConfigurationsOptions, ad as ListModulesOptions, ae as ListPagesOptions, af as ListSchema, ag as ListService, ah as ListVariablesOptions, ai as ListView, aj as ListViewSchema, ak as ListViewService, al as LogicalOperator, am as MenuConfiguration, an as MenuConfigurationSchema, ao as MenuConfigurationService, ap as MenuItem, aq as MenuItemSchema, ar as MenuItemType, as as MetaClient, at as MetaListOptions, au as Module, av as ModuleSchema, aw as ModuleService, ax as ModuleStatus, ay as OnDeleteAction, az as OnDeleteActionSchema, aA as PLATFORM_ATTRIBUTE_NAMES, aB as PLATFORM_USER_ID, aC as Page, aD as PageAction, aE as PageActionSchema, aF as PageLayout, aG as PageLayoutSchema, aH as PageSchema, aI as PageService, aJ as PageType, aK as PublicPageComponent, aL as PublicPageResponse, aM as RelationAttributeMeta, aN as RelationAttributeMetaSchema, aO as RequestOptions, aP as ResolvedClientOptions, aQ as ResponseMeta, aR as ResponseMetaSchema, aS as SortConfig, aT as SortConfigSchema, aU as SortDirection, aV as Timestamps, aW as TokenProvider, aX as UpdateAppRequest, aY as UpdateComponentRequest, aZ as UpdateDesignReferenceRequest, a_ as UpdateEntityRequest, a$ as UpdateListRequest, b0 as UpdateListViewRequest, b1 as UpdateMenuConfigurationRequest, b2 as UpdatePageRequest, b3 as UpdateVariableRequest, b4 as UserRefSchema, b5 as UserType, b6 as Variable, b7 as VariableSchema, b8 as VariableService, b9 as allCurrencyCodes, ba as createIterator, bb as createListResultSchema, bc as currencyLabel, bd as currencySymbol, be as currencySymbolSide, bf as formatAmount, bg as formatMoney, bh as isPlatformAttributeName, bi as localeNumberSeparators, bj as parseAmount, bk as parseCurrencyMeta, bl as parseFileMeta, bm as parseRelationMeta, bn as platformAttributes, bo as resolveOptions } from './types-
|
|
1
|
+
import { A as AuditFields, L as ListOptions, a as Attribute, U as UserRef$2, P as PageIterator, b as ListResult, c as ProteosClient, F as FileRef, d as PublicAccessOperation } from './types-Biohdxjn.js';
|
|
2
|
+
export { e as App, f as AppSchema, g as AppService, h as ArrayAttributeMeta, i as AttributeSchema, j as AttributeType, k as AuditFieldsSchema, C as ClientOptions, l as Column, m as ColumnSchema, n as ComparisonOperator, o as Component, p as ComponentSchema, q as ComponentService, r as CreateAppRequest, s as CreateComponentRequest, t as CreateDesignReferenceRequest, u as CreateEntityRequest, v as CreateListRequest, w as CreateListViewRequest, x as CreateMenuConfigurationRequest, y as CreatePageRequest, z as CreateVariableRequest, B as CurrencyAttributeMeta, D as CurrencyAttributeMetaSchema, E as CurrencySymbolSide, G as CurrencyValue, H as DEFAULT_OPTIONS, I as DEFAULT_PAGE_SIZE, J as DONE, K as DeployModuleRequest, M as DesignReference, N as DesignReferenceContent, O as DesignReferenceSchema, Q as DesignReferenceService, R as Done, S as Entity, T as EntitySchema, V as EntityService, W as EntityWithSchema, X as EntityWithSchemaSchema, Y as EnumAttributeMeta, Z as EnumValue, _ as FileAttributeMeta, $ as FileRefSchema, a0 as FilterElement, a1 as FilterElementSchema, a2 as FilterGroup, a3 as FilterGroupSchema, a4 as List, a5 as ListAppsOptions, a6 as ListComponentsOptions, a7 as ListDesignReferencesOptions, a8 as ListEntitiesOptions, a9 as ListFn, aa as ListListViewsOptions, ab as ListListsOptions, ac as ListMenuConfigurationsOptions, ad as ListModulesOptions, ae as ListPagesOptions, af as ListSchema, ag as ListService, ah as ListVariablesOptions, ai as ListView, aj as ListViewSchema, ak as ListViewService, al as LogicalOperator, am as MenuConfiguration, an as MenuConfigurationSchema, ao as MenuConfigurationService, ap as MenuItem, aq as MenuItemSchema, ar as MenuItemType, as as MetaClient, at as MetaListOptions, au as Module, av as ModuleSchema, aw as ModuleService, ax as ModuleStatus, ay as OnDeleteAction, az as OnDeleteActionSchema, aA as PLATFORM_ATTRIBUTE_NAMES, aB as PLATFORM_USER_ID, aC as Page, aD as PageAction, aE as PageActionSchema, aF as PageLayout, aG as PageLayoutSchema, aH as PageSchema, aI as PageService, aJ as PageType, aK as PublicPageComponent, aL as PublicPageResponse, aM as RelationAttributeMeta, aN as RelationAttributeMetaSchema, aO as RequestOptions, aP as ResolvedClientOptions, aQ as ResponseMeta, aR as ResponseMetaSchema, aS as SortConfig, aT as SortConfigSchema, aU as SortDirection, aV as Timestamps, aW as TokenProvider, aX as UpdateAppRequest, aY as UpdateComponentRequest, aZ as UpdateDesignReferenceRequest, a_ as UpdateEntityRequest, a$ as UpdateListRequest, b0 as UpdateListViewRequest, b1 as UpdateMenuConfigurationRequest, b2 as UpdatePageRequest, b3 as UpdateVariableRequest, b4 as UserRefSchema, b5 as UserType, b6 as Variable, b7 as VariableSchema, b8 as VariableService, b9 as allCurrencyCodes, ba as createIterator, bb as createListResultSchema, bc as currencyLabel, bd as currencySymbol, be as currencySymbolSide, bf as formatAmount, bg as formatMoney, bh as isPlatformAttributeName, bi as localeNumberSeparators, bj as parseAmount, bk as parseCurrencyMeta, bl as parseFileMeta, bm as parseRelationMeta, bn as platformAttributes, bo as resolveOptions } from './types-Biohdxjn.js';
|
|
3
3
|
import { z } from 'zod';
|
|
4
4
|
|
|
5
5
|
/**
|
package/dist/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { AuditFieldsSchema, AttributeSchema, UserRefSchema, PageIterator } from './chunk-
|
|
2
|
-
export { AppSchema, AttributeSchema, AuditFieldsSchema, ColumnSchema, ComponentSchema, CurrencyAttributeMetaSchema, DEFAULT_PAGE_SIZE, DONE, DesignReferenceSchema, EntitySchema, EntityWithSchemaSchema, FileRefSchema, FilterElementSchema, FilterGroupSchema, ListSchema, ListViewSchema, MenuConfigurationSchema, MenuItemSchema, MenuItemType, MetaClient, ModuleSchema, OnDeleteActionSchema, PLATFORM_ATTRIBUTE_NAMES, PLATFORM_USER_ID, PageActionSchema, PageIterator, PageLayoutSchema, PageSchema, RelationAttributeMetaSchema, ResponseMetaSchema, SortConfigSchema, UserRefSchema, VariableSchema, allCurrencyCodes, createIterator, createListResultSchema, currencyLabel, currencySymbol, currencySymbolSide, formatAmount, formatMoney, isPlatformAttributeName, localeNumberSeparators, parseAmount, parseCurrencyMeta, parseFileMeta, parseRelationMeta, platformAttributes } from './chunk-
|
|
1
|
+
import { AuditFieldsSchema, AttributeSchema, UserRefSchema, PageIterator } from './chunk-ONMJ52OX.js';
|
|
2
|
+
export { AppSchema, AttributeSchema, AuditFieldsSchema, ColumnSchema, ComponentSchema, CurrencyAttributeMetaSchema, DEFAULT_PAGE_SIZE, DONE, DesignReferenceSchema, EntitySchema, EntityWithSchemaSchema, FileRefSchema, FilterElementSchema, FilterGroupSchema, ListSchema, ListViewSchema, MenuConfigurationSchema, MenuItemSchema, MenuItemType, MetaClient, ModuleSchema, OnDeleteActionSchema, PLATFORM_ATTRIBUTE_NAMES, PLATFORM_USER_ID, PageActionSchema, PageIterator, PageLayoutSchema, PageSchema, RelationAttributeMetaSchema, ResponseMetaSchema, SortConfigSchema, UserRefSchema, VariableSchema, allCurrencyCodes, createIterator, createListResultSchema, currencyLabel, currencySymbol, currencySymbolSide, formatAmount, formatMoney, isPlatformAttributeName, localeNumberSeparators, parseAmount, parseCurrencyMeta, parseFileMeta, parseRelationMeta, platformAttributes } from './chunk-ONMJ52OX.js';
|
|
3
3
|
import { z } from 'zod';
|
|
4
4
|
import { fetchEventSource } from '@microsoft/fetch-event-source';
|
|
5
5
|
|