@proteos/sdk 0.52.0 → 0.53.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{chunk-VKS2VX24.js → chunk-HEUXXELG.js} +25 -4
- package/dist/chunk-HEUXXELG.js.map +1 -0
- package/dist/{chunk-WEEC4REL.cjs → chunk-SWCPI6SL.cjs} +27 -3
- package/dist/chunk-SWCPI6SL.cjs.map +1 -0
- package/dist/index.cjs +161 -114
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +109 -7
- package/dist/index.d.ts +109 -7
- package/dist/index.js +37 -2
- package/dist/index.js.map +1 -1
- package/dist/meta/index.cjs +84 -72
- 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-DHhuGDpV.d.cts → types-D5P6yk1L.d.cts} +111 -17
- package/dist/{types-DHhuGDpV.d.ts → types-D5P6yk1L.d.ts} +111 -17
- package/package.json +3 -3
- package/src/conversation/types.ts +37 -4
- package/src/data/index.ts +15 -2
- package/src/data/records.ts +63 -0
- package/src/data/types.ts +52 -0
- package/src/index.ts +19 -1
- package/src/meta/index.ts +8 -1
- package/src/meta/layout/control-registry.json +10 -2
- package/src/meta/types.ts +72 -0
- package/dist/chunk-VKS2VX24.js.map +0 -1
- package/dist/chunk-WEEC4REL.cjs.map +0 -1
|
@@ -2086,7 +2086,7 @@ interface MetaListOptions extends ListOptions {
|
|
|
2086
2086
|
* full set; format/structural variation lives on `Attribute.meta` (see
|
|
2087
2087
|
* `AttributeMeta` below), not on the type discriminator.
|
|
2088
2088
|
*/
|
|
2089
|
-
type AttributeType = 'string' | 'number' | 'integer' | 'boolean' | 'array' | 'object' | 'datetime' | 'enum' | 'relation' | 'user' | 'principal' | 'currency' | 'knowledge-text' | 'file';
|
|
2089
|
+
type AttributeType = 'string' | 'number' | 'integer' | 'boolean' | 'array' | 'object' | 'datetime' | 'enum' | 'relation' | 'user' | 'principal' | 'currency' | 'knowledge-text' | 'file' | 'contact-address';
|
|
2090
2090
|
/**
|
|
2091
2091
|
* Attribute-level permissions: restricting a FIELD rather than a record — a
|
|
2092
2092
|
* salary column readable only by the people team, a margin column writable only
|
|
@@ -2299,6 +2299,35 @@ declare const CurrencyAttributeMetaSchema: z.ZodObject<{
|
|
|
2299
2299
|
default_currency_code?: string | undefined;
|
|
2300
2300
|
allowed_currency_codes?: string[] | undefined;
|
|
2301
2301
|
}>;
|
|
2302
|
+
/**
|
|
2303
|
+
* Which endpoint a `contact-address` attribute holds. The record-capable
|
|
2304
|
+
* subset of the conversation contact-address kinds — what a human types.
|
|
2305
|
+
*/
|
|
2306
|
+
type ContactAddressAttributeKind = 'email' | 'phone' | 'linkedin_public_identifier';
|
|
2307
|
+
/**
|
|
2308
|
+
* Metadata for a `contact-address`-typed attribute: ONE canonical reachable
|
|
2309
|
+
* address of the person the record represents. The stored value is a plain
|
|
2310
|
+
* string canonicalized on write (lowercased email, E.164 phone with a leading
|
|
2311
|
+
* `+`, LinkedIn public identifier — a pasted profile URL is reduced to its
|
|
2312
|
+
* `/in/<slug>`; displayed as https://www.linkedin.com/in/<slug>; LinkedIn
|
|
2313
|
+
* profile ids such as ACoAA… are refused — the platform learns them itself).
|
|
2314
|
+
* Records carrying such values bind to exactly one conversation contact;
|
|
2315
|
+
* `kind` is REQUIRED. Mirror of the Go `metamodel.ContactAddressAttributeMeta`.
|
|
2316
|
+
*/
|
|
2317
|
+
interface ContactAddressAttributeMeta {
|
|
2318
|
+
kind: ContactAddressAttributeKind;
|
|
2319
|
+
description?: string;
|
|
2320
|
+
}
|
|
2321
|
+
declare const ContactAddressAttributeMetaSchema: z.ZodObject<{
|
|
2322
|
+
kind: z.ZodEnum<["email", "phone", "linkedin_public_identifier"]>;
|
|
2323
|
+
description: z.ZodOptional<z.ZodString>;
|
|
2324
|
+
}, "strip", z.ZodTypeAny, {
|
|
2325
|
+
kind: "email" | "phone" | "linkedin_public_identifier";
|
|
2326
|
+
description?: string | undefined;
|
|
2327
|
+
}, {
|
|
2328
|
+
kind: "email" | "phone" | "linkedin_public_identifier";
|
|
2329
|
+
description?: string | undefined;
|
|
2330
|
+
}>;
|
|
2302
2331
|
/**
|
|
2303
2332
|
* Metadata for a `knowledge-text`-typed attribute. The value is a
|
|
2304
2333
|
* {@link KnowledgeNodeRef}; the data-service materializes client-sent text
|
|
@@ -2337,7 +2366,7 @@ declare const FileAttributeMetaSchema: z.ZodObject<{
|
|
|
2337
2366
|
* appropriate shape based on `Attribute.type`; runtime consumers can
|
|
2338
2367
|
* narrow via the `type` field.
|
|
2339
2368
|
*/
|
|
2340
|
-
type AttributeMeta = StringAttributeMeta | NumberAttributeMeta | DatetimeAttributeMeta | ArrayAttributeMeta | ObjectAttributeMeta | EnumAttributeMeta | RelationAttributeMeta | UserAttributeMeta | PrincipalAttributeMeta | CurrencyAttributeMeta | KnowledgeTextAttributeMeta | FileAttributeMeta;
|
|
2369
|
+
type AttributeMeta = StringAttributeMeta | NumberAttributeMeta | DatetimeAttributeMeta | ArrayAttributeMeta | ObjectAttributeMeta | EnumAttributeMeta | RelationAttributeMeta | UserAttributeMeta | PrincipalAttributeMeta | CurrencyAttributeMeta | KnowledgeTextAttributeMeta | FileAttributeMeta | ContactAddressAttributeMeta;
|
|
2341
2370
|
/**
|
|
2342
2371
|
* Entity attribute definition. Mirrors `model.Attribute` in the Go SDK.
|
|
2343
2372
|
*/
|
|
@@ -2525,6 +2554,13 @@ declare function parseUserMeta(attr: Attribute): UserAttributeMeta | null;
|
|
|
2525
2554
|
* with no meta still resolves to an empty `{}` rather than null.
|
|
2526
2555
|
*/
|
|
2527
2556
|
declare function parseFileMeta(attr: Attribute): FileAttributeMeta | null;
|
|
2557
|
+
/**
|
|
2558
|
+
* Returns the typed `ContactAddressAttributeMeta` when `attr` is a
|
|
2559
|
+
* contact-address attribute with a valid kind; null otherwise. Unlike the
|
|
2560
|
+
* `{}`-defaulting parsers, `kind` is required — an attribute without one
|
|
2561
|
+
* cannot be canonicalized, so it resolves to null (shape of parseRelationMeta).
|
|
2562
|
+
*/
|
|
2563
|
+
declare function parseContactAddressMeta(attr: Attribute): ContactAddressAttributeMeta | null;
|
|
2528
2564
|
/**
|
|
2529
2565
|
* A single operation a resource may be publicly exposed for. Independent set
|
|
2530
2566
|
* (not a level): a resource can be public for `write` without `read`. Only
|
|
@@ -2535,6 +2571,28 @@ type PublicAccessOperation = 'read' | 'write' | 'delete';
|
|
|
2535
2571
|
* Entity definition.
|
|
2536
2572
|
* Note: Entity uses `slug` as its primary identifier, not `id`.
|
|
2537
2573
|
*/
|
|
2574
|
+
/**
|
|
2575
|
+
* What happens when a record's contact-address value already belongs to a
|
|
2576
|
+
* contact linked to ANOTHER record of the same entity: `reject` fails the
|
|
2577
|
+
* write (409 `record_duplicate`); `flag` (default) accepts it and raises a
|
|
2578
|
+
* record duplicate pair for review.
|
|
2579
|
+
*/
|
|
2580
|
+
type ContactBindingDuplicatePolicy = 'reject' | 'flag';
|
|
2581
|
+
/**
|
|
2582
|
+
* The entity-level contact-binding setting — meaningful only for entities
|
|
2583
|
+
* with `contact-address` attributes; absent on the wire means `flag`. Mirror
|
|
2584
|
+
* of the Go `metamodel.ContactBinding`.
|
|
2585
|
+
*/
|
|
2586
|
+
interface EntityContactBinding {
|
|
2587
|
+
duplicate_policy: ContactBindingDuplicatePolicy;
|
|
2588
|
+
}
|
|
2589
|
+
declare const EntityContactBindingSchema: z.ZodObject<{
|
|
2590
|
+
duplicate_policy: z.ZodEnum<["reject", "flag"]>;
|
|
2591
|
+
}, "strip", z.ZodTypeAny, {
|
|
2592
|
+
duplicate_policy: "reject" | "flag";
|
|
2593
|
+
}, {
|
|
2594
|
+
duplicate_policy: "reject" | "flag";
|
|
2595
|
+
}>;
|
|
2538
2596
|
interface Entity extends AuditFields {
|
|
2539
2597
|
slug: string;
|
|
2540
2598
|
name: string;
|
|
@@ -2548,6 +2606,11 @@ interface Entity extends AuditFields {
|
|
|
2548
2606
|
* (default).
|
|
2549
2607
|
*/
|
|
2550
2608
|
public_record_access: PublicAccessOperation[];
|
|
2609
|
+
/**
|
|
2610
|
+
* Contact-binding setting (see `EntityContactBinding`). Optional: a Go
|
|
2611
|
+
* build that predates the setting omits it, which means `flag`.
|
|
2612
|
+
*/
|
|
2613
|
+
contact_binding?: EntityContactBinding;
|
|
2551
2614
|
module_slug: string;
|
|
2552
2615
|
/**
|
|
2553
2616
|
* Liquid template that renders a human-readable title for an instance
|
|
@@ -2590,6 +2653,13 @@ declare const EntitySchema: z.ZodObject<{
|
|
|
2590
2653
|
description: z.ZodString;
|
|
2591
2654
|
is_remote: z.ZodBoolean;
|
|
2592
2655
|
public_record_access: z.ZodDefault<z.ZodArray<z.ZodEnum<["read", "write", "delete"]>, "many">>;
|
|
2656
|
+
contact_binding: z.ZodOptional<z.ZodObject<{
|
|
2657
|
+
duplicate_policy: z.ZodEnum<["reject", "flag"]>;
|
|
2658
|
+
}, "strip", z.ZodTypeAny, {
|
|
2659
|
+
duplicate_policy: "reject" | "flag";
|
|
2660
|
+
}, {
|
|
2661
|
+
duplicate_policy: "reject" | "flag";
|
|
2662
|
+
}>>;
|
|
2593
2663
|
module_slug: z.ZodString;
|
|
2594
2664
|
title_template: z.ZodDefault<z.ZodString>;
|
|
2595
2665
|
attributes: z.ZodArray<z.ZodObject<{
|
|
@@ -2734,6 +2804,9 @@ declare const EntitySchema: z.ZodObject<{
|
|
|
2734
2804
|
public_record_access: ("read" | "write" | "delete")[];
|
|
2735
2805
|
module_slug: string;
|
|
2736
2806
|
title_template: string;
|
|
2807
|
+
contact_binding?: {
|
|
2808
|
+
duplicate_policy: "reject" | "flag";
|
|
2809
|
+
} | undefined;
|
|
2737
2810
|
}, {
|
|
2738
2811
|
name: string;
|
|
2739
2812
|
created_at: string;
|
|
@@ -2775,6 +2848,9 @@ declare const EntitySchema: z.ZodObject<{
|
|
|
2775
2848
|
is_remote: boolean;
|
|
2776
2849
|
module_slug: string;
|
|
2777
2850
|
public_record_access?: ("read" | "write" | "delete")[] | undefined;
|
|
2851
|
+
contact_binding?: {
|
|
2852
|
+
duplicate_policy: "reject" | "flag";
|
|
2853
|
+
} | undefined;
|
|
2778
2854
|
title_template?: string | undefined;
|
|
2779
2855
|
}>;
|
|
2780
2856
|
/**
|
|
@@ -2812,6 +2888,13 @@ declare const EntityWithSchemaSchema: z.ZodObject<{
|
|
|
2812
2888
|
description: z.ZodString;
|
|
2813
2889
|
is_remote: z.ZodBoolean;
|
|
2814
2890
|
public_record_access: z.ZodDefault<z.ZodArray<z.ZodEnum<["read", "write", "delete"]>, "many">>;
|
|
2891
|
+
contact_binding: z.ZodOptional<z.ZodObject<{
|
|
2892
|
+
duplicate_policy: z.ZodEnum<["reject", "flag"]>;
|
|
2893
|
+
}, "strip", z.ZodTypeAny, {
|
|
2894
|
+
duplicate_policy: "reject" | "flag";
|
|
2895
|
+
}, {
|
|
2896
|
+
duplicate_policy: "reject" | "flag";
|
|
2897
|
+
}>>;
|
|
2815
2898
|
module_slug: z.ZodString;
|
|
2816
2899
|
title_template: z.ZodDefault<z.ZodString>;
|
|
2817
2900
|
attributes: z.ZodArray<z.ZodObject<{
|
|
@@ -2959,6 +3042,9 @@ declare const EntityWithSchemaSchema: z.ZodObject<{
|
|
|
2959
3042
|
module_slug: string;
|
|
2960
3043
|
title_template: string;
|
|
2961
3044
|
schema: Record<string, unknown>;
|
|
3045
|
+
contact_binding?: {
|
|
3046
|
+
duplicate_policy: "reject" | "flag";
|
|
3047
|
+
} | undefined;
|
|
2962
3048
|
}, {
|
|
2963
3049
|
name: string;
|
|
2964
3050
|
created_at: string;
|
|
@@ -3001,6 +3087,9 @@ declare const EntityWithSchemaSchema: z.ZodObject<{
|
|
|
3001
3087
|
module_slug: string;
|
|
3002
3088
|
schema: Record<string, unknown>;
|
|
3003
3089
|
public_record_access?: ("read" | "write" | "delete")[] | undefined;
|
|
3090
|
+
contact_binding?: {
|
|
3091
|
+
duplicate_policy: "reject" | "flag";
|
|
3092
|
+
} | undefined;
|
|
3004
3093
|
title_template?: string | undefined;
|
|
3005
3094
|
}>;
|
|
3006
3095
|
/**
|
|
@@ -3025,6 +3114,10 @@ interface CreateEntityRequest {
|
|
|
3025
3114
|
* the field resets it to private.
|
|
3026
3115
|
*/
|
|
3027
3116
|
public_record_access?: PublicAccessOperation[];
|
|
3117
|
+
/**
|
|
3118
|
+
* Contact-binding setting; full-replacement on upsert (omitted = `flag`).
|
|
3119
|
+
*/
|
|
3120
|
+
contact_binding?: EntityContactBinding;
|
|
3028
3121
|
module_slug: string;
|
|
3029
3122
|
description: string;
|
|
3030
3123
|
title_template?: string;
|
|
@@ -3037,6 +3130,7 @@ interface UpdateEntityRequest {
|
|
|
3037
3130
|
name?: string;
|
|
3038
3131
|
is_remote?: boolean;
|
|
3039
3132
|
public_record_access?: PublicAccessOperation[];
|
|
3133
|
+
contact_binding?: EntityContactBinding;
|
|
3040
3134
|
module_slug?: string;
|
|
3041
3135
|
description?: string;
|
|
3042
3136
|
title_template?: string;
|
|
@@ -3462,8 +3556,8 @@ declare const PageActionSchema: z.ZodObject<{
|
|
|
3462
3556
|
workflow?: string | undefined;
|
|
3463
3557
|
inputs?: Record<string, string> | undefined;
|
|
3464
3558
|
skip_confirmation?: boolean | undefined;
|
|
3465
|
-
action?: string | undefined;
|
|
3466
3559
|
kind?: "workflow" | "action" | undefined;
|
|
3560
|
+
action?: string | undefined;
|
|
3467
3561
|
}, {
|
|
3468
3562
|
label: string;
|
|
3469
3563
|
icon: string;
|
|
@@ -3472,8 +3566,8 @@ declare const PageActionSchema: z.ZodObject<{
|
|
|
3472
3566
|
workflow?: string | undefined;
|
|
3473
3567
|
inputs?: Record<string, string> | undefined;
|
|
3474
3568
|
skip_confirmation?: boolean | undefined;
|
|
3475
|
-
action?: string | undefined;
|
|
3476
3569
|
kind?: "workflow" | "action" | undefined;
|
|
3570
|
+
action?: string | undefined;
|
|
3477
3571
|
}>;
|
|
3478
3572
|
/**
|
|
3479
3573
|
* Whether a list's rows can be checked, and whether the checkboxes show from
|
|
@@ -3596,8 +3690,8 @@ declare const ListSchema: z.ZodObject<{
|
|
|
3596
3690
|
workflow?: string | undefined;
|
|
3597
3691
|
inputs?: Record<string, string> | undefined;
|
|
3598
3692
|
skip_confirmation?: boolean | undefined;
|
|
3599
|
-
action?: string | undefined;
|
|
3600
3693
|
kind?: "workflow" | "action" | undefined;
|
|
3694
|
+
action?: string | undefined;
|
|
3601
3695
|
}, {
|
|
3602
3696
|
label: string;
|
|
3603
3697
|
icon: string;
|
|
@@ -3606,8 +3700,8 @@ declare const ListSchema: z.ZodObject<{
|
|
|
3606
3700
|
workflow?: string | undefined;
|
|
3607
3701
|
inputs?: Record<string, string> | undefined;
|
|
3608
3702
|
skip_confirmation?: boolean | undefined;
|
|
3609
|
-
action?: string | undefined;
|
|
3610
3703
|
kind?: "workflow" | "action" | undefined;
|
|
3704
|
+
action?: string | undefined;
|
|
3611
3705
|
}>, "many">>;
|
|
3612
3706
|
selection_mode: z.ZodOptional<z.ZodEnum<["on_demand", "always", "off"]>>;
|
|
3613
3707
|
sorting: z.ZodArray<z.ZodObject<{
|
|
@@ -3655,8 +3749,8 @@ declare const ListSchema: z.ZodObject<{
|
|
|
3655
3749
|
workflow?: string | undefined;
|
|
3656
3750
|
inputs?: Record<string, string> | undefined;
|
|
3657
3751
|
skip_confirmation?: boolean | undefined;
|
|
3658
|
-
action?: string | undefined;
|
|
3659
3752
|
kind?: "workflow" | "action" | undefined;
|
|
3753
|
+
action?: string | undefined;
|
|
3660
3754
|
}[] | undefined;
|
|
3661
3755
|
selection_mode?: "on_demand" | "always" | "off" | undefined;
|
|
3662
3756
|
}, {
|
|
@@ -3693,8 +3787,8 @@ declare const ListSchema: z.ZodObject<{
|
|
|
3693
3787
|
workflow?: string | undefined;
|
|
3694
3788
|
inputs?: Record<string, string> | undefined;
|
|
3695
3789
|
skip_confirmation?: boolean | undefined;
|
|
3696
|
-
action?: string | undefined;
|
|
3697
3790
|
kind?: "workflow" | "action" | undefined;
|
|
3791
|
+
action?: string | undefined;
|
|
3698
3792
|
}[] | undefined;
|
|
3699
3793
|
selection_mode?: "on_demand" | "always" | "off" | undefined;
|
|
3700
3794
|
}>;
|
|
@@ -3966,8 +4060,8 @@ declare const PageSchema: z.ZodObject<{
|
|
|
3966
4060
|
workflow?: string | undefined;
|
|
3967
4061
|
inputs?: Record<string, string> | undefined;
|
|
3968
4062
|
skip_confirmation?: boolean | undefined;
|
|
3969
|
-
action?: string | undefined;
|
|
3970
4063
|
kind?: "workflow" | "action" | undefined;
|
|
4064
|
+
action?: string | undefined;
|
|
3971
4065
|
}, {
|
|
3972
4066
|
label: string;
|
|
3973
4067
|
icon: string;
|
|
@@ -3976,8 +4070,8 @@ declare const PageSchema: z.ZodObject<{
|
|
|
3976
4070
|
workflow?: string | undefined;
|
|
3977
4071
|
inputs?: Record<string, string> | undefined;
|
|
3978
4072
|
skip_confirmation?: boolean | undefined;
|
|
3979
|
-
action?: string | undefined;
|
|
3980
4073
|
kind?: "workflow" | "action" | undefined;
|
|
4074
|
+
action?: string | undefined;
|
|
3981
4075
|
}>, "many">;
|
|
3982
4076
|
layout: z.ZodObject<{
|
|
3983
4077
|
version: z.ZodLiteral<1>;
|
|
@@ -4063,8 +4157,8 @@ declare const PageSchema: z.ZodObject<{
|
|
|
4063
4157
|
workflow?: string | undefined;
|
|
4064
4158
|
inputs?: Record<string, string> | undefined;
|
|
4065
4159
|
skip_confirmation?: boolean | undefined;
|
|
4066
|
-
action?: string | undefined;
|
|
4067
4160
|
kind?: "workflow" | "action" | undefined;
|
|
4161
|
+
action?: string | undefined;
|
|
4068
4162
|
}[];
|
|
4069
4163
|
layout: {
|
|
4070
4164
|
version: 1;
|
|
@@ -4105,8 +4199,8 @@ declare const PageSchema: z.ZodObject<{
|
|
|
4105
4199
|
workflow?: string | undefined;
|
|
4106
4200
|
inputs?: Record<string, string> | undefined;
|
|
4107
4201
|
skip_confirmation?: boolean | undefined;
|
|
4108
|
-
action?: string | undefined;
|
|
4109
4202
|
kind?: "workflow" | "action" | undefined;
|
|
4203
|
+
action?: string | undefined;
|
|
4110
4204
|
}[];
|
|
4111
4205
|
layout: {
|
|
4112
4206
|
version: 1;
|
|
@@ -5087,8 +5181,8 @@ declare const ListExtensionSchema: z.ZodObject<{
|
|
|
5087
5181
|
workflow?: string | undefined;
|
|
5088
5182
|
inputs?: Record<string, string> | undefined;
|
|
5089
5183
|
skip_confirmation?: boolean | undefined;
|
|
5090
|
-
action?: string | undefined;
|
|
5091
5184
|
kind?: "workflow" | "action" | undefined;
|
|
5185
|
+
action?: string | undefined;
|
|
5092
5186
|
}, {
|
|
5093
5187
|
label: string;
|
|
5094
5188
|
icon: string;
|
|
@@ -5097,8 +5191,8 @@ declare const ListExtensionSchema: z.ZodObject<{
|
|
|
5097
5191
|
workflow?: string | undefined;
|
|
5098
5192
|
inputs?: Record<string, string> | undefined;
|
|
5099
5193
|
skip_confirmation?: boolean | undefined;
|
|
5100
|
-
action?: string | undefined;
|
|
5101
5194
|
kind?: "workflow" | "action" | undefined;
|
|
5195
|
+
action?: string | undefined;
|
|
5102
5196
|
}>, "many">;
|
|
5103
5197
|
}, "strip", z.ZodTypeAny, {
|
|
5104
5198
|
key: string;
|
|
@@ -5134,8 +5228,8 @@ declare const ListExtensionSchema: z.ZodObject<{
|
|
|
5134
5228
|
workflow?: string | undefined;
|
|
5135
5229
|
inputs?: Record<string, string> | undefined;
|
|
5136
5230
|
skip_confirmation?: boolean | undefined;
|
|
5137
|
-
action?: string | undefined;
|
|
5138
5231
|
kind?: "workflow" | "action" | undefined;
|
|
5232
|
+
action?: string | undefined;
|
|
5139
5233
|
}[];
|
|
5140
5234
|
org_id: string;
|
|
5141
5235
|
}, {
|
|
@@ -5172,8 +5266,8 @@ declare const ListExtensionSchema: z.ZodObject<{
|
|
|
5172
5266
|
workflow?: string | undefined;
|
|
5173
5267
|
inputs?: Record<string, string> | undefined;
|
|
5174
5268
|
skip_confirmation?: boolean | undefined;
|
|
5175
|
-
action?: string | undefined;
|
|
5176
5269
|
kind?: "workflow" | "action" | undefined;
|
|
5270
|
+
action?: string | undefined;
|
|
5177
5271
|
}[];
|
|
5178
5272
|
org_id: string;
|
|
5179
5273
|
}>;
|
|
@@ -5612,4 +5706,4 @@ declare function isCurrentUserDefault(value: unknown): value is CurrentUserDefau
|
|
|
5612
5706
|
/** Only the identity-valued attribute types can carry the sentinel. */
|
|
5613
5707
|
declare function acceptsCurrentUserDefault(type: AttributeType): boolean;
|
|
5614
5708
|
|
|
5615
|
-
export {
|
|
5709
|
+
export { type CurrencySymbolSide as $, type AuditFields as A, type ComponentService as B, CURRENT_USER_DEFAULT as C, type ContactAddressAttributeKind as D, type ContactAddressAttributeMeta as E, type FileRef as F, ContactAddressAttributeMetaSchema as G, type ContactBindingDuplicatePolicy as H, type CreateAppConfigurationRequest as I, type CreateAppRequest as J, type CreateComponentRequest as K, type ListOptions as L, type CreateDesignReferenceRequest as M, type CreateEntityExtensionRequest as N, type CreateEntityRequest as O, PageIterator as P, type CreateListExtensionRequest as Q, type CreateListRequest as R, type CreateListViewRequest as S, type CreateMenuConfigurationExtensionRequest as T, type UserRef as U, type CreateMenuConfigurationRequest as V, type CreatePageExtensionRequest as W, type CreatePageRequest as X, type CreateVariableRequest as Y, type CurrencyAttributeMeta as Z, CurrencyAttributeMetaSchema as _, type Attribute as a, MenuConfigurationExtensionPlacementSchema as a$, type CurrencyValue as a0, type CurrentUserDefault as a1, DEFAULT_OPTIONS as a2, DEFAULT_PAGE_SIZE as a3, DONE as a4, type DeployModuleRequest as a5, type DesignReference as a6, type DesignReferenceContent as a7, DesignReferenceSchema as a8, type DesignReferenceService as a9, type ListEntitiesOptions as aA, type ListEntityExtensionsOptions as aB, type ListExtension as aC, type ListExtensionColumnPlacement as aD, ListExtensionColumnPlacementSchema as aE, ListExtensionSchema as aF, type ListExtensionService as aG, type ListFn as aH, type ListListExtensionsOptions as aI, type ListListViewsOptions as aJ, type ListListsOptions as aK, type ListMenuConfigurationExtensionsOptions as aL, type ListMenuConfigurationsOptions as aM, type ListModulesOptions as aN, type ListPageExtensionsOptions as aO, type ListPagesOptions as aP, ListSchema as aQ, type ListService as aR, type ListVariablesOptions as aS, type ListView as aT, ListViewSchema as aU, type ListViewService as aV, type LogicalOperator as aW, MENU_CONFIGURATION_EXTENSION_ANCHOR_ITEMS as aX, type MenuConfiguration as aY, type MenuConfigurationExtension as aZ, type MenuConfigurationExtensionPlacement as a_, type Done as aa, type Entity as ab, type EntityContactBinding as ac, EntityContactBindingSchema as ad, type EntityExtension as ae, EntityExtensionSchema as af, type EntityExtensionService as ag, EntitySchema as ah, type EntityService as ai, type EntityWithSchema as aj, EntityWithSchemaSchema as ak, type EnumAttributeMeta as al, type EnumValue as am, type ExtensionPosition as an, ExtensionPositionSchema as ao, type FileAttributeMeta as ap, FileRefSchema as aq, type FilterElement as ar, FilterElementSchema as as, type FilterGroup as at, FilterGroupSchema as au, type List as av, type ListAppConfigurationsOptions as aw, type ListAppsOptions as ax, type ListComponentsOptions as ay, type ListDesignReferencesOptions as az, type ListResult as b, type UserType as b$, type MenuConfigurationExtensionPosition as b0, MenuConfigurationExtensionPositionSchema as b1, MenuConfigurationExtensionSchema as b2, type MenuConfigurationExtensionService as b3, MenuConfigurationSchema as b4, type MenuConfigurationService as b5, type MenuItem as b6, MenuItemSchema as b7, MenuItemType as b8, MetaClient as b9, type PublicPageResponse as bA, type RelationAttributeMeta as bB, RelationAttributeMetaSchema as bC, type RequestOptions as bD, type ResolvedClientOptions as bE, type ResponseMeta as bF, ResponseMetaSchema as bG, type SortConfig as bH, SortConfigSchema as bI, type SortDirection as bJ, type Timestamps as bK, type TokenProvider as bL, type UpdateAppConfigurationRequest as bM, type UpdateAppRequest as bN, type UpdateComponentRequest as bO, type UpdateDesignReferenceRequest as bP, type UpdateEntityExtensionRequest as bQ, type UpdateEntityRequest as bR, type UpdateListExtensionRequest as bS, type UpdateListRequest as bT, type UpdateListViewRequest as bU, type UpdateMenuConfigurationExtensionRequest as bV, type UpdateMenuConfigurationRequest as bW, type UpdatePageExtensionRequest as bX, type UpdatePageRequest as bY, type UpdateVariableRequest as bZ, UserRefSchema as b_, type MetaListOptions as ba, type Module as bb, ModuleSchema as bc, type ModuleService as bd, type ModuleStatus as be, type OnDeleteAction as bf, OnDeleteActionSchema as bg, PAGE_EXTENSION_ANCHOR_MAIN as bh, PAGE_EXTENSION_ANCHOR_SIDE_PANEL as bi, PLATFORM_ATTRIBUTE_NAMES as bj, PLATFORM_USER_ID as bk, type Page as bl, type PageAction as bm, type PageActionKind as bn, PageActionSchema as bo, type PageExtension as bp, type PageExtensionPlacement as bq, PageExtensionPlacementSchema as br, PageExtensionSchema as bs, type PageExtensionService as bt, type PageLayout as bu, PageLayoutSchema as bv, PageSchema as bw, type PageService as bx, type PageType as by, type PublicPageComponent as bz, ProteosClient as c, type SizingProps as c$, type Variable as c0, VariableSchema as c1, type VariableService as c2, acceptsCurrentUserDefault as c3, allCurrencyCodes as c4, createIterator as c5, createListResultSchema as c6, currencyLabel as c7, currencySymbol as c8, currencySymbolSide as c9, type LayoutAlign as cA, type LayoutElement as cB, LayoutElementSchema as cC, LayoutElementType as cD, type LayoutGap as cE, type LayoutJustify as cF, type LayoutTab as cG, LayoutTabSchema as cH, type ListElement as cI, type NumberAttributeMeta as cJ, type ObjectAttributeMeta as cK, PAGE_BACKGROUND_TOKENS as cL, type PageBackgroundToken as cM, type PageLayoutSidePanel as cN, PageLayoutSidePanelSchema as cO, type PageStyle as cP, PageStyleSchema as cQ, type PrincipalAttributeMeta as cR, type PrincipalType as cS, type RecordFilterElement as cT, type RelatedListElement as cU, type RelatedRecordElement as cV, type ResponsiveSizing as cW, type RowElement as cX, type SectionElement as cY, type SizeValue as cZ, SizeValueSchema as c_, formatAmount as ca, formatMoney as cb, isCurrentUserDefault as cc, isPlatformAttributeName as cd, localeNumberSeparators as ce, parseAmount as cf, parseContactAddressMeta as cg, parseCurrencyMeta as ch, parseFileMeta as ci, parseRelationMeta as cj, platformAttributes as ck, resolveOptions as cl, type AttributeForLookup as cm, type AttributeMeta as cn, BUILT_IN_CONTROLS as co, type BuiltInControlSlug as cp, type CardElement as cq, type ColumnElement as cr, type CommonProps as cs, type ComponentElement as ct, type ControlBucket as cu, type DatetimeAttributeMeta as cv, type DatetimeFormat as cw, type DividerElement as cx, type FieldElement as cy, FileAttributeMetaSchema as cz, type PrincipalRef as d, type StringAttributeMeta as d0, type StringFormat as d1, type TabsElement as d2, type TextElement as d3, type TextVariant as d4, type UserAttributeMeta as d5, UserAttributeMetaSchema as d6, type WorkflowTriggerElement as d7, isBuiltInControl as d8, lookupCompatibleControls as d9, lookupControls as da, lookupPrimaryControl as db, parsePrincipalMeta as dc, parseUserMeta as dd, type PublicAccessOperation as e, type App as f, type AppConfiguration as g, AppConfigurationSchema as h, type AppConfigurationService as i, type AppHome as j, AppHomeSchema as k, type AppHomeType as l, AppSchema as m, type AppService as n, type ArrayAttributeMeta as o, type AttributeAccessRule as p, type AttributeRestrictions as q, AttributeSchema as r, type AttributeType as s, AuditFieldsSchema as t, type ClientOptions as u, type Column as v, ColumnSchema as w, type ComparisonOperator as x, type Component as y, ComponentSchema as z };
|