@troykelly/openclaw-projects 0.0.22 → 0.0.25

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.
@@ -51,54 +51,54 @@ export declare const MemoryStoreParamsSchema: z.ZodEffects<z.ZodObject<{
51
51
  }>>;
52
52
  }, "strip", z.ZodTypeAny, {
53
53
  text?: string | undefined;
54
- category?: "preference" | "fact" | "decision" | "context" | "entity" | "other" | undefined;
55
- tags?: string[] | undefined;
56
- relationship_id?: string | undefined;
57
54
  location?: {
58
55
  lat: number;
59
56
  lng: number;
60
57
  address?: string | undefined;
61
58
  place_label?: string | undefined;
62
59
  } | undefined;
60
+ category?: "preference" | "fact" | "decision" | "context" | "entity" | "other" | undefined;
61
+ tags?: string[] | undefined;
62
+ relationship_id?: string | undefined;
63
63
  content?: string | undefined;
64
64
  importance?: number | undefined;
65
65
  }, {
66
66
  text?: string | undefined;
67
- category?: "preference" | "fact" | "decision" | "context" | "entity" | "other" | undefined;
68
- tags?: string[] | undefined;
69
- relationship_id?: string | undefined;
70
67
  location?: {
71
68
  lat: number;
72
69
  lng: number;
73
70
  address?: string | undefined;
74
71
  place_label?: string | undefined;
75
72
  } | undefined;
73
+ category?: "preference" | "fact" | "decision" | "context" | "entity" | "other" | undefined;
74
+ tags?: string[] | undefined;
75
+ relationship_id?: string | undefined;
76
76
  content?: string | undefined;
77
77
  importance?: number | undefined;
78
78
  }>, {
79
79
  text?: string | undefined;
80
- category?: "preference" | "fact" | "decision" | "context" | "entity" | "other" | undefined;
81
- tags?: string[] | undefined;
82
- relationship_id?: string | undefined;
83
80
  location?: {
84
81
  lat: number;
85
82
  lng: number;
86
83
  address?: string | undefined;
87
84
  place_label?: string | undefined;
88
85
  } | undefined;
86
+ category?: "preference" | "fact" | "decision" | "context" | "entity" | "other" | undefined;
87
+ tags?: string[] | undefined;
88
+ relationship_id?: string | undefined;
89
89
  content?: string | undefined;
90
90
  importance?: number | undefined;
91
91
  }, {
92
92
  text?: string | undefined;
93
- category?: "preference" | "fact" | "decision" | "context" | "entity" | "other" | undefined;
94
- tags?: string[] | undefined;
95
- relationship_id?: string | undefined;
96
93
  location?: {
97
94
  lat: number;
98
95
  lng: number;
99
96
  address?: string | undefined;
100
97
  place_label?: string | undefined;
101
98
  } | undefined;
99
+ category?: "preference" | "fact" | "decision" | "context" | "entity" | "other" | undefined;
100
+ tags?: string[] | undefined;
101
+ relationship_id?: string | undefined;
102
102
  content?: string | undefined;
103
103
  importance?: number | undefined;
104
104
  }>;
