@labelbox/rl-sdk 0.0.147 → 0.0.149
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/generated/index.d.ts +1 -1
- package/dist/generated/sdk.gen.d.ts +74 -5
- package/dist/generated/sdk.gen.js +140 -4
- package/dist/generated/types.gen.d.ts +726 -79
- package/dist/reference/resources-reference.generated.js +82 -0
- package/dist/reference/sdk-reference.generated.js +1035 -50
- package/package.json +1 -1
|
@@ -2733,6 +2733,69 @@ export const RESOURCE_REFERENCE = {
|
|
|
2733
2733
|
type: 'string',
|
|
2734
2734
|
description: 'System prompt prepended to every conversation this agent runs.',
|
|
2735
2735
|
},
|
|
2736
|
+
{
|
|
2737
|
+
name: 'tags',
|
|
2738
|
+
required: true,
|
|
2739
|
+
type: 'ManagedAgentsTag[]',
|
|
2740
|
+
description: 'Current organization-scoped classification tags applied to this agent. Always an array. Tags are mutable catalog metadata and are deliberately absent from AgentVersion and session runtime snapshots.',
|
|
2741
|
+
items: {
|
|
2742
|
+
type: 'ManagedAgentsTag',
|
|
2743
|
+
description: 'An organization-scoped classification definition. Applying or removing it changes only catalog membership: it does not update the agent, mint an AgentVersion, or affect running sessions.',
|
|
2744
|
+
fields: [
|
|
2745
|
+
{
|
|
2746
|
+
name: 'color',
|
|
2747
|
+
required: false,
|
|
2748
|
+
type: 'string',
|
|
2749
|
+
description: 'Display color in #RRGGBB form.',
|
|
2750
|
+
minLength: 7,
|
|
2751
|
+
maxLength: 7,
|
|
2752
|
+
pattern: '^#[0-9A-Fa-f]{6}$',
|
|
2753
|
+
},
|
|
2754
|
+
{
|
|
2755
|
+
name: 'created_at',
|
|
2756
|
+
required: false,
|
|
2757
|
+
type: 'string',
|
|
2758
|
+
description: 'Server-assigned RFC 3339 timestamp of when the tag was created.',
|
|
2759
|
+
format: 'date-time',
|
|
2760
|
+
},
|
|
2761
|
+
{
|
|
2762
|
+
name: 'description',
|
|
2763
|
+
required: false,
|
|
2764
|
+
type: 'string',
|
|
2765
|
+
description: 'Optional operator-facing explanation of the classification, up to 280 characters.',
|
|
2766
|
+
maxLength: 280,
|
|
2767
|
+
},
|
|
2768
|
+
{
|
|
2769
|
+
name: 'label',
|
|
2770
|
+
required: false,
|
|
2771
|
+
type: 'string',
|
|
2772
|
+
description: 'Display label, trimmed by the service. Unique case-insensitively among live tags in this organization.',
|
|
2773
|
+
minLength: 1,
|
|
2774
|
+
maxLength: 32,
|
|
2775
|
+
},
|
|
2776
|
+
{
|
|
2777
|
+
name: 'organization_id',
|
|
2778
|
+
required: false,
|
|
2779
|
+
type: 'string',
|
|
2780
|
+
description: 'Labelbox organization that owns the tag. Server-assigned from the authenticated principal and never accepted as authority from the request body.',
|
|
2781
|
+
},
|
|
2782
|
+
{
|
|
2783
|
+
name: 'tag_id',
|
|
2784
|
+
required: false,
|
|
2785
|
+
type: 'string',
|
|
2786
|
+
description: 'Server-assigned tag id (UUID).',
|
|
2787
|
+
format: 'uuid',
|
|
2788
|
+
},
|
|
2789
|
+
{
|
|
2790
|
+
name: 'updated_at',
|
|
2791
|
+
required: false,
|
|
2792
|
+
type: 'string',
|
|
2793
|
+
description: 'Server-assigned RFC 3339 timestamp of the most recent definition update.',
|
|
2794
|
+
format: 'date-time',
|
|
2795
|
+
},
|
|
2796
|
+
],
|
|
2797
|
+
},
|
|
2798
|
+
},
|
|
2736
2799
|
{
|
|
2737
2800
|
name: 'toolsets',
|
|
2738
2801
|
required: false,
|
|
@@ -2813,6 +2876,17 @@ export const RESOURCE_REFERENCE = {
|
|
|
2813
2876
|
},
|
|
2814
2877
|
],
|
|
2815
2878
|
system: 'example',
|
|
2879
|
+
tags: [
|
|
2880
|
+
{
|
|
2881
|
+
color: '#14b8a6',
|
|
2882
|
+
created_at: '2026-02-18T09:30:00Z',
|
|
2883
|
+
description: 'example',
|
|
2884
|
+
label: 'example',
|
|
2885
|
+
organization_id: '9f8b1c2d-3e4f-5a6b-7c8d-9e0f1a2b3c4d',
|
|
2886
|
+
tag_id: '9f8b1c2d-3e4f-5a6b-7c8d-9e0f1a2b3c4d',
|
|
2887
|
+
updated_at: '2026-02-18T09:30:00Z',
|
|
2888
|
+
},
|
|
2889
|
+
],
|
|
2816
2890
|
toolsets: [
|
|
2817
2891
|
{
|
|
2818
2892
|
config: {
|
|
@@ -2828,6 +2902,7 @@ export const RESOURCE_REFERENCE = {
|
|
|
2828
2902
|
},
|
|
2829
2903
|
operationIds: [
|
|
2830
2904
|
'managedAgentsActivateMemoryStore',
|
|
2905
|
+
'managedAgentsApplyAgentTag',
|
|
2831
2906
|
'managedAgentsArchiveMemoryStore',
|
|
2832
2907
|
'managedAgentsCancelSession',
|
|
2833
2908
|
'managedAgentsCreateAgent',
|
|
@@ -2836,6 +2911,7 @@ export const RESOURCE_REFERENCE = {
|
|
|
2836
2911
|
'managedAgentsCreateMemory',
|
|
2837
2912
|
'managedAgentsCreateMemoryStore',
|
|
2838
2913
|
'managedAgentsCreateSkill',
|
|
2914
|
+
'managedAgentsCreateTag',
|
|
2839
2915
|
'managedAgentsCreateVault',
|
|
2840
2916
|
'managedAgentsCreateVaultCredential',
|
|
2841
2917
|
'managedAgentsCreateWebhookEndpoint',
|
|
@@ -2847,6 +2923,7 @@ export const RESOURCE_REFERENCE = {
|
|
|
2847
2923
|
'managedAgentsDeleteMemoryStore',
|
|
2848
2924
|
'managedAgentsDeleteSession',
|
|
2849
2925
|
'managedAgentsDeleteSkill',
|
|
2926
|
+
'managedAgentsDeleteTag',
|
|
2850
2927
|
'managedAgentsDeleteTriggerBinding',
|
|
2851
2928
|
'managedAgentsDeleteVault',
|
|
2852
2929
|
'managedAgentsDeleteVaultCredential',
|
|
@@ -2871,6 +2948,7 @@ export const RESOURCE_REFERENCE = {
|
|
|
2871
2948
|
'managedAgentsGetSessionTree',
|
|
2872
2949
|
'managedAgentsGetSkill',
|
|
2873
2950
|
'managedAgentsGetSkillVersion',
|
|
2951
|
+
'managedAgentsGetTag',
|
|
2874
2952
|
'managedAgentsGetVault',
|
|
2875
2953
|
'managedAgentsGetVaultCredential',
|
|
2876
2954
|
'managedAgentsGetWebhookEndpoint',
|
|
@@ -2896,6 +2974,7 @@ export const RESOURCE_REFERENCE = {
|
|
|
2896
2974
|
'managedAgentsListSessions',
|
|
2897
2975
|
'managedAgentsListSkillVersions',
|
|
2898
2976
|
'managedAgentsListSkills',
|
|
2977
|
+
'managedAgentsListTags',
|
|
2899
2978
|
'managedAgentsListTriggerBindings',
|
|
2900
2979
|
'managedAgentsListVaultCredentials',
|
|
2901
2980
|
'managedAgentsListVaults',
|
|
@@ -2903,6 +2982,8 @@ export const RESOURCE_REFERENCE = {
|
|
|
2903
2982
|
'managedAgentsProbeMCPServer',
|
|
2904
2983
|
'managedAgentsPutAgentLearning',
|
|
2905
2984
|
'managedAgentsRedactMemoryVersion',
|
|
2985
|
+
'managedAgentsRemoveAgentTag',
|
|
2986
|
+
'managedAgentsReplaceAgentTags',
|
|
2906
2987
|
'managedAgentsRestoreMemoryVersion',
|
|
2907
2988
|
'managedAgentsRunAutomation',
|
|
2908
2989
|
'managedAgentsSendSessionEvents',
|
|
@@ -2915,6 +2996,7 @@ export const RESOURCE_REFERENCE = {
|
|
|
2915
2996
|
'managedAgentsUpdateMemory',
|
|
2916
2997
|
'managedAgentsUpdateMemoryStore',
|
|
2917
2998
|
'managedAgentsUpdateSkill',
|
|
2999
|
+
'managedAgentsUpdateTag',
|
|
2918
3000
|
'managedAgentsUpdateTriggerBinding',
|
|
2919
3001
|
'managedAgentsUpdateVault',
|
|
2920
3002
|
'managedAgentsUpdateVaultCredential',
|