@pellux/goodvibes-contracts 0.33.9 → 0.33.10

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.
@@ -3,7 +3,7 @@
3
3
  "product": {
4
4
  "id": "goodvibes",
5
5
  "surface": "operator",
6
- "version": "0.33.9"
6
+ "version": "0.33.10"
7
7
  },
8
8
  "auth": {
9
9
  "modes": [
@@ -20157,7 +20157,7 @@
20157
20157
  {
20158
20158
  "id": "companion.chat.messages.create",
20159
20159
  "title": "Send Companion Chat Message",
20160
- "description": "Post a user message to a companion-chat session. Accepts either `body` or `content` in the payload; `body` wins when both are provided.",
20160
+ "description": "Post a user message to a companion-chat session. Accepts either `body` or `content` in the payload; `body` wins when both are provided. Attachments reference artifacts created through `artifacts.create`.",
20161
20161
  "category": "companion",
20162
20162
  "source": "builtin",
20163
20163
  "access": "authenticated",
@@ -20181,6 +20181,29 @@
20181
20181
  "content": {
20182
20182
  "type": "string"
20183
20183
  },
20184
+ "attachments": {
20185
+ "type": "array",
20186
+ "items": {
20187
+ "type": "object",
20188
+ "properties": {
20189
+ "artifactId": {
20190
+ "type": "string"
20191
+ },
20192
+ "label": {
20193
+ "type": "string"
20194
+ },
20195
+ "metadata": {
20196
+ "type": "object",
20197
+ "properties": {},
20198
+ "additionalProperties": false
20199
+ }
20200
+ },
20201
+ "required": [
20202
+ "artifactId"
20203
+ ],
20204
+ "additionalProperties": false
20205
+ }
20206
+ },
20184
20207
  "metadata": {
20185
20208
  "type": "object",
20186
20209
  "properties": {},
@@ -20260,6 +20283,91 @@
20260
20283
  "content": {
20261
20284
  "type": "string"
20262
20285
  },
20286
+ "attachments": {
20287
+ "type": "array",
20288
+ "items": {
20289
+ "type": "object",
20290
+ "properties": {
20291
+ "id": {
20292
+ "type": "string"
20293
+ },
20294
+ "artifactId": {
20295
+ "type": "string"
20296
+ },
20297
+ "kind": {
20298
+ "type": "string"
20299
+ },
20300
+ "mimeType": {
20301
+ "type": "string"
20302
+ },
20303
+ "filename": {
20304
+ "type": "string"
20305
+ },
20306
+ "sizeBytes": {
20307
+ "type": "number"
20308
+ },
20309
+ "sha256": {
20310
+ "type": "string"
20311
+ },
20312
+ "createdAt": {
20313
+ "type": "number"
20314
+ },
20315
+ "expiresAt": {
20316
+ "type": "number"
20317
+ },
20318
+ "sourceUri": {
20319
+ "type": "string"
20320
+ },
20321
+ "acquisitionMode": {
20322
+ "type": "string"
20323
+ },
20324
+ "fetchMode": {
20325
+ "type": "string"
20326
+ },
20327
+ "label": {
20328
+ "type": "string"
20329
+ },
20330
+ "metadata": {
20331
+ "type": "object",
20332
+ "additionalProperties": {
20333
+ "anyOf": [
20334
+ {
20335
+ "type": "string"
20336
+ },
20337
+ {
20338
+ "type": "number"
20339
+ },
20340
+ {
20341
+ "type": "boolean"
20342
+ },
20343
+ {
20344
+ "type": "null"
20345
+ },
20346
+ {
20347
+ "type": "object",
20348
+ "additionalProperties": {}
20349
+ },
20350
+ {
20351
+ "type": "array",
20352
+ "items": {}
20353
+ }
20354
+ ]
20355
+ }
20356
+ }
20357
+ },
20358
+ "required": [
20359
+ "id",
20360
+ "artifactId",
20361
+ "kind",
20362
+ "mimeType",
20363
+ "sizeBytes",
20364
+ "sha256",
20365
+ "createdAt",
20366
+ "metadata"
20367
+ ],
20368
+ "additionalProperties": true
20369
+ }
20370
+ },
20263
20371
  "createdAt": {
20264
20372
  "type": "number"
20265
20373
  }
@@ -20269,6 +20377,7 @@
20269
20377
  "sessionId",
20270
20378
  "role",
20271
20379
  "content",
20380
+ "attachments",
20272
20381
  "createdAt"
20273
20382
  ],
20274
20383
  "additionalProperties": false
@@ -20614,6 +20723,91 @@
20614
20723
  "content": {
20615
20724
  "type": "string"
20616
20725
  },
20726
+ "attachments": {
20727
+ "type": "array",
20728
+ "items": {
20729
+ "type": "object",
20730
+ "properties": {
20731
+ "id": {
20732
+ "type": "string"
20733
+ },
20734
+ "artifactId": {
20735
+ "type": "string"
20736
+ },
20737
+ "kind": {
20738
+ "type": "string"
20739
+ },
20740
+ "mimeType": {
20741
+ "type": "string"
20742
+ },
20743
+ "filename": {
20744
+ "type": "string"
20745
+ },
20746
+ "sizeBytes": {
20747
+ "type": "number"
20748
+ },
20749
+ "sha256": {
20750
+ "type": "string"
20751
+ },
20752
+ "createdAt": {
20753
+ "type": "number"
20754
+ },
20755
+ "expiresAt": {
20756
+ "type": "number"
20757
+ },
20758
+ "sourceUri": {
20759
+ "type": "string"
20760
+ },
20761
+ "acquisitionMode": {
20762
+ "type": "string"
20763
+ },
20764
+ "fetchMode": {
20765
+ "type": "string"
20766
+ },
20767
+ "label": {
20768
+ "type": "string"
20769
+ },
20770
+ "metadata": {
20771
+ "type": "object",
20772
+ "additionalProperties": {
20773
+ "anyOf": [
20774
+ {
20775
+ "type": "string"
20776
+ },
20777
+ {
20778
+ "type": "number"
20779
+ },
20780
+ {
20781
+ "type": "boolean"
20782
+ },
20783
+ {
20784
+ "type": "null"
20785
+ },
20786
+ {
20787
+ "type": "object",
20788
+ "additionalProperties": {}
20789
+ },
20790
+ {
20791
+ "type": "array",
20792
+ "items": {}
20793
+ }
20794
+ ]
20795
+ }
20796
+ }
20797
+ },
20798
+ "required": [
20799
+ "id",
20800
+ "artifactId",
20801
+ "kind",
20802
+ "mimeType",
20803
+ "sizeBytes",
20804
+ "sha256",
20805
+ "createdAt",
20806
+ "metadata"
20807
+ ],
20808
+ "additionalProperties": true
20809
+ }
20810
+ },
20617
20811
  "createdAt": {
20618
20812
  "type": "number"
20619
20813
  }
@@ -20623,6 +20817,7 @@
20623
20817
  "sessionId",
20624
20818
  "role",
20625
20819
  "content",
20820
+ "attachments",
20626
20821
  "createdAt"
20627
20822
  ],
20628
20823
  "additionalProperties": false
@@ -1,6 +1,6 @@
1
1
  export declare const FOUNDATION_METADATA: {
2
2
  readonly productId: "goodvibes";
3
- readonly productVersion: "0.33.9";
3
+ readonly productVersion: "0.33.10";
4
4
  readonly operatorMethodCount: 264;
5
5
  readonly operatorEventCount: 30;
6
6
  readonly peerEndpointCount: 6;
@@ -1,6 +1,6 @@
1
1
  export const FOUNDATION_METADATA = {
2
2
  "productId": "goodvibes",
3
- "productVersion": "0.33.9",
3
+ "productVersion": "0.33.10",
4
4
  "operatorMethodCount": 264,
5
5
  "operatorEventCount": 30,
6
6
  "peerEndpointCount": 6
@@ -1 +1 @@
1
- {"version":3,"file":"operator-contract.d.ts","sourceRoot":"","sources":["../../src/generated/operator-contract.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,wBAAwB,EAAE,MAAM,aAAa,CAAC;AAE5D,eAAO,MAAM,iBAAiB,EAAE,wBAm5mEtB,CAAC"}
1
+ {"version":3,"file":"operator-contract.d.ts","sourceRoot":"","sources":["../../src/generated/operator-contract.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,wBAAwB,EAAE,MAAM,aAAa,CAAC;AAE5D,eAAO,MAAM,iBAAiB,EAAE,wBAslnEtB,CAAC"}
@@ -3,7 +3,7 @@ export const OPERATOR_CONTRACT = {
3
3
  "product": {
4
4
  "id": "goodvibes",
5
5
  "surface": "operator",
6
- "version": "0.33.9"
6
+ "version": "0.33.10"
7
7
  },
8
8
  "auth": {
9
9
  "modes": [
@@ -20157,7 +20157,7 @@ export const OPERATOR_CONTRACT = {
20157
20157
  {
20158
20158
  "id": "companion.chat.messages.create",
20159
20159
  "title": "Send Companion Chat Message",
20160
- "description": "Post a user message to a companion-chat session. Accepts either `body` or `content` in the payload; `body` wins when both are provided.",
20160
+ "description": "Post a user message to a companion-chat session. Accepts either `body` or `content` in the payload; `body` wins when both are provided. Attachments reference artifacts created through `artifacts.create`.",
20161
20161
  "category": "companion",
20162
20162
  "source": "builtin",
20163
20163
  "access": "authenticated",
@@ -20181,6 +20181,29 @@ export const OPERATOR_CONTRACT = {
20181
20181
  "content": {
20182
20182
  "type": "string"
20183
20183
  },
20184
+ "attachments": {
20185
+ "type": "array",
20186
+ "items": {
20187
+ "type": "object",
20188
+ "properties": {
20189
+ "artifactId": {
20190
+ "type": "string"
20191
+ },
20192
+ "label": {
20193
+ "type": "string"
20194
+ },
20195
+ "metadata": {
20196
+ "type": "object",
20197
+ "properties": {},
20198
+ "additionalProperties": false
20199
+ }
20200
+ },
20201
+ "required": [
20202
+ "artifactId"
20203
+ ],
20204
+ "additionalProperties": false
20205
+ }
20206
+ },
20184
20207
  "metadata": {
20185
20208
  "type": "object",
20186
20209
  "properties": {},
@@ -20260,6 +20283,91 @@ export const OPERATOR_CONTRACT = {
20260
20283
  "content": {
20261
20284
  "type": "string"
20262
20285
  },
20286
+ "attachments": {
20287
+ "type": "array",
20288
+ "items": {
20289
+ "type": "object",
20290
+ "properties": {
20291
+ "id": {
20292
+ "type": "string"
20293
+ },
20294
+ "artifactId": {
20295
+ "type": "string"
20296
+ },
20297
+ "kind": {
20298
+ "type": "string"
20299
+ },
20300
+ "mimeType": {
20301
+ "type": "string"
20302
+ },
20303
+ "filename": {
20304
+ "type": "string"
20305
+ },
20306
+ "sizeBytes": {
20307
+ "type": "number"
20308
+ },
20309
+ "sha256": {
20310
+ "type": "string"
20311
+ },
20312
+ "createdAt": {
20313
+ "type": "number"
20314
+ },
20315
+ "expiresAt": {
20316
+ "type": "number"
20317
+ },
20318
+ "sourceUri": {
20319
+ "type": "string"
20320
+ },
20321
+ "acquisitionMode": {
20322
+ "type": "string"
20323
+ },
20324
+ "fetchMode": {
20325
+ "type": "string"
20326
+ },
20327
+ "label": {
20328
+ "type": "string"
20329
+ },
20330
+ "metadata": {
20331
+ "type": "object",
20332
+ "additionalProperties": {
20333
+ "anyOf": [
20334
+ {
20335
+ "type": "string"
20336
+ },
20337
+ {
20338
+ "type": "number"
20339
+ },
20340
+ {
20341
+ "type": "boolean"
20342
+ },
20343
+ {
20344
+ "type": "null"
20345
+ },
20346
+ {
20347
+ "type": "object",
20348
+ "additionalProperties": {}
20349
+ },
20350
+ {
20351
+ "type": "array",
20352
+ "items": {}
20353
+ }
20354
+ ]
20355
+ }
20356
+ }
20357
+ },
20358
+ "required": [
20359
+ "id",
20360
+ "artifactId",
20361
+ "kind",
20362
+ "mimeType",
20363
+ "sizeBytes",
20364
+ "sha256",
20365
+ "createdAt",
20366
+ "metadata"
20367
+ ],
20368
+ "additionalProperties": true
20369
+ }
20370
+ },
20263
20371
  "createdAt": {
20264
20372
  "type": "number"
20265
20373
  }
@@ -20269,6 +20377,7 @@ export const OPERATOR_CONTRACT = {
20269
20377
  "sessionId",
20270
20378
  "role",
20271
20379
  "content",
20380
+ "attachments",
20272
20381
  "createdAt"
20273
20382
  ],
20274
20383
  "additionalProperties": false
@@ -20614,6 +20723,91 @@ export const OPERATOR_CONTRACT = {
20614
20723
  "content": {
20615
20724
  "type": "string"
20616
20725
  },
20726
+ "attachments": {
20727
+ "type": "array",
20728
+ "items": {
20729
+ "type": "object",
20730
+ "properties": {
20731
+ "id": {
20732
+ "type": "string"
20733
+ },
20734
+ "artifactId": {
20735
+ "type": "string"
20736
+ },
20737
+ "kind": {
20738
+ "type": "string"
20739
+ },
20740
+ "mimeType": {
20741
+ "type": "string"
20742
+ },
20743
+ "filename": {
20744
+ "type": "string"
20745
+ },
20746
+ "sizeBytes": {
20747
+ "type": "number"
20748
+ },
20749
+ "sha256": {
20750
+ "type": "string"
20751
+ },
20752
+ "createdAt": {
20753
+ "type": "number"
20754
+ },
20755
+ "expiresAt": {
20756
+ "type": "number"
20757
+ },
20758
+ "sourceUri": {
20759
+ "type": "string"
20760
+ },
20761
+ "acquisitionMode": {
20762
+ "type": "string"
20763
+ },
20764
+ "fetchMode": {
20765
+ "type": "string"
20766
+ },
20767
+ "label": {
20768
+ "type": "string"
20769
+ },
20770
+ "metadata": {
20771
+ "type": "object",
20772
+ "additionalProperties": {
20773
+ "anyOf": [
20774
+ {
20775
+ "type": "string"
20776
+ },
20777
+ {
20778
+ "type": "number"
20779
+ },
20780
+ {
20781
+ "type": "boolean"
20782
+ },
20783
+ {
20784
+ "type": "null"
20785
+ },
20786
+ {
20787
+ "type": "object",
20788
+ "additionalProperties": {}
20789
+ },
20790
+ {
20791
+ "type": "array",
20792
+ "items": {}
20793
+ }
20794
+ ]
20795
+ }
20796
+ }
20797
+ },
20798
+ "required": [
20799
+ "id",
20800
+ "artifactId",
20801
+ "kind",
20802
+ "mimeType",
20803
+ "sizeBytes",
20804
+ "sha256",
20805
+ "createdAt",
20806
+ "metadata"
20807
+ ],
20808
+ "additionalProperties": true
20809
+ }
20810
+ },
20617
20811
  "createdAt": {
20618
20812
  "type": "number"
20619
20813
  }
@@ -20623,6 +20817,7 @@ export const OPERATOR_CONTRACT = {
20623
20817
  "sessionId",
20624
20818
  "role",
20625
20819
  "content",
20820
+ "attachments",
20626
20821
  "createdAt"
20627
20822
  ],
20628
20823
  "additionalProperties": false
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pellux/goodvibes-contracts",
3
- "version": "0.33.9",
3
+ "version": "0.33.10",
4
4
  "engines": {
5
5
  "bun": "1.3.10",
6
6
  "node": ">=22.0.0"