@@ -46,15 +46,15 @@ export declare const NoteCreateParamsSchema: z.ZodObject<{
46
46
  visibility: z.ZodDefault<z.ZodOptional<z.ZodEnum<["private", "shared", "public"]>>>;
47
47
  summary: z.ZodOptional<z.ZodString>;
48
48
  }, "strip", z.ZodTypeAny, {
49
- content: string;
50
49
  title: string;
50
+ content: string;
51
51
  visibility: "private" | "shared" | "public";
52
52
  tags?: string[] | undefined;
53
53
  notebook_id?: string | undefined;
54
54
  summary?: string | undefined;
55
55
  }, {
56
- content: string;
57
56
  title: string;
57
+ content: string;
58
58
  tags?: string[] | undefined;
59
59
  notebook_id?: string | undefined;
60
60
  visibility?: "private" | "shared" | "public" | undefined;
@@ -135,18 +135,18 @@ export declare const NoteUpdateParamsSchema: z.ZodObject<{
135
135
  is_pinned: z.ZodOptional<z.ZodBoolean>;
136
136
  }, "strip", z.ZodTypeAny, {
137
137
  noteId: string;
138
+ title?: string | undefined;
138
139
  tags?: string[] | undefined;
139
140
  content?: string | undefined;
140
- title?: string | undefined;
141
141
  notebook_id?: string | null | undefined;
142
142
  visibility?: "private" | "shared" | "public" | undefined;
143
143
  summary?: string | null | undefined;
144
144
  is_pinned?: boolean | undefined;
145
145
  }, {
146
146
  noteId: string;
147
+ title?: string | undefined;
147
148
  tags?: string[] | undefined;
148
149
  content?: string | undefined;
149
- title?: string | undefined;
150
150
  notebook_id?: string | null | undefined;
151
151
  visibility?: "private" | "shared" | "public" | undefined;
152
152
  summary?: string | null | undefined;
@@ -33,9 +33,9 @@ export declare const SkillStorePutParamsSchema: z.ZodObject<{
33
33
  key?: string | undefined;
34
34
  data?: Record<string, unknown> | undefined;
35
35
  user_email?: string | undefined;
36
+ title?: string | undefined;
36
37
  tags?: string[] | undefined;
37
38
  content?: string | undefined;
38
- title?: string | undefined;
39
39
  summary?: string | undefined;
40
40
  expires_at?: string | undefined;
41
41
  collection?: string | undefined;
@@ -49,9 +49,9 @@ export declare const SkillStorePutParamsSchema: z.ZodObject<{
49
49
  key?: string | undefined;
50
50
  data?: Record<string, unknown> | undefined;
51
51
  user_email?: string | undefined;
52
+ title?: string | undefined;
52
53
  tags?: string[] | undefined;
53
54
  content?: string | undefined;
54
- title?: string | undefined;
55
55
  summary?: string | undefined;
56
56
  expires_at?: string | undefined;
57
57
  collection?: string | undefined;
@@ -94,8 +94,8 @@ export declare const SkillStoreListParamsSchema: z.ZodObject<{
94
94
  }, "strip", z.ZodTypeAny, {
95
95
  skill_id: string;
96
96
  status?: "active" | "archived" | "processing" | undefined;
97
- limit?: number | undefined;
98
97
  user_email?: string | undefined;
98
+ limit?: number | undefined;
99
99
  since?: string | undefined;
100
100
  tags?: string[] | undefined;
101
101
  offset?: number | undefined;
@@ -104,8 +104,8 @@ export declare const SkillStoreListParamsSchema: z.ZodObject<{
104
104
  }, {
105
105
  skill_id: string;
106
106
  status?: "active" | "archived" | "processing" | undefined;
107
- limit?: number | undefined;
108
107
  user_email?: string | undefined;
108
+ limit?: number | undefined;
109
109
  since?: string | undefined;
110
110
  tags?: string[] | undefined;
111
111
  offset?: number | undefined;
@@ -209,8 +209,8 @@ export declare const SkillStoreSearchParamsSchema: z.ZodObject<{
209
209
  }, "strip", z.ZodTypeAny, {
210
210
  query: string;
211
211
  skill_id: string;
212
- limit?: number | undefined;
213
212
  user_email?: string | undefined;
213
+ limit?: number | undefined;
214
214
  tags?: string[] | undefined;
215
215
  semantic?: boolean | undefined;
216
216
  collection?: string | undefined;
@@ -218,8 +218,8 @@ export declare const SkillStoreSearchParamsSchema: z.ZodObject<{
218
218
  }, {
219
219
  query: string;
220
220
  skill_id: string;
221
- limit?: number | undefined;
222
221
  user_email?: string | undefined;
222
+ limit?: number | undefined;
223
223
  tags?: string[] | undefined;
224
224
  semantic?: boolean | undefined;
225
225
  collection?: string | undefined;
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "id": "openclaw-projects",
3
- "version": "0.0.22",
3
+ "version": "0.0.25",
4
4
  "name": "OpenClaw Projects Plugin",
5
5
  "description": "Memory provider with projects, todos, and contacts integration",
6
6
  "kind": "memory",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@troykelly/openclaw-projects",
3
- "version": "0.0.22",
3
+ "version": "0.0.25",
4
4
  "description": "OpenClaw memory plugin with projects, todos, and contacts integration",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",