@proteos/sdk 0.46.0 → 0.47.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-Y4CEHIRX.js → chunk-5KEJKXO5.js} +38 -15
- package/dist/chunk-5KEJKXO5.js.map +1 -0
- package/dist/{chunk-F5DHWOGW.cjs → chunk-Z7LC3GGU.cjs} +38 -15
- package/dist/chunk-Z7LC3GGU.cjs.map +1 -0
- package/dist/index.cjs +105 -97
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +18 -9
- package/dist/index.d.ts +18 -9
- package/dist/index.js +11 -3
- package/dist/index.js.map +1 -1
- package/dist/meta/index.cjs +57 -57
- 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-D1PRIsSO.d.cts → types-oECz4xTQ.d.cts} +210 -56
- package/dist/{types-D1PRIsSO.d.ts → types-oECz4xTQ.d.ts} +210 -56
- package/package.json +1 -1
- package/src/functions/actions.ts +29 -0
- package/src/functions/types.ts +6 -4
- package/src/meta/layout/control-registry.json +4 -2
- package/src/meta/layout/elements.ts +86 -0
- package/src/meta/layout/index.ts +2 -0
- package/src/meta/types.ts +85 -39
- package/dist/chunk-F5DHWOGW.cjs.map +0 -1
- package/dist/chunk-Y4CEHIRX.js.map +0 -1
package/dist/index.cjs
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var chunkZ7LC3GGU_cjs = require('./chunk-Z7LC3GGU.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 chunkZ7LC3GGU_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 chunkZ7LC3GGU_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 chunkZ7LC3GGU_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 chunkZ7LC3GGU_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 chunkZ7LC3GGU_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 chunkZ7LC3GGU_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 chunkZ7LC3GGU_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);
|
|
@@ -440,7 +440,7 @@ var OrganizationServiceImpl = class {
|
|
|
440
440
|
}
|
|
441
441
|
client;
|
|
442
442
|
list(options = {}) {
|
|
443
|
-
return new
|
|
443
|
+
return new chunkZ7LC3GGU_cjs.PageIterator((opts) => this.listPage(opts), options);
|
|
444
444
|
}
|
|
445
445
|
async listPage(options = {}) {
|
|
446
446
|
return this.client.requestWithQuery(
|
|
@@ -471,7 +471,7 @@ var RoleServiceImpl = class {
|
|
|
471
471
|
}
|
|
472
472
|
client;
|
|
473
473
|
list(options = {}) {
|
|
474
|
-
return new
|
|
474
|
+
return new chunkZ7LC3GGU_cjs.PageIterator((opts) => this.listPage(opts), options);
|
|
475
475
|
}
|
|
476
476
|
async listPage(options = {}) {
|
|
477
477
|
return this.client.requestWithQuery("GET", ROLES_BASE_PATH, options);
|
|
@@ -492,7 +492,7 @@ var RoleServiceImpl = class {
|
|
|
492
492
|
await this.client.request("DELETE", `${ROLES_BASE_PATH}/${slug}`);
|
|
493
493
|
}
|
|
494
494
|
getPermissions(roleSlug, options = {}) {
|
|
495
|
-
return new
|
|
495
|
+
return new chunkZ7LC3GGU_cjs.PageIterator((opts) => this.fetchPermissionsPage(roleSlug, opts), options);
|
|
496
496
|
}
|
|
497
497
|
async assignPermission(roleSlug, request) {
|
|
498
498
|
return this.client.request(
|
|
@@ -678,7 +678,7 @@ var TeamServiceImpl = class {
|
|
|
678
678
|
}
|
|
679
679
|
client;
|
|
680
680
|
list(options = {}) {
|
|
681
|
-
return new
|
|
681
|
+
return new chunkZ7LC3GGU_cjs.PageIterator((opts) => this.listPage(opts), options);
|
|
682
682
|
}
|
|
683
683
|
async listPage(options = {}) {
|
|
684
684
|
return this.client.requestWithQuery("GET", TEAMS_BASE_PATH, options);
|
|
@@ -696,7 +696,7 @@ var TeamServiceImpl = class {
|
|
|
696
696
|
await this.client.request("DELETE", `${TEAMS_BASE_PATH}/${slug}`);
|
|
697
697
|
}
|
|
698
698
|
getMembers(slug, options = {}) {
|
|
699
|
-
return new
|
|
699
|
+
return new chunkZ7LC3GGU_cjs.PageIterator((opts) => this.fetchMembersPage(slug, opts), options);
|
|
700
700
|
}
|
|
701
701
|
async addMember(slug, request) {
|
|
702
702
|
return this.client.request("POST", `${TEAMS_BASE_PATH}/${slug}/members`, request);
|
|
@@ -721,7 +721,7 @@ var UserRoleAssignmentServiceImpl = class {
|
|
|
721
721
|
}
|
|
722
722
|
client;
|
|
723
723
|
list(options = {}) {
|
|
724
|
-
return new
|
|
724
|
+
return new chunkZ7LC3GGU_cjs.PageIterator((opts) => this.listPage(opts), options);
|
|
725
725
|
}
|
|
726
726
|
async listPage(options = {}) {
|
|
727
727
|
return this.client.requestWithQuery(
|
|
@@ -740,7 +740,7 @@ var UserServiceImpl = class {
|
|
|
740
740
|
}
|
|
741
741
|
client;
|
|
742
742
|
list(options = {}) {
|
|
743
|
-
return new
|
|
743
|
+
return new chunkZ7LC3GGU_cjs.PageIterator((opts) => this.listPage(opts), options);
|
|
744
744
|
}
|
|
745
745
|
async listPage(options = {}) {
|
|
746
746
|
return this.client.requestWithQuery("GET", USERS_BASE_PATH, options);
|
|
@@ -755,7 +755,7 @@ var UserServiceImpl = class {
|
|
|
755
755
|
return this.client.request("PATCH", `${USERS_BASE_PATH}/${id}`, request);
|
|
756
756
|
}
|
|
757
757
|
getRoles(userId, options = {}) {
|
|
758
|
-
return new
|
|
758
|
+
return new chunkZ7LC3GGU_cjs.PageIterator((opts) => this.fetchRolesPage(userId, opts), options);
|
|
759
759
|
}
|
|
760
760
|
async assignRole(userId, request) {
|
|
761
761
|
return this.client.request(
|
|
@@ -878,28 +878,28 @@ var SCOPED_PLATFORM_ENTITY_SLUGS = ["knowledge-nodes"];
|
|
|
878
878
|
function isPlatformEntity(slug) {
|
|
879
879
|
return PLATFORM_ENTITY_SLUGS.includes(slug);
|
|
880
880
|
}
|
|
881
|
-
var RoleEntityPermissionSchema =
|
|
881
|
+
var RoleEntityPermissionSchema = chunkZ7LC3GGU_cjs.AuditFieldsSchema.extend({
|
|
882
882
|
id: zod.z.string(),
|
|
883
883
|
role_slug: zod.z.string(),
|
|
884
884
|
entity_slug: zod.z.string(),
|
|
885
885
|
permission: zod.z.enum(["read", "write", "delete", "read_scoped", "write_scoped", "delete_scoped"])
|
|
886
886
|
});
|
|
887
|
-
var UserRoleAssignmentSchema =
|
|
887
|
+
var UserRoleAssignmentSchema = chunkZ7LC3GGU_cjs.AuditFieldsSchema.extend({
|
|
888
888
|
id: zod.z.string(),
|
|
889
889
|
user_id: zod.z.string(),
|
|
890
890
|
role_slug: zod.z.string(),
|
|
891
891
|
org_id: zod.z.string()
|
|
892
892
|
});
|
|
893
|
-
var UserSchema =
|
|
893
|
+
var UserSchema = chunkZ7LC3GGU_cjs.AuditFieldsSchema.extend({
|
|
894
894
|
id: zod.z.string(),
|
|
895
895
|
email: zod.z.string(),
|
|
896
896
|
given_name: zod.z.string(),
|
|
897
897
|
family_name: zod.z.string(),
|
|
898
898
|
external_id: zod.z.string(),
|
|
899
899
|
default_org_id: zod.z.string(),
|
|
900
|
-
profile_image:
|
|
900
|
+
profile_image: chunkZ7LC3GGU_cjs.FileRefSchema.nullish()
|
|
901
901
|
});
|
|
902
|
-
|
|
902
|
+
chunkZ7LC3GGU_cjs.AuditFieldsSchema.extend({
|
|
903
903
|
id: zod.z.string(),
|
|
904
904
|
user_id: zod.z.string(),
|
|
905
905
|
org_id: zod.z.string(),
|
|
@@ -909,26 +909,26 @@ chunkF5DHWOGW_cjs.AuditFieldsSchema.extend({
|
|
|
909
909
|
expires_at: zod.z.string().nullable(),
|
|
910
910
|
last_used_at: zod.z.string().nullable()
|
|
911
911
|
});
|
|
912
|
-
var RoleSchema =
|
|
912
|
+
var RoleSchema = chunkZ7LC3GGU_cjs.AuditFieldsSchema.extend({
|
|
913
913
|
slug: zod.z.string(),
|
|
914
914
|
name: zod.z.string(),
|
|
915
915
|
org_id: zod.z.string(),
|
|
916
916
|
description: zod.z.string()
|
|
917
917
|
});
|
|
918
|
-
|
|
918
|
+
chunkZ7LC3GGU_cjs.AuditFieldsSchema.extend({
|
|
919
919
|
slug: zod.z.string(),
|
|
920
920
|
name: zod.z.string(),
|
|
921
921
|
org_id: zod.z.string(),
|
|
922
922
|
description: zod.z.string(),
|
|
923
923
|
parent_team_slug: zod.z.string()
|
|
924
924
|
});
|
|
925
|
-
|
|
925
|
+
chunkZ7LC3GGU_cjs.AuditFieldsSchema.extend({
|
|
926
926
|
id: zod.z.string(),
|
|
927
927
|
org_id: zod.z.string(),
|
|
928
928
|
team_slug: zod.z.string(),
|
|
929
929
|
user_id: zod.z.string()
|
|
930
930
|
});
|
|
931
|
-
var OrganizationSchema =
|
|
931
|
+
var OrganizationSchema = chunkZ7LC3GGU_cjs.AuditFieldsSchema.extend({
|
|
932
932
|
id: zod.z.string(),
|
|
933
933
|
name: zod.z.string(),
|
|
934
934
|
description: zod.z.string()
|
|
@@ -937,7 +937,7 @@ var SharePermissionSchema = zod.z.enum(["read", "write", "delete"]);
|
|
|
937
937
|
zod.z.object({
|
|
938
938
|
entity_slug: zod.z.string(),
|
|
939
939
|
record_id: zod.z.string(),
|
|
940
|
-
principal:
|
|
940
|
+
principal: chunkZ7LC3GGU_cjs.PrincipalRefSchema,
|
|
941
941
|
permission: SharePermissionSchema
|
|
942
942
|
});
|
|
943
943
|
|
|
@@ -2175,7 +2175,7 @@ var RecordServiceImpl = class {
|
|
|
2175
2175
|
}
|
|
2176
2176
|
client;
|
|
2177
2177
|
list(entitySlug, options = {}) {
|
|
2178
|
-
return new
|
|
2178
|
+
return new chunkZ7LC3GGU_cjs.PageIterator((opts) => this.listPage(entitySlug, opts), options);
|
|
2179
2179
|
}
|
|
2180
2180
|
async listPage(entitySlug, options = {}) {
|
|
2181
2181
|
return this.client.requestWithQuery(
|
|
@@ -2208,7 +2208,7 @@ var RecordServiceImpl = class {
|
|
|
2208
2208
|
);
|
|
2209
2209
|
}
|
|
2210
2210
|
listPublic(orgId, entitySlug, options = {}) {
|
|
2211
|
-
return new
|
|
2211
|
+
return new chunkZ7LC3GGU_cjs.PageIterator((opts) => this.listPublicPage(orgId, entitySlug, opts), options);
|
|
2212
2212
|
}
|
|
2213
2213
|
async listPublicPage(orgId, entitySlug, options = {}) {
|
|
2214
2214
|
return this.client.requestWithQuery(
|
|
@@ -2367,7 +2367,7 @@ var ActionServiceImpl = class {
|
|
|
2367
2367
|
}
|
|
2368
2368
|
client;
|
|
2369
2369
|
list(options = {}) {
|
|
2370
|
-
return new
|
|
2370
|
+
return new chunkZ7LC3GGU_cjs.PageIterator((opts) => this.listPage(opts), options);
|
|
2371
2371
|
}
|
|
2372
2372
|
async listPage(options = {}) {
|
|
2373
2373
|
return this.client.requestWithQuery("GET", ACTIONS_BASE_PATH, options);
|
|
@@ -2400,9 +2400,17 @@ var ActionServiceImpl = class {
|
|
|
2400
2400
|
);
|
|
2401
2401
|
return response.result;
|
|
2402
2402
|
}
|
|
2403
|
+
async invokeBatch(entitySlug, slug, recordIds, params) {
|
|
2404
|
+
const response = await this.client.request(
|
|
2405
|
+
"POST",
|
|
2406
|
+
`/functions/v1/entities/${entitySlug}/actions/${slug}/invoke`,
|
|
2407
|
+
{ record_ids: recordIds, params }
|
|
2408
|
+
);
|
|
2409
|
+
return response.result;
|
|
2410
|
+
}
|
|
2403
2411
|
};
|
|
2404
|
-
var ActionScopeSchema = zod.z.enum(["entity", "global"]);
|
|
2405
|
-
var ActionSchema =
|
|
2412
|
+
var ActionScopeSchema = zod.z.enum(["entity", "entity_batch", "global"]);
|
|
2413
|
+
var ActionSchema = chunkZ7LC3GGU_cjs.AuditFieldsSchema.extend({
|
|
2406
2414
|
slug: zod.z.string(),
|
|
2407
2415
|
org_id: zod.z.string(),
|
|
2408
2416
|
module_slug: zod.z.string(),
|
|
@@ -2411,8 +2419,8 @@ var ActionSchema = chunkF5DHWOGW_cjs.AuditFieldsSchema.extend({
|
|
|
2411
2419
|
name: zod.z.string(),
|
|
2412
2420
|
is_active: zod.z.boolean(),
|
|
2413
2421
|
file_id: zod.z.string(),
|
|
2414
|
-
params: zod.z.array(
|
|
2415
|
-
returns: zod.z.array(
|
|
2422
|
+
params: zod.z.array(chunkZ7LC3GGU_cjs.AttributeSchema),
|
|
2423
|
+
returns: zod.z.array(chunkZ7LC3GGU_cjs.AttributeSchema)
|
|
2416
2424
|
});
|
|
2417
2425
|
|
|
2418
2426
|
// src/functions/index.ts
|
|
@@ -2450,7 +2458,7 @@ var LabelServiceImpl = class {
|
|
|
2450
2458
|
}
|
|
2451
2459
|
client;
|
|
2452
2460
|
list(options = {}) {
|
|
2453
|
-
return new
|
|
2461
|
+
return new chunkZ7LC3GGU_cjs.PageIterator((opts) => this.listPage(opts), options);
|
|
2454
2462
|
}
|
|
2455
2463
|
async listPage(options = {}) {
|
|
2456
2464
|
return this.client.requestWithQuery(
|
|
@@ -2481,7 +2489,7 @@ var LinkServiceImpl = class {
|
|
|
2481
2489
|
}
|
|
2482
2490
|
client;
|
|
2483
2491
|
list(options = {}) {
|
|
2484
|
-
return new
|
|
2492
|
+
return new chunkZ7LC3GGU_cjs.PageIterator((opts) => this.listPage(opts), options);
|
|
2485
2493
|
}
|
|
2486
2494
|
async listPage(options = {}) {
|
|
2487
2495
|
return this.client.requestWithQuery("GET", LINKS_BASE_PATH, options);
|
|
@@ -2508,7 +2516,7 @@ var NodeServiceImpl = class {
|
|
|
2508
2516
|
}
|
|
2509
2517
|
client;
|
|
2510
2518
|
list(options = {}) {
|
|
2511
|
-
return new
|
|
2519
|
+
return new chunkZ7LC3GGU_cjs.PageIterator((opts) => this.listPage(opts), options);
|
|
2512
2520
|
}
|
|
2513
2521
|
async listPage(options = {}) {
|
|
2514
2522
|
const { label_ids, space_slugs, ...rest } = options;
|
|
@@ -2605,7 +2613,7 @@ var SpaceServiceImpl = class {
|
|
|
2605
2613
|
}
|
|
2606
2614
|
client;
|
|
2607
2615
|
list(options = {}) {
|
|
2608
|
-
return new
|
|
2616
|
+
return new chunkZ7LC3GGU_cjs.PageIterator((opts) => this.listPage(opts), options);
|
|
2609
2617
|
}
|
|
2610
2618
|
async listPage(options = {}) {
|
|
2611
2619
|
return this.client.requestWithQuery(
|
|
@@ -2636,7 +2644,7 @@ var RecordLinkServiceImpl = class {
|
|
|
2636
2644
|
}
|
|
2637
2645
|
client;
|
|
2638
2646
|
list(options = {}) {
|
|
2639
|
-
return new
|
|
2647
|
+
return new chunkZ7LC3GGU_cjs.PageIterator((opts) => this.listPage(opts), options);
|
|
2640
2648
|
}
|
|
2641
2649
|
async listPage(options = {}) {
|
|
2642
2650
|
return this.client.requestWithQuery(
|
|
@@ -2669,7 +2677,7 @@ var KnowledgeNodeMetadataSchema = zod.z.object({
|
|
|
2669
2677
|
summary: zod.z.string().nullish(),
|
|
2670
2678
|
valid_from: zod.z.string().nullish(),
|
|
2671
2679
|
valid_until: zod.z.string().nullish()
|
|
2672
|
-
}).merge(
|
|
2680
|
+
}).merge(chunkZ7LC3GGU_cjs.AuditFieldsSchema);
|
|
2673
2681
|
var KnowledgeNodeSchema = KnowledgeNodeMetadataSchema.extend({
|
|
2674
2682
|
content: zod.z.string()
|
|
2675
2683
|
});
|
|
@@ -2693,7 +2701,7 @@ var KnowledgeLinkSchema = zod.z.object({
|
|
|
2693
2701
|
"superseded_by"
|
|
2694
2702
|
]),
|
|
2695
2703
|
description: zod.z.string().nullish()
|
|
2696
|
-
}).merge(
|
|
2704
|
+
}).merge(chunkZ7LC3GGU_cjs.AuditFieldsSchema);
|
|
2697
2705
|
var KnowledgeRecordLinkSchema = zod.z.object({
|
|
2698
2706
|
id: zod.z.string(),
|
|
2699
2707
|
org_id: zod.z.string(),
|
|
@@ -2701,7 +2709,7 @@ var KnowledgeRecordLinkSchema = zod.z.object({
|
|
|
2701
2709
|
entity_slug: zod.z.string(),
|
|
2702
2710
|
record_id: zod.z.string(),
|
|
2703
2711
|
created_at: zod.z.string(),
|
|
2704
|
-
created_by:
|
|
2712
|
+
created_by: chunkZ7LC3GGU_cjs.UserRefSchema
|
|
2705
2713
|
});
|
|
2706
2714
|
var KnowledgeLabelSchema = zod.z.object({
|
|
2707
2715
|
id: zod.z.string(),
|
|
@@ -2711,13 +2719,13 @@ var KnowledgeLabelSchema = zod.z.object({
|
|
|
2711
2719
|
description: zod.z.string().nullish(),
|
|
2712
2720
|
color: zod.z.string().nullish(),
|
|
2713
2721
|
icon: zod.z.string().nullish()
|
|
2714
|
-
}).merge(
|
|
2722
|
+
}).merge(chunkZ7LC3GGU_cjs.AuditFieldsSchema);
|
|
2715
2723
|
var KnowledgeNodeLabelSchema = zod.z.object({
|
|
2716
2724
|
org_id: zod.z.string(),
|
|
2717
2725
|
node_id: zod.z.string(),
|
|
2718
2726
|
label_id: zod.z.string(),
|
|
2719
2727
|
created_at: zod.z.string(),
|
|
2720
|
-
created_by:
|
|
2728
|
+
created_by: chunkZ7LC3GGU_cjs.UserRefSchema
|
|
2721
2729
|
});
|
|
2722
2730
|
var NodeNeighborhoodSchema = zod.z.object({
|
|
2723
2731
|
nodes: zod.z.array(
|
|
@@ -2904,7 +2912,7 @@ var ExecutionServiceImpl = class {
|
|
|
2904
2912
|
}
|
|
2905
2913
|
client;
|
|
2906
2914
|
list(options = {}) {
|
|
2907
|
-
return new
|
|
2915
|
+
return new chunkZ7LC3GGU_cjs.PageIterator((opts) => this.listPage(opts), options);
|
|
2908
2916
|
}
|
|
2909
2917
|
async listPage(options = {}) {
|
|
2910
2918
|
return this.client.requestWithQuery(
|
|
@@ -2963,7 +2971,7 @@ var WorkflowServiceImpl = class {
|
|
|
2963
2971
|
}
|
|
2964
2972
|
client;
|
|
2965
2973
|
list(options = {}) {
|
|
2966
|
-
return new
|
|
2974
|
+
return new chunkZ7LC3GGU_cjs.PageIterator((opts) => this.listPage(opts), options);
|
|
2967
2975
|
}
|
|
2968
2976
|
async listPage(options = {}) {
|
|
2969
2977
|
return this.client.requestWithQuery("GET", WORKFLOWS_BASE_PATH2, options);
|
|
@@ -3001,7 +3009,7 @@ var WorkflowServiceImpl = class {
|
|
|
3001
3009
|
return this.client.request("POST", `${WORKFLOWS_BASE_PATH2}/${key}/unpause`, {});
|
|
3002
3010
|
}
|
|
3003
3011
|
listVersions(key, options = {}) {
|
|
3004
|
-
return new
|
|
3012
|
+
return new chunkZ7LC3GGU_cjs.PageIterator((opts) => this.listVersionsPage(key, opts), options);
|
|
3005
3013
|
}
|
|
3006
3014
|
async listVersionsPage(key, options = {}) {
|
|
3007
3015
|
return this.client.requestWithQuery(
|
|
@@ -3046,207 +3054,207 @@ var WorkflowClient = class {
|
|
|
3046
3054
|
|
|
3047
3055
|
Object.defineProperty(exports, "AppSchema", {
|
|
3048
3056
|
enumerable: true,
|
|
3049
|
-
get: function () { return
|
|
3057
|
+
get: function () { return chunkZ7LC3GGU_cjs.AppSchema; }
|
|
3050
3058
|
});
|
|
3051
3059
|
Object.defineProperty(exports, "AttributeSchema", {
|
|
3052
3060
|
enumerable: true,
|
|
3053
|
-
get: function () { return
|
|
3061
|
+
get: function () { return chunkZ7LC3GGU_cjs.AttributeSchema; }
|
|
3054
3062
|
});
|
|
3055
3063
|
Object.defineProperty(exports, "AuditFieldsSchema", {
|
|
3056
3064
|
enumerable: true,
|
|
3057
|
-
get: function () { return
|
|
3065
|
+
get: function () { return chunkZ7LC3GGU_cjs.AuditFieldsSchema; }
|
|
3058
3066
|
});
|
|
3059
3067
|
Object.defineProperty(exports, "CURRENT_USER_DEFAULT", {
|
|
3060
3068
|
enumerable: true,
|
|
3061
|
-
get: function () { return
|
|
3069
|
+
get: function () { return chunkZ7LC3GGU_cjs.CURRENT_USER_DEFAULT; }
|
|
3062
3070
|
});
|
|
3063
3071
|
Object.defineProperty(exports, "ColumnSchema", {
|
|
3064
3072
|
enumerable: true,
|
|
3065
|
-
get: function () { return
|
|
3073
|
+
get: function () { return chunkZ7LC3GGU_cjs.ColumnSchema; }
|
|
3066
3074
|
});
|
|
3067
3075
|
Object.defineProperty(exports, "ComponentSchema", {
|
|
3068
3076
|
enumerable: true,
|
|
3069
|
-
get: function () { return
|
|
3077
|
+
get: function () { return chunkZ7LC3GGU_cjs.ComponentSchema; }
|
|
3070
3078
|
});
|
|
3071
3079
|
Object.defineProperty(exports, "CurrencyAttributeMetaSchema", {
|
|
3072
3080
|
enumerable: true,
|
|
3073
|
-
get: function () { return
|
|
3081
|
+
get: function () { return chunkZ7LC3GGU_cjs.CurrencyAttributeMetaSchema; }
|
|
3074
3082
|
});
|
|
3075
3083
|
Object.defineProperty(exports, "DEFAULT_PAGE_SIZE", {
|
|
3076
3084
|
enumerable: true,
|
|
3077
|
-
get: function () { return
|
|
3085
|
+
get: function () { return chunkZ7LC3GGU_cjs.DEFAULT_PAGE_SIZE; }
|
|
3078
3086
|
});
|
|
3079
3087
|
Object.defineProperty(exports, "DONE", {
|
|
3080
3088
|
enumerable: true,
|
|
3081
|
-
get: function () { return
|
|
3089
|
+
get: function () { return chunkZ7LC3GGU_cjs.DONE; }
|
|
3082
3090
|
});
|
|
3083
3091
|
Object.defineProperty(exports, "DesignReferenceSchema", {
|
|
3084
3092
|
enumerable: true,
|
|
3085
|
-
get: function () { return
|
|
3093
|
+
get: function () { return chunkZ7LC3GGU_cjs.DesignReferenceSchema; }
|
|
3086
3094
|
});
|
|
3087
3095
|
Object.defineProperty(exports, "EntitySchema", {
|
|
3088
3096
|
enumerable: true,
|
|
3089
|
-
get: function () { return
|
|
3097
|
+
get: function () { return chunkZ7LC3GGU_cjs.EntitySchema; }
|
|
3090
3098
|
});
|
|
3091
3099
|
Object.defineProperty(exports, "EntityWithSchemaSchema", {
|
|
3092
3100
|
enumerable: true,
|
|
3093
|
-
get: function () { return
|
|
3101
|
+
get: function () { return chunkZ7LC3GGU_cjs.EntityWithSchemaSchema; }
|
|
3094
3102
|
});
|
|
3095
3103
|
Object.defineProperty(exports, "FileRefSchema", {
|
|
3096
3104
|
enumerable: true,
|
|
3097
|
-
get: function () { return
|
|
3105
|
+
get: function () { return chunkZ7LC3GGU_cjs.FileRefSchema; }
|
|
3098
3106
|
});
|
|
3099
3107
|
Object.defineProperty(exports, "FilterElementSchema", {
|
|
3100
3108
|
enumerable: true,
|
|
3101
|
-
get: function () { return
|
|
3109
|
+
get: function () { return chunkZ7LC3GGU_cjs.FilterElementSchema; }
|
|
3102
3110
|
});
|
|
3103
3111
|
Object.defineProperty(exports, "FilterGroupSchema", {
|
|
3104
3112
|
enumerable: true,
|
|
3105
|
-
get: function () { return
|
|
3113
|
+
get: function () { return chunkZ7LC3GGU_cjs.FilterGroupSchema; }
|
|
3106
3114
|
});
|
|
3107
3115
|
Object.defineProperty(exports, "ListSchema", {
|
|
3108
3116
|
enumerable: true,
|
|
3109
|
-
get: function () { return
|
|
3117
|
+
get: function () { return chunkZ7LC3GGU_cjs.ListSchema; }
|
|
3110
3118
|
});
|
|
3111
3119
|
Object.defineProperty(exports, "ListViewSchema", {
|
|
3112
3120
|
enumerable: true,
|
|
3113
|
-
get: function () { return
|
|
3121
|
+
get: function () { return chunkZ7LC3GGU_cjs.ListViewSchema; }
|
|
3114
3122
|
});
|
|
3115
3123
|
Object.defineProperty(exports, "MenuConfigurationSchema", {
|
|
3116
3124
|
enumerable: true,
|
|
3117
|
-
get: function () { return
|
|
3125
|
+
get: function () { return chunkZ7LC3GGU_cjs.MenuConfigurationSchema; }
|
|
3118
3126
|
});
|
|
3119
3127
|
Object.defineProperty(exports, "MenuItemSchema", {
|
|
3120
3128
|
enumerable: true,
|
|
3121
|
-
get: function () { return
|
|
3129
|
+
get: function () { return chunkZ7LC3GGU_cjs.MenuItemSchema; }
|
|
3122
3130
|
});
|
|
3123
3131
|
Object.defineProperty(exports, "MenuItemType", {
|
|
3124
3132
|
enumerable: true,
|
|
3125
|
-
get: function () { return
|
|
3133
|
+
get: function () { return chunkZ7LC3GGU_cjs.MenuItemType; }
|
|
3126
3134
|
});
|
|
3127
3135
|
Object.defineProperty(exports, "MetaClient", {
|
|
3128
3136
|
enumerable: true,
|
|
3129
|
-
get: function () { return
|
|
3137
|
+
get: function () { return chunkZ7LC3GGU_cjs.MetaClient; }
|
|
3130
3138
|
});
|
|
3131
3139
|
Object.defineProperty(exports, "ModuleSchema", {
|
|
3132
3140
|
enumerable: true,
|
|
3133
|
-
get: function () { return
|
|
3141
|
+
get: function () { return chunkZ7LC3GGU_cjs.ModuleSchema; }
|
|
3134
3142
|
});
|
|
3135
3143
|
Object.defineProperty(exports, "OnDeleteActionSchema", {
|
|
3136
3144
|
enumerable: true,
|
|
3137
|
-
get: function () { return
|
|
3145
|
+
get: function () { return chunkZ7LC3GGU_cjs.OnDeleteActionSchema; }
|
|
3138
3146
|
});
|
|
3139
3147
|
Object.defineProperty(exports, "PLATFORM_ATTRIBUTE_NAMES", {
|
|
3140
3148
|
enumerable: true,
|
|
3141
|
-
get: function () { return
|
|
3149
|
+
get: function () { return chunkZ7LC3GGU_cjs.PLATFORM_ATTRIBUTE_NAMES; }
|
|
3142
3150
|
});
|
|
3143
3151
|
Object.defineProperty(exports, "PLATFORM_USER_ID", {
|
|
3144
3152
|
enumerable: true,
|
|
3145
|
-
get: function () { return
|
|
3153
|
+
get: function () { return chunkZ7LC3GGU_cjs.PLATFORM_USER_ID; }
|
|
3146
3154
|
});
|
|
3147
3155
|
Object.defineProperty(exports, "PageActionSchema", {
|
|
3148
3156
|
enumerable: true,
|
|
3149
|
-
get: function () { return
|
|
3157
|
+
get: function () { return chunkZ7LC3GGU_cjs.PageActionSchema; }
|
|
3150
3158
|
});
|
|
3151
3159
|
Object.defineProperty(exports, "PageIterator", {
|
|
3152
3160
|
enumerable: true,
|
|
3153
|
-
get: function () { return
|
|
3161
|
+
get: function () { return chunkZ7LC3GGU_cjs.PageIterator; }
|
|
3154
3162
|
});
|
|
3155
3163
|
Object.defineProperty(exports, "PageLayoutSchema", {
|
|
3156
3164
|
enumerable: true,
|
|
3157
|
-
get: function () { return
|
|
3165
|
+
get: function () { return chunkZ7LC3GGU_cjs.PageLayoutSchema; }
|
|
3158
3166
|
});
|
|
3159
3167
|
Object.defineProperty(exports, "PageSchema", {
|
|
3160
3168
|
enumerable: true,
|
|
3161
|
-
get: function () { return
|
|
3169
|
+
get: function () { return chunkZ7LC3GGU_cjs.PageSchema; }
|
|
3162
3170
|
});
|
|
3163
3171
|
Object.defineProperty(exports, "RelationAttributeMetaSchema", {
|
|
3164
3172
|
enumerable: true,
|
|
3165
|
-
get: function () { return
|
|
3173
|
+
get: function () { return chunkZ7LC3GGU_cjs.RelationAttributeMetaSchema; }
|
|
3166
3174
|
});
|
|
3167
3175
|
Object.defineProperty(exports, "ResponseMetaSchema", {
|
|
3168
3176
|
enumerable: true,
|
|
3169
|
-
get: function () { return
|
|
3177
|
+
get: function () { return chunkZ7LC3GGU_cjs.ResponseMetaSchema; }
|
|
3170
3178
|
});
|
|
3171
3179
|
Object.defineProperty(exports, "SortConfigSchema", {
|
|
3172
3180
|
enumerable: true,
|
|
3173
|
-
get: function () { return
|
|
3181
|
+
get: function () { return chunkZ7LC3GGU_cjs.SortConfigSchema; }
|
|
3174
3182
|
});
|
|
3175
3183
|
Object.defineProperty(exports, "UserRefSchema", {
|
|
3176
3184
|
enumerable: true,
|
|
3177
|
-
get: function () { return
|
|
3185
|
+
get: function () { return chunkZ7LC3GGU_cjs.UserRefSchema; }
|
|
3178
3186
|
});
|
|
3179
3187
|
Object.defineProperty(exports, "VariableSchema", {
|
|
3180
3188
|
enumerable: true,
|
|
3181
|
-
get: function () { return
|
|
3189
|
+
get: function () { return chunkZ7LC3GGU_cjs.VariableSchema; }
|
|
3182
3190
|
});
|
|
3183
3191
|
Object.defineProperty(exports, "acceptsCurrentUserDefault", {
|
|
3184
3192
|
enumerable: true,
|
|
3185
|
-
get: function () { return
|
|
3193
|
+
get: function () { return chunkZ7LC3GGU_cjs.acceptsCurrentUserDefault; }
|
|
3186
3194
|
});
|
|
3187
3195
|
Object.defineProperty(exports, "allCurrencyCodes", {
|
|
3188
3196
|
enumerable: true,
|
|
3189
|
-
get: function () { return
|
|
3197
|
+
get: function () { return chunkZ7LC3GGU_cjs.allCurrencyCodes; }
|
|
3190
3198
|
});
|
|
3191
3199
|
Object.defineProperty(exports, "createIterator", {
|
|
3192
3200
|
enumerable: true,
|
|
3193
|
-
get: function () { return
|
|
3201
|
+
get: function () { return chunkZ7LC3GGU_cjs.createIterator; }
|
|
3194
3202
|
});
|
|
3195
3203
|
Object.defineProperty(exports, "createListResultSchema", {
|
|
3196
3204
|
enumerable: true,
|
|
3197
|
-
get: function () { return
|
|
3205
|
+
get: function () { return chunkZ7LC3GGU_cjs.createListResultSchema; }
|
|
3198
3206
|
});
|
|
3199
3207
|
Object.defineProperty(exports, "currencyLabel", {
|
|
3200
3208
|
enumerable: true,
|
|
3201
|
-
get: function () { return
|
|
3209
|
+
get: function () { return chunkZ7LC3GGU_cjs.currencyLabel; }
|
|
3202
3210
|
});
|
|
3203
3211
|
Object.defineProperty(exports, "currencySymbol", {
|
|
3204
3212
|
enumerable: true,
|
|
3205
|
-
get: function () { return
|
|
3213
|
+
get: function () { return chunkZ7LC3GGU_cjs.currencySymbol; }
|
|
3206
3214
|
});
|
|
3207
3215
|
Object.defineProperty(exports, "currencySymbolSide", {
|
|
3208
3216
|
enumerable: true,
|
|
3209
|
-
get: function () { return
|
|
3217
|
+
get: function () { return chunkZ7LC3GGU_cjs.currencySymbolSide; }
|
|
3210
3218
|
});
|
|
3211
3219
|
Object.defineProperty(exports, "formatAmount", {
|
|
3212
3220
|
enumerable: true,
|
|
3213
|
-
get: function () { return
|
|
3221
|
+
get: function () { return chunkZ7LC3GGU_cjs.formatAmount; }
|
|
3214
3222
|
});
|
|
3215
3223
|
Object.defineProperty(exports, "formatMoney", {
|
|
3216
3224
|
enumerable: true,
|
|
3217
|
-
get: function () { return
|
|
3225
|
+
get: function () { return chunkZ7LC3GGU_cjs.formatMoney; }
|
|
3218
3226
|
});
|
|
3219
3227
|
Object.defineProperty(exports, "isCurrentUserDefault", {
|
|
3220
3228
|
enumerable: true,
|
|
3221
|
-
get: function () { return
|
|
3229
|
+
get: function () { return chunkZ7LC3GGU_cjs.isCurrentUserDefault; }
|
|
3222
3230
|
});
|
|
3223
3231
|
Object.defineProperty(exports, "isPlatformAttributeName", {
|
|
3224
3232
|
enumerable: true,
|
|
3225
|
-
get: function () { return
|
|
3233
|
+
get: function () { return chunkZ7LC3GGU_cjs.isPlatformAttributeName; }
|
|
3226
3234
|
});
|
|
3227
3235
|
Object.defineProperty(exports, "localeNumberSeparators", {
|
|
3228
3236
|
enumerable: true,
|
|
3229
|
-
get: function () { return
|
|
3237
|
+
get: function () { return chunkZ7LC3GGU_cjs.localeNumberSeparators; }
|
|
3230
3238
|
});
|
|
3231
3239
|
Object.defineProperty(exports, "parseAmount", {
|
|
3232
3240
|
enumerable: true,
|
|
3233
|
-
get: function () { return
|
|
3241
|
+
get: function () { return chunkZ7LC3GGU_cjs.parseAmount; }
|
|
3234
3242
|
});
|
|
3235
3243
|
Object.defineProperty(exports, "parseCurrencyMeta", {
|
|
3236
3244
|
enumerable: true,
|
|
3237
|
-
get: function () { return
|
|
3245
|
+
get: function () { return chunkZ7LC3GGU_cjs.parseCurrencyMeta; }
|
|
3238
3246
|
});
|
|
3239
3247
|
Object.defineProperty(exports, "parseFileMeta", {
|
|
3240
3248
|
enumerable: true,
|
|
3241
|
-
get: function () { return
|
|
3249
|
+
get: function () { return chunkZ7LC3GGU_cjs.parseFileMeta; }
|
|
3242
3250
|
});
|
|
3243
3251
|
Object.defineProperty(exports, "parseRelationMeta", {
|
|
3244
3252
|
enumerable: true,
|
|
3245
|
-
get: function () { return
|
|
3253
|
+
get: function () { return chunkZ7LC3GGU_cjs.parseRelationMeta; }
|
|
3246
3254
|
});
|
|
3247
3255
|
Object.defineProperty(exports, "platformAttributes", {
|
|
3248
3256
|
enumerable: true,
|
|
3249
|
-
get: function () { return
|
|
3257
|
+
get: function () { return chunkZ7LC3GGU_cjs.platformAttributes; }
|
|
3250
3258
|
});
|
|
3251
3259
|
exports.AccountClient = AccountClient;
|
|
3252
3260
|
exports.ActionSchema = ActionSchema;
|