@proteos/sdk 0.20.5 → 0.21.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-7RGN4E22.cjs → chunk-DD6H5PIF.cjs} +14 -4
- package/dist/chunk-DD6H5PIF.cjs.map +1 -0
- package/dist/{chunk-XJP5WCRZ.js → chunk-OUVD2XJX.js} +14 -4
- package/dist/chunk-OUVD2XJX.js.map +1 -0
- package/dist/index.cjs +96 -85
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +12 -2
- package/dist/index.d.ts +12 -2
- package/dist/index.js +16 -5
- package/dist/index.js.map +1 -1
- package/dist/meta/index.cjs +50 -50
- 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-BNsjfU8N.d.cts → types-PzImL4QI.d.cts} +64 -9
- package/dist/{types-BNsjfU8N.d.ts → types-PzImL4QI.d.ts} +64 -9
- package/package.json +1 -1
- package/src/client.ts +5 -3
- package/src/functions/actions.ts +25 -0
- package/src/index.ts +3 -0
- package/src/meta/index.ts +3 -0
- package/src/meta/pages.ts +28 -1
- package/src/meta/types.ts +45 -6
- package/src/types/options.ts +6 -0
- package/dist/chunk-7RGN4E22.cjs.map +0 -1
- package/dist/chunk-XJP5WCRZ.js.map +0 -1
package/dist/index.cjs
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var chunkDD6H5PIF_cjs = require('./chunk-DD6H5PIF.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 chunkDD6H5PIF_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 chunkDD6H5PIF_cjs.PageIterator((opts) => this.listPage(opts), options);
|
|
43
43
|
}
|
|
44
44
|
async listPage(options = {}) {
|
|
45
45
|
return this.client.requestWithQuery(
|
|
@@ -93,7 +93,7 @@ var PromptServiceImpl = class {
|
|
|
93
93
|
}
|
|
94
94
|
client;
|
|
95
95
|
list(options = {}) {
|
|
96
|
-
return new
|
|
96
|
+
return new chunkDD6H5PIF_cjs.PageIterator((opts) => this.listPage(opts), options);
|
|
97
97
|
}
|
|
98
98
|
async listPage(options = {}) {
|
|
99
99
|
return this.client.requestWithQuery("GET", PROMPTS_BASE_PATH, options);
|
|
@@ -133,7 +133,7 @@ var SessionServiceImpl = class {
|
|
|
133
133
|
}
|
|
134
134
|
client;
|
|
135
135
|
list(options = {}) {
|
|
136
|
-
return new
|
|
136
|
+
return new chunkDD6H5PIF_cjs.PageIterator((opts) => this.listPage(opts), options);
|
|
137
137
|
}
|
|
138
138
|
async listPage(options = {}) {
|
|
139
139
|
return this.client.requestWithQuery("GET", SESSIONS_BASE_PATH, options);
|
|
@@ -223,7 +223,7 @@ var SkillServiceImpl = class {
|
|
|
223
223
|
}
|
|
224
224
|
client;
|
|
225
225
|
list(options = {}) {
|
|
226
|
-
return new
|
|
226
|
+
return new chunkDD6H5PIF_cjs.PageIterator((opts) => this.listPage(opts), options);
|
|
227
227
|
}
|
|
228
228
|
async listPage(options = {}) {
|
|
229
229
|
return this.client.requestWithQuery("GET", SKILLS_BASE_PATH, options);
|
|
@@ -266,7 +266,7 @@ var ToolServiceImpl = class {
|
|
|
266
266
|
}
|
|
267
267
|
client;
|
|
268
268
|
list(options = {}) {
|
|
269
|
-
return new
|
|
269
|
+
return new chunkDD6H5PIF_cjs.PageIterator((opts) => this.listPage(opts), options);
|
|
270
270
|
}
|
|
271
271
|
async listPage(options = {}) {
|
|
272
272
|
return this.client.requestWithQuery("GET", TOOLS_BASE_PATH, options);
|
|
@@ -341,7 +341,7 @@ var OrganizationServiceImpl = class {
|
|
|
341
341
|
}
|
|
342
342
|
client;
|
|
343
343
|
list(options = {}) {
|
|
344
|
-
return new
|
|
344
|
+
return new chunkDD6H5PIF_cjs.PageIterator((opts) => this.listPage(opts), options);
|
|
345
345
|
}
|
|
346
346
|
async listPage(options = {}) {
|
|
347
347
|
return this.client.requestWithQuery(
|
|
@@ -372,7 +372,7 @@ var RoleServiceImpl = class {
|
|
|
372
372
|
}
|
|
373
373
|
client;
|
|
374
374
|
list(options = {}) {
|
|
375
|
-
return new
|
|
375
|
+
return new chunkDD6H5PIF_cjs.PageIterator((opts) => this.listPage(opts), options);
|
|
376
376
|
}
|
|
377
377
|
async listPage(options = {}) {
|
|
378
378
|
return this.client.requestWithQuery("GET", ROLES_BASE_PATH, options);
|
|
@@ -393,7 +393,7 @@ var RoleServiceImpl = class {
|
|
|
393
393
|
await this.client.request("DELETE", `${ROLES_BASE_PATH}/${slug}`);
|
|
394
394
|
}
|
|
395
395
|
getPermissions(roleSlug, options = {}) {
|
|
396
|
-
return new
|
|
396
|
+
return new chunkDD6H5PIF_cjs.PageIterator((opts) => this.fetchPermissionsPage(roleSlug, opts), options);
|
|
397
397
|
}
|
|
398
398
|
async assignPermission(roleSlug, request) {
|
|
399
399
|
return this.client.request(
|
|
@@ -425,7 +425,7 @@ var UserServiceImpl = class {
|
|
|
425
425
|
}
|
|
426
426
|
client;
|
|
427
427
|
list(options = {}) {
|
|
428
|
-
return new
|
|
428
|
+
return new chunkDD6H5PIF_cjs.PageIterator((opts) => this.listPage(opts), options);
|
|
429
429
|
}
|
|
430
430
|
async listPage(options = {}) {
|
|
431
431
|
return this.client.requestWithQuery("GET", USERS_BASE_PATH, options);
|
|
@@ -440,7 +440,7 @@ var UserServiceImpl = class {
|
|
|
440
440
|
return this.client.request("PATCH", `${USERS_BASE_PATH}/${id}`, request);
|
|
441
441
|
}
|
|
442
442
|
getRoles(userId, options = {}) {
|
|
443
|
-
return new
|
|
443
|
+
return new chunkDD6H5PIF_cjs.PageIterator((opts) => this.fetchRolesPage(userId, opts), options);
|
|
444
444
|
}
|
|
445
445
|
async assignRole(userId, request) {
|
|
446
446
|
return this.client.request(
|
|
@@ -537,19 +537,19 @@ var PLATFORM_ENTITY_SLUGS = PLATFORM_ENTITIES.map(
|
|
|
537
537
|
function isPlatformEntity(slug) {
|
|
538
538
|
return PLATFORM_ENTITY_SLUGS.includes(slug);
|
|
539
539
|
}
|
|
540
|
-
var RoleEntityPermissionSchema =
|
|
540
|
+
var RoleEntityPermissionSchema = chunkDD6H5PIF_cjs.AuditFieldsSchema.extend({
|
|
541
541
|
id: zod.z.string(),
|
|
542
542
|
role_slug: zod.z.string(),
|
|
543
543
|
entity_slug: zod.z.string(),
|
|
544
544
|
permission: zod.z.enum(["read", "write", "delete"])
|
|
545
545
|
});
|
|
546
|
-
var UserRoleAssignmentSchema =
|
|
546
|
+
var UserRoleAssignmentSchema = chunkDD6H5PIF_cjs.AuditFieldsSchema.extend({
|
|
547
547
|
id: zod.z.string(),
|
|
548
548
|
user_id: zod.z.string(),
|
|
549
549
|
role_slug: zod.z.string(),
|
|
550
550
|
org_id: zod.z.string()
|
|
551
551
|
});
|
|
552
|
-
var UserSchema =
|
|
552
|
+
var UserSchema = chunkDD6H5PIF_cjs.AuditFieldsSchema.extend({
|
|
553
553
|
id: zod.z.string(),
|
|
554
554
|
email: zod.z.string(),
|
|
555
555
|
given_name: zod.z.string(),
|
|
@@ -557,7 +557,7 @@ var UserSchema = chunk7RGN4E22_cjs.AuditFieldsSchema.extend({
|
|
|
557
557
|
external_id: zod.z.string(),
|
|
558
558
|
default_org_id: zod.z.string()
|
|
559
559
|
});
|
|
560
|
-
|
|
560
|
+
chunkDD6H5PIF_cjs.AuditFieldsSchema.extend({
|
|
561
561
|
id: zod.z.string(),
|
|
562
562
|
user_id: zod.z.string(),
|
|
563
563
|
org_id: zod.z.string(),
|
|
@@ -567,13 +567,13 @@ chunk7RGN4E22_cjs.AuditFieldsSchema.extend({
|
|
|
567
567
|
expires_at: zod.z.string().nullable(),
|
|
568
568
|
last_used_at: zod.z.string().nullable()
|
|
569
569
|
});
|
|
570
|
-
var RoleSchema =
|
|
570
|
+
var RoleSchema = chunkDD6H5PIF_cjs.AuditFieldsSchema.extend({
|
|
571
571
|
slug: zod.z.string(),
|
|
572
572
|
name: zod.z.string(),
|
|
573
573
|
org_id: zod.z.string(),
|
|
574
574
|
description: zod.z.string()
|
|
575
575
|
});
|
|
576
|
-
var OrganizationSchema =
|
|
576
|
+
var OrganizationSchema = chunkDD6H5PIF_cjs.AuditFieldsSchema.extend({
|
|
577
577
|
id: zod.z.string(),
|
|
578
578
|
name: zod.z.string(),
|
|
579
579
|
description: zod.z.string()
|
|
@@ -817,9 +817,11 @@ var ProteosClient = class {
|
|
|
817
817
|
...this.options.headers,
|
|
818
818
|
...requestOptions?.headers
|
|
819
819
|
});
|
|
820
|
-
|
|
821
|
-
|
|
822
|
-
|
|
820
|
+
if (!requestOptions?.skipAuth) {
|
|
821
|
+
const token = await this.getToken();
|
|
822
|
+
if (token) {
|
|
823
|
+
headers.set("Authorization", `Bearer ${token}`);
|
|
824
|
+
}
|
|
823
825
|
}
|
|
824
826
|
return headers;
|
|
825
827
|
}
|
|
@@ -1423,7 +1425,7 @@ var RecordServiceImpl = class {
|
|
|
1423
1425
|
}
|
|
1424
1426
|
client;
|
|
1425
1427
|
list(entitySlug, options = {}) {
|
|
1426
|
-
return new
|
|
1428
|
+
return new chunkDD6H5PIF_cjs.PageIterator((opts) => this.listPage(entitySlug, opts), options);
|
|
1427
1429
|
}
|
|
1428
1430
|
async listPage(entitySlug, options = {}) {
|
|
1429
1431
|
return this.client.requestWithQuery(
|
|
@@ -1595,7 +1597,7 @@ var ActionServiceImpl = class {
|
|
|
1595
1597
|
}
|
|
1596
1598
|
client;
|
|
1597
1599
|
list(options = {}) {
|
|
1598
|
-
return new
|
|
1600
|
+
return new chunkDD6H5PIF_cjs.PageIterator((opts) => this.listPage(opts), options);
|
|
1599
1601
|
}
|
|
1600
1602
|
async listPage(options = {}) {
|
|
1601
1603
|
return this.client.requestWithQuery("GET", ACTIONS_BASE_PATH, options);
|
|
@@ -1611,6 +1613,15 @@ var ActionServiceImpl = class {
|
|
|
1611
1613
|
);
|
|
1612
1614
|
return response.result;
|
|
1613
1615
|
}
|
|
1616
|
+
async invokePublic(orgId, slug, params) {
|
|
1617
|
+
const response = await this.client.request(
|
|
1618
|
+
"POST",
|
|
1619
|
+
`/functions/v1/public/orgs/${encodeURIComponent(orgId)}/actions/${encodeURIComponent(slug)}/invoke`,
|
|
1620
|
+
params,
|
|
1621
|
+
{ skipAuth: true }
|
|
1622
|
+
);
|
|
1623
|
+
return response.result;
|
|
1624
|
+
}
|
|
1614
1625
|
async invokeEntity(entitySlug, recordId, slug, params) {
|
|
1615
1626
|
const response = await this.client.request(
|
|
1616
1627
|
"POST",
|
|
@@ -1621,7 +1632,7 @@ var ActionServiceImpl = class {
|
|
|
1621
1632
|
}
|
|
1622
1633
|
};
|
|
1623
1634
|
var ActionScopeSchema = zod.z.enum(["entity", "global"]);
|
|
1624
|
-
var ActionSchema =
|
|
1635
|
+
var ActionSchema = chunkDD6H5PIF_cjs.AuditFieldsSchema.extend({
|
|
1625
1636
|
slug: zod.z.string(),
|
|
1626
1637
|
org_id: zod.z.string(),
|
|
1627
1638
|
module_slug: zod.z.string(),
|
|
@@ -1630,8 +1641,8 @@ var ActionSchema = chunk7RGN4E22_cjs.AuditFieldsSchema.extend({
|
|
|
1630
1641
|
name: zod.z.string(),
|
|
1631
1642
|
is_active: zod.z.boolean(),
|
|
1632
1643
|
file_id: zod.z.string(),
|
|
1633
|
-
params: zod.z.array(
|
|
1634
|
-
returns: zod.z.array(
|
|
1644
|
+
params: zod.z.array(chunkDD6H5PIF_cjs.AttributeSchema),
|
|
1645
|
+
returns: zod.z.array(chunkDD6H5PIF_cjs.AttributeSchema)
|
|
1635
1646
|
});
|
|
1636
1647
|
|
|
1637
1648
|
// src/functions/index.ts
|
|
@@ -1666,7 +1677,7 @@ var LabelServiceImpl = class {
|
|
|
1666
1677
|
}
|
|
1667
1678
|
client;
|
|
1668
1679
|
list(options = {}) {
|
|
1669
|
-
return new
|
|
1680
|
+
return new chunkDD6H5PIF_cjs.PageIterator((opts) => this.listPage(opts), options);
|
|
1670
1681
|
}
|
|
1671
1682
|
async listPage(options = {}) {
|
|
1672
1683
|
return this.client.requestWithQuery(
|
|
@@ -1697,7 +1708,7 @@ var LinkServiceImpl = class {
|
|
|
1697
1708
|
}
|
|
1698
1709
|
client;
|
|
1699
1710
|
list(options = {}) {
|
|
1700
|
-
return new
|
|
1711
|
+
return new chunkDD6H5PIF_cjs.PageIterator((opts) => this.listPage(opts), options);
|
|
1701
1712
|
}
|
|
1702
1713
|
async listPage(options = {}) {
|
|
1703
1714
|
return this.client.requestWithQuery("GET", LINKS_BASE_PATH, options);
|
|
@@ -1724,7 +1735,7 @@ var NodeServiceImpl = class {
|
|
|
1724
1735
|
}
|
|
1725
1736
|
client;
|
|
1726
1737
|
list(options = {}) {
|
|
1727
|
-
return new
|
|
1738
|
+
return new chunkDD6H5PIF_cjs.PageIterator((opts) => this.listPage(opts), options);
|
|
1728
1739
|
}
|
|
1729
1740
|
async listPage(options = {}) {
|
|
1730
1741
|
const { label_ids, ...rest } = options;
|
|
@@ -1818,7 +1829,7 @@ var RecordLinkServiceImpl = class {
|
|
|
1818
1829
|
}
|
|
1819
1830
|
client;
|
|
1820
1831
|
list(options = {}) {
|
|
1821
|
-
return new
|
|
1832
|
+
return new chunkDD6H5PIF_cjs.PageIterator((opts) => this.listPage(opts), options);
|
|
1822
1833
|
}
|
|
1823
1834
|
async listPage(options = {}) {
|
|
1824
1835
|
return this.client.requestWithQuery(
|
|
@@ -1850,7 +1861,7 @@ var KnowledgeNodeMetadataSchema = zod.z.object({
|
|
|
1850
1861
|
summary: zod.z.string().nullish(),
|
|
1851
1862
|
valid_from: zod.z.string().nullish(),
|
|
1852
1863
|
valid_until: zod.z.string().nullish()
|
|
1853
|
-
}).merge(
|
|
1864
|
+
}).merge(chunkDD6H5PIF_cjs.AuditFieldsSchema);
|
|
1854
1865
|
var KnowledgeNodeSchema = KnowledgeNodeMetadataSchema.extend({
|
|
1855
1866
|
content: zod.z.string()
|
|
1856
1867
|
});
|
|
@@ -1874,7 +1885,7 @@ var KnowledgeLinkSchema = zod.z.object({
|
|
|
1874
1885
|
"superseded_by"
|
|
1875
1886
|
]),
|
|
1876
1887
|
description: zod.z.string().nullish()
|
|
1877
|
-
}).merge(
|
|
1888
|
+
}).merge(chunkDD6H5PIF_cjs.AuditFieldsSchema);
|
|
1878
1889
|
var KnowledgeRecordLinkSchema = zod.z.object({
|
|
1879
1890
|
id: zod.z.string(),
|
|
1880
1891
|
org_id: zod.z.string(),
|
|
@@ -1882,7 +1893,7 @@ var KnowledgeRecordLinkSchema = zod.z.object({
|
|
|
1882
1893
|
entity_slug: zod.z.string(),
|
|
1883
1894
|
record_id: zod.z.string(),
|
|
1884
1895
|
created_at: zod.z.string(),
|
|
1885
|
-
created_by:
|
|
1896
|
+
created_by: chunkDD6H5PIF_cjs.UserRefSchema
|
|
1886
1897
|
});
|
|
1887
1898
|
var KnowledgeLabelSchema = zod.z.object({
|
|
1888
1899
|
id: zod.z.string(),
|
|
@@ -1892,13 +1903,13 @@ var KnowledgeLabelSchema = zod.z.object({
|
|
|
1892
1903
|
description: zod.z.string().nullish(),
|
|
1893
1904
|
color: zod.z.string().nullish(),
|
|
1894
1905
|
icon: zod.z.string().nullish()
|
|
1895
|
-
}).merge(
|
|
1906
|
+
}).merge(chunkDD6H5PIF_cjs.AuditFieldsSchema);
|
|
1896
1907
|
var KnowledgeNodeLabelSchema = zod.z.object({
|
|
1897
1908
|
org_id: zod.z.string(),
|
|
1898
1909
|
node_id: zod.z.string(),
|
|
1899
1910
|
label_id: zod.z.string(),
|
|
1900
1911
|
created_at: zod.z.string(),
|
|
1901
|
-
created_by:
|
|
1912
|
+
created_by: chunkDD6H5PIF_cjs.UserRefSchema
|
|
1902
1913
|
});
|
|
1903
1914
|
var NodeNeighborhoodSchema = zod.z.object({
|
|
1904
1915
|
nodes: zod.z.array(
|
|
@@ -2042,7 +2053,7 @@ var ExecutionServiceImpl = class {
|
|
|
2042
2053
|
}
|
|
2043
2054
|
client;
|
|
2044
2055
|
list(options = {}) {
|
|
2045
|
-
return new
|
|
2056
|
+
return new chunkDD6H5PIF_cjs.PageIterator((opts) => this.listPage(opts), options);
|
|
2046
2057
|
}
|
|
2047
2058
|
async listPage(options = {}) {
|
|
2048
2059
|
return this.client.requestWithQuery(
|
|
@@ -2101,7 +2112,7 @@ var WorkflowServiceImpl = class {
|
|
|
2101
2112
|
}
|
|
2102
2113
|
client;
|
|
2103
2114
|
list(options = {}) {
|
|
2104
|
-
return new
|
|
2115
|
+
return new chunkDD6H5PIF_cjs.PageIterator((opts) => this.listPage(opts), options);
|
|
2105
2116
|
}
|
|
2106
2117
|
async listPage(options = {}) {
|
|
2107
2118
|
return this.client.requestWithQuery("GET", WORKFLOWS_BASE_PATH2, options);
|
|
@@ -2139,7 +2150,7 @@ var WorkflowServiceImpl = class {
|
|
|
2139
2150
|
return this.client.request("POST", `${WORKFLOWS_BASE_PATH2}/${key}/unpause`, {});
|
|
2140
2151
|
}
|
|
2141
2152
|
listVersions(key, options = {}) {
|
|
2142
|
-
return new
|
|
2153
|
+
return new chunkDD6H5PIF_cjs.PageIterator((opts) => this.listVersionsPage(key, opts), options);
|
|
2143
2154
|
}
|
|
2144
2155
|
async listVersionsPage(key, options = {}) {
|
|
2145
2156
|
return this.client.requestWithQuery(
|
|
@@ -2184,191 +2195,191 @@ var WorkflowClient = class {
|
|
|
2184
2195
|
|
|
2185
2196
|
Object.defineProperty(exports, "AppSchema", {
|
|
2186
2197
|
enumerable: true,
|
|
2187
|
-
get: function () { return
|
|
2198
|
+
get: function () { return chunkDD6H5PIF_cjs.AppSchema; }
|
|
2188
2199
|
});
|
|
2189
2200
|
Object.defineProperty(exports, "AttributeSchema", {
|
|
2190
2201
|
enumerable: true,
|
|
2191
|
-
get: function () { return
|
|
2202
|
+
get: function () { return chunkDD6H5PIF_cjs.AttributeSchema; }
|
|
2192
2203
|
});
|
|
2193
2204
|
Object.defineProperty(exports, "AuditFieldsSchema", {
|
|
2194
2205
|
enumerable: true,
|
|
2195
|
-
get: function () { return
|
|
2206
|
+
get: function () { return chunkDD6H5PIF_cjs.AuditFieldsSchema; }
|
|
2196
2207
|
});
|
|
2197
2208
|
Object.defineProperty(exports, "ColumnSchema", {
|
|
2198
2209
|
enumerable: true,
|
|
2199
|
-
get: function () { return
|
|
2210
|
+
get: function () { return chunkDD6H5PIF_cjs.ColumnSchema; }
|
|
2200
2211
|
});
|
|
2201
2212
|
Object.defineProperty(exports, "ComponentSchema", {
|
|
2202
2213
|
enumerable: true,
|
|
2203
|
-
get: function () { return
|
|
2214
|
+
get: function () { return chunkDD6H5PIF_cjs.ComponentSchema; }
|
|
2204
2215
|
});
|
|
2205
2216
|
Object.defineProperty(exports, "CurrencyAttributeMetaSchema", {
|
|
2206
2217
|
enumerable: true,
|
|
2207
|
-
get: function () { return
|
|
2218
|
+
get: function () { return chunkDD6H5PIF_cjs.CurrencyAttributeMetaSchema; }
|
|
2208
2219
|
});
|
|
2209
2220
|
Object.defineProperty(exports, "DEFAULT_PAGE_SIZE", {
|
|
2210
2221
|
enumerable: true,
|
|
2211
|
-
get: function () { return
|
|
2222
|
+
get: function () { return chunkDD6H5PIF_cjs.DEFAULT_PAGE_SIZE; }
|
|
2212
2223
|
});
|
|
2213
2224
|
Object.defineProperty(exports, "DONE", {
|
|
2214
2225
|
enumerable: true,
|
|
2215
|
-
get: function () { return
|
|
2226
|
+
get: function () { return chunkDD6H5PIF_cjs.DONE; }
|
|
2216
2227
|
});
|
|
2217
2228
|
Object.defineProperty(exports, "EntitySchema", {
|
|
2218
2229
|
enumerable: true,
|
|
2219
|
-
get: function () { return
|
|
2230
|
+
get: function () { return chunkDD6H5PIF_cjs.EntitySchema; }
|
|
2220
2231
|
});
|
|
2221
2232
|
Object.defineProperty(exports, "EntityWithSchemaSchema", {
|
|
2222
2233
|
enumerable: true,
|
|
2223
|
-
get: function () { return
|
|
2234
|
+
get: function () { return chunkDD6H5PIF_cjs.EntityWithSchemaSchema; }
|
|
2224
2235
|
});
|
|
2225
2236
|
Object.defineProperty(exports, "FileRefSchema", {
|
|
2226
2237
|
enumerable: true,
|
|
2227
|
-
get: function () { return
|
|
2238
|
+
get: function () { return chunkDD6H5PIF_cjs.FileRefSchema; }
|
|
2228
2239
|
});
|
|
2229
2240
|
Object.defineProperty(exports, "FilterElementSchema", {
|
|
2230
2241
|
enumerable: true,
|
|
2231
|
-
get: function () { return
|
|
2242
|
+
get: function () { return chunkDD6H5PIF_cjs.FilterElementSchema; }
|
|
2232
2243
|
});
|
|
2233
2244
|
Object.defineProperty(exports, "FilterGroupSchema", {
|
|
2234
2245
|
enumerable: true,
|
|
2235
|
-
get: function () { return
|
|
2246
|
+
get: function () { return chunkDD6H5PIF_cjs.FilterGroupSchema; }
|
|
2236
2247
|
});
|
|
2237
2248
|
Object.defineProperty(exports, "ListSchema", {
|
|
2238
2249
|
enumerable: true,
|
|
2239
|
-
get: function () { return
|
|
2250
|
+
get: function () { return chunkDD6H5PIF_cjs.ListSchema; }
|
|
2240
2251
|
});
|
|
2241
2252
|
Object.defineProperty(exports, "ListViewSchema", {
|
|
2242
2253
|
enumerable: true,
|
|
2243
|
-
get: function () { return
|
|
2254
|
+
get: function () { return chunkDD6H5PIF_cjs.ListViewSchema; }
|
|
2244
2255
|
});
|
|
2245
2256
|
Object.defineProperty(exports, "MenuConfigurationSchema", {
|
|
2246
2257
|
enumerable: true,
|
|
2247
|
-
get: function () { return
|
|
2258
|
+
get: function () { return chunkDD6H5PIF_cjs.MenuConfigurationSchema; }
|
|
2248
2259
|
});
|
|
2249
2260
|
Object.defineProperty(exports, "MenuItemSchema", {
|
|
2250
2261
|
enumerable: true,
|
|
2251
|
-
get: function () { return
|
|
2262
|
+
get: function () { return chunkDD6H5PIF_cjs.MenuItemSchema; }
|
|
2252
2263
|
});
|
|
2253
2264
|
Object.defineProperty(exports, "MenuItemType", {
|
|
2254
2265
|
enumerable: true,
|
|
2255
|
-
get: function () { return
|
|
2266
|
+
get: function () { return chunkDD6H5PIF_cjs.MenuItemType; }
|
|
2256
2267
|
});
|
|
2257
2268
|
Object.defineProperty(exports, "MetaClient", {
|
|
2258
2269
|
enumerable: true,
|
|
2259
|
-
get: function () { return
|
|
2270
|
+
get: function () { return chunkDD6H5PIF_cjs.MetaClient; }
|
|
2260
2271
|
});
|
|
2261
2272
|
Object.defineProperty(exports, "ModuleSchema", {
|
|
2262
2273
|
enumerable: true,
|
|
2263
|
-
get: function () { return
|
|
2274
|
+
get: function () { return chunkDD6H5PIF_cjs.ModuleSchema; }
|
|
2264
2275
|
});
|
|
2265
2276
|
Object.defineProperty(exports, "OnDeleteActionSchema", {
|
|
2266
2277
|
enumerable: true,
|
|
2267
|
-
get: function () { return
|
|
2278
|
+
get: function () { return chunkDD6H5PIF_cjs.OnDeleteActionSchema; }
|
|
2268
2279
|
});
|
|
2269
2280
|
Object.defineProperty(exports, "PLATFORM_ATTRIBUTE_NAMES", {
|
|
2270
2281
|
enumerable: true,
|
|
2271
|
-
get: function () { return
|
|
2282
|
+
get: function () { return chunkDD6H5PIF_cjs.PLATFORM_ATTRIBUTE_NAMES; }
|
|
2272
2283
|
});
|
|
2273
2284
|
Object.defineProperty(exports, "PLATFORM_USER_ID", {
|
|
2274
2285
|
enumerable: true,
|
|
2275
|
-
get: function () { return
|
|
2286
|
+
get: function () { return chunkDD6H5PIF_cjs.PLATFORM_USER_ID; }
|
|
2276
2287
|
});
|
|
2277
2288
|
Object.defineProperty(exports, "PageActionSchema", {
|
|
2278
2289
|
enumerable: true,
|
|
2279
|
-
get: function () { return
|
|
2290
|
+
get: function () { return chunkDD6H5PIF_cjs.PageActionSchema; }
|
|
2280
2291
|
});
|
|
2281
2292
|
Object.defineProperty(exports, "PageIterator", {
|
|
2282
2293
|
enumerable: true,
|
|
2283
|
-
get: function () { return
|
|
2294
|
+
get: function () { return chunkDD6H5PIF_cjs.PageIterator; }
|
|
2284
2295
|
});
|
|
2285
2296
|
Object.defineProperty(exports, "PageLayoutSchema", {
|
|
2286
2297
|
enumerable: true,
|
|
2287
|
-
get: function () { return
|
|
2298
|
+
get: function () { return chunkDD6H5PIF_cjs.PageLayoutSchema; }
|
|
2288
2299
|
});
|
|
2289
2300
|
Object.defineProperty(exports, "PageSchema", {
|
|
2290
2301
|
enumerable: true,
|
|
2291
|
-
get: function () { return
|
|
2302
|
+
get: function () { return chunkDD6H5PIF_cjs.PageSchema; }
|
|
2292
2303
|
});
|
|
2293
2304
|
Object.defineProperty(exports, "RelationAttributeMetaSchema", {
|
|
2294
2305
|
enumerable: true,
|
|
2295
|
-
get: function () { return
|
|
2306
|
+
get: function () { return chunkDD6H5PIF_cjs.RelationAttributeMetaSchema; }
|
|
2296
2307
|
});
|
|
2297
2308
|
Object.defineProperty(exports, "ResponseMetaSchema", {
|
|
2298
2309
|
enumerable: true,
|
|
2299
|
-
get: function () { return
|
|
2310
|
+
get: function () { return chunkDD6H5PIF_cjs.ResponseMetaSchema; }
|
|
2300
2311
|
});
|
|
2301
2312
|
Object.defineProperty(exports, "SortConfigSchema", {
|
|
2302
2313
|
enumerable: true,
|
|
2303
|
-
get: function () { return
|
|
2314
|
+
get: function () { return chunkDD6H5PIF_cjs.SortConfigSchema; }
|
|
2304
2315
|
});
|
|
2305
2316
|
Object.defineProperty(exports, "UserRefSchema", {
|
|
2306
2317
|
enumerable: true,
|
|
2307
|
-
get: function () { return
|
|
2318
|
+
get: function () { return chunkDD6H5PIF_cjs.UserRefSchema; }
|
|
2308
2319
|
});
|
|
2309
2320
|
Object.defineProperty(exports, "VariableSchema", {
|
|
2310
2321
|
enumerable: true,
|
|
2311
|
-
get: function () { return
|
|
2322
|
+
get: function () { return chunkDD6H5PIF_cjs.VariableSchema; }
|
|
2312
2323
|
});
|
|
2313
2324
|
Object.defineProperty(exports, "allCurrencyCodes", {
|
|
2314
2325
|
enumerable: true,
|
|
2315
|
-
get: function () { return
|
|
2326
|
+
get: function () { return chunkDD6H5PIF_cjs.allCurrencyCodes; }
|
|
2316
2327
|
});
|
|
2317
2328
|
Object.defineProperty(exports, "createIterator", {
|
|
2318
2329
|
enumerable: true,
|
|
2319
|
-
get: function () { return
|
|
2330
|
+
get: function () { return chunkDD6H5PIF_cjs.createIterator; }
|
|
2320
2331
|
});
|
|
2321
2332
|
Object.defineProperty(exports, "createListResultSchema", {
|
|
2322
2333
|
enumerable: true,
|
|
2323
|
-
get: function () { return
|
|
2334
|
+
get: function () { return chunkDD6H5PIF_cjs.createListResultSchema; }
|
|
2324
2335
|
});
|
|
2325
2336
|
Object.defineProperty(exports, "currencyLabel", {
|
|
2326
2337
|
enumerable: true,
|
|
2327
|
-
get: function () { return
|
|
2338
|
+
get: function () { return chunkDD6H5PIF_cjs.currencyLabel; }
|
|
2328
2339
|
});
|
|
2329
2340
|
Object.defineProperty(exports, "currencySymbol", {
|
|
2330
2341
|
enumerable: true,
|
|
2331
|
-
get: function () { return
|
|
2342
|
+
get: function () { return chunkDD6H5PIF_cjs.currencySymbol; }
|
|
2332
2343
|
});
|
|
2333
2344
|
Object.defineProperty(exports, "currencySymbolSide", {
|
|
2334
2345
|
enumerable: true,
|
|
2335
|
-
get: function () { return
|
|
2346
|
+
get: function () { return chunkDD6H5PIF_cjs.currencySymbolSide; }
|
|
2336
2347
|
});
|
|
2337
2348
|
Object.defineProperty(exports, "formatAmount", {
|
|
2338
2349
|
enumerable: true,
|
|
2339
|
-
get: function () { return
|
|
2350
|
+
get: function () { return chunkDD6H5PIF_cjs.formatAmount; }
|
|
2340
2351
|
});
|
|
2341
2352
|
Object.defineProperty(exports, "formatMoney", {
|
|
2342
2353
|
enumerable: true,
|
|
2343
|
-
get: function () { return
|
|
2354
|
+
get: function () { return chunkDD6H5PIF_cjs.formatMoney; }
|
|
2344
2355
|
});
|
|
2345
2356
|
Object.defineProperty(exports, "isPlatformAttributeName", {
|
|
2346
2357
|
enumerable: true,
|
|
2347
|
-
get: function () { return
|
|
2358
|
+
get: function () { return chunkDD6H5PIF_cjs.isPlatformAttributeName; }
|
|
2348
2359
|
});
|
|
2349
2360
|
Object.defineProperty(exports, "localeNumberSeparators", {
|
|
2350
2361
|
enumerable: true,
|
|
2351
|
-
get: function () { return
|
|
2362
|
+
get: function () { return chunkDD6H5PIF_cjs.localeNumberSeparators; }
|
|
2352
2363
|
});
|
|
2353
2364
|
Object.defineProperty(exports, "parseAmount", {
|
|
2354
2365
|
enumerable: true,
|
|
2355
|
-
get: function () { return
|
|
2366
|
+
get: function () { return chunkDD6H5PIF_cjs.parseAmount; }
|
|
2356
2367
|
});
|
|
2357
2368
|
Object.defineProperty(exports, "parseCurrencyMeta", {
|
|
2358
2369
|
enumerable: true,
|
|
2359
|
-
get: function () { return
|
|
2370
|
+
get: function () { return chunkDD6H5PIF_cjs.parseCurrencyMeta; }
|
|
2360
2371
|
});
|
|
2361
2372
|
Object.defineProperty(exports, "parseFileMeta", {
|
|
2362
2373
|
enumerable: true,
|
|
2363
|
-
get: function () { return
|
|
2374
|
+
get: function () { return chunkDD6H5PIF_cjs.parseFileMeta; }
|
|
2364
2375
|
});
|
|
2365
2376
|
Object.defineProperty(exports, "parseRelationMeta", {
|
|
2366
2377
|
enumerable: true,
|
|
2367
|
-
get: function () { return
|
|
2378
|
+
get: function () { return chunkDD6H5PIF_cjs.parseRelationMeta; }
|
|
2368
2379
|
});
|
|
2369
2380
|
Object.defineProperty(exports, "platformAttributes", {
|
|
2370
2381
|
enumerable: true,
|
|
2371
|
-
get: function () { return
|
|
2382
|
+
get: function () { return chunkDD6H5PIF_cjs.platformAttributes; }
|
|
2372
2383
|
});
|
|
2373
2384
|
exports.AccountClient = AccountClient;
|
|
2374
2385
|
exports.ActionSchema = ActionSchema;
|