@pellux/goodvibes-sdk 0.25.5 → 0.25.7
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/_internal/contracts/artifacts/operator-contract.json +184 -4
- package/dist/_internal/contracts/generated/foundation-metadata.d.ts +2 -2
- package/dist/_internal/contracts/generated/foundation-metadata.js +2 -2
- package/dist/_internal/contracts/generated/operator-contract.d.ts.map +1 -1
- package/dist/_internal/contracts/generated/operator-contract.js +184 -4
- package/dist/_internal/contracts/generated/operator-method-ids.d.ts +1 -1
- package/dist/_internal/contracts/generated/operator-method-ids.d.ts.map +1 -1
- package/dist/_internal/contracts/generated/operator-method-ids.js +1 -0
- package/dist/_internal/contracts/zod-schemas/providers.d.ts +132 -0
- package/dist/_internal/contracts/zod-schemas/providers.d.ts.map +1 -1
- package/dist/_internal/contracts/zod-schemas/providers.js +16 -0
- package/dist/_internal/platform/adapters/slack/index.d.ts.map +1 -1
- package/dist/_internal/platform/adapters/slack/index.js +16 -1
- package/dist/_internal/platform/adapters/types.d.ts +2 -0
- package/dist/_internal/platform/adapters/types.d.ts.map +1 -1
- package/dist/_internal/platform/automation/delivery-manager.d.ts +1 -0
- package/dist/_internal/platform/automation/delivery-manager.d.ts.map +1 -1
- package/dist/_internal/platform/automation/delivery-manager.js +1 -0
- package/dist/_internal/platform/channels/builtin/account-actions.js +58 -1
- package/dist/_internal/platform/channels/builtin/accounts.js +1 -1
- package/dist/_internal/platform/channels/builtin/setup-schema.d.ts.map +1 -1
- package/dist/_internal/platform/channels/builtin/setup-schema.js +4 -2
- package/dist/_internal/platform/channels/builtin/surfaces.d.ts +1 -0
- package/dist/_internal/platform/channels/builtin/surfaces.d.ts.map +1 -1
- package/dist/_internal/platform/channels/builtin/surfaces.js +21 -3
- package/dist/_internal/platform/channels/delivery/strategies-core.d.ts +2 -1
- package/dist/_internal/platform/channels/delivery/strategies-core.d.ts.map +1 -1
- package/dist/_internal/platform/channels/delivery/strategies-core.js +6 -1
- package/dist/_internal/platform/channels/delivery/types.d.ts +2 -0
- package/dist/_internal/platform/channels/delivery/types.d.ts.map +1 -1
- package/dist/_internal/platform/channels/delivery-router.d.ts +2 -1
- package/dist/_internal/platform/channels/delivery-router.d.ts.map +1 -1
- package/dist/_internal/platform/channels/delivery-router.js +3 -3
- package/dist/_internal/platform/channels/provider-runtime.d.ts +3 -0
- package/dist/_internal/platform/channels/provider-runtime.d.ts.map +1 -1
- package/dist/_internal/platform/channels/provider-runtime.js +24 -6
- package/dist/_internal/platform/companion/companion-chat-manager.d.ts +2 -1
- package/dist/_internal/platform/companion/companion-chat-manager.d.ts.map +1 -1
- package/dist/_internal/platform/companion/companion-chat-manager.js +21 -0
- package/dist/_internal/platform/companion/companion-chat-routes.d.ts +1 -0
- package/dist/_internal/platform/companion/companion-chat-routes.d.ts.map +1 -1
- package/dist/_internal/platform/companion/companion-chat-routes.js +76 -0
- package/dist/_internal/platform/companion/companion-chat-types.d.ts +9 -0
- package/dist/_internal/platform/companion/companion-chat-types.d.ts.map +1 -1
- package/dist/_internal/platform/companion/index.d.ts +1 -1
- package/dist/_internal/platform/companion/index.d.ts.map +1 -1
- package/dist/_internal/platform/config/secret-refs.d.ts +1 -0
- package/dist/_internal/platform/config/secret-refs.d.ts.map +1 -1
- package/dist/_internal/platform/config/secret-refs.js +15 -0
- package/dist/_internal/platform/config/service-registry.d.ts +7 -2
- package/dist/_internal/platform/config/service-registry.d.ts.map +1 -1
- package/dist/_internal/platform/config/service-registry.js +6 -2
- package/dist/_internal/platform/control-plane/method-catalog-control-core.d.ts.map +1 -1
- package/dist/_internal/platform/control-plane/method-catalog-control-core.js +17 -0
- package/dist/_internal/platform/daemon/facade-composition.d.ts.map +1 -1
- package/dist/_internal/platform/daemon/facade-composition.js +3 -0
- package/dist/_internal/platform/daemon/http/provider-routes.d.ts +3 -0
- package/dist/_internal/platform/daemon/http/provider-routes.d.ts.map +1 -1
- package/dist/_internal/platform/daemon/http/provider-routes.js +79 -20
- package/dist/_internal/platform/daemon/surface-actions.d.ts +2 -0
- package/dist/_internal/platform/daemon/surface-actions.d.ts.map +1 -1
- package/dist/_internal/platform/daemon/surface-actions.js +1 -0
- package/dist/_internal/platform/daemon/surface-delivery.d.ts +5 -0
- package/dist/_internal/platform/daemon/surface-delivery.d.ts.map +1 -1
- package/dist/_internal/platform/daemon/surface-delivery.js +26 -12
- package/dist/_internal/platform/integrations/index.d.ts +1 -1
- package/dist/_internal/platform/integrations/index.d.ts.map +1 -1
- package/dist/_internal/platform/integrations/index.js +1 -1
- package/dist/_internal/platform/integrations/ntfy.d.ts +1 -0
- package/dist/_internal/platform/integrations/ntfy.d.ts.map +1 -1
- package/dist/_internal/platform/integrations/ntfy.js +42 -2
- package/dist/_internal/platform/runtime/bootstrap-helpers.d.ts.map +1 -1
- package/dist/_internal/platform/runtime/bootstrap-helpers.js +1 -0
- package/dist/_internal/platform/runtime/services.d.ts.map +1 -1
- package/dist/_internal/platform/runtime/services.js +2 -0
- package/dist/_internal/platform/version.js +1 -1
- package/package.json +1 -1
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"product": {
|
|
4
4
|
"id": "goodvibes",
|
|
5
5
|
"surface": "operator",
|
|
6
|
-
"version": "0.
|
|
6
|
+
"version": "0.25.7"
|
|
7
7
|
},
|
|
8
8
|
"auth": {
|
|
9
9
|
"modes": [
|
|
@@ -20780,6 +20780,186 @@
|
|
|
20780
20780
|
},
|
|
20781
20781
|
"invokable": true
|
|
20782
20782
|
},
|
|
20783
|
+
{
|
|
20784
|
+
"id": "companion.chat.sessions.update",
|
|
20785
|
+
"title": "Update Companion Chat Session",
|
|
20786
|
+
"description": "Update companion-chat session metadata, including session-local `provider` and `model`, without changing the daemon/TUI current model.",
|
|
20787
|
+
"category": "companion",
|
|
20788
|
+
"source": "builtin",
|
|
20789
|
+
"access": "authenticated",
|
|
20790
|
+
"transport": [
|
|
20791
|
+
"http",
|
|
20792
|
+
"ws"
|
|
20793
|
+
],
|
|
20794
|
+
"scopes": [
|
|
20795
|
+
"write:sessions"
|
|
20796
|
+
],
|
|
20797
|
+
"http": {
|
|
20798
|
+
"method": "PATCH",
|
|
20799
|
+
"path": "/api/companion/chat/sessions/{sessionId}"
|
|
20800
|
+
},
|
|
20801
|
+
"inputSchema": {
|
|
20802
|
+
"type": "object",
|
|
20803
|
+
"properties": {
|
|
20804
|
+
"title": {
|
|
20805
|
+
"type": "string"
|
|
20806
|
+
},
|
|
20807
|
+
"model": {
|
|
20808
|
+
"type": "string"
|
|
20809
|
+
},
|
|
20810
|
+
"provider": {
|
|
20811
|
+
"type": "string"
|
|
20812
|
+
},
|
|
20813
|
+
"systemPrompt": {
|
|
20814
|
+
"type": "string"
|
|
20815
|
+
}
|
|
20816
|
+
},
|
|
20817
|
+
"additionalProperties": true
|
|
20818
|
+
},
|
|
20819
|
+
"outputSchema": {
|
|
20820
|
+
"type": "object",
|
|
20821
|
+
"properties": {
|
|
20822
|
+
"session": {
|
|
20823
|
+
"type": "object",
|
|
20824
|
+
"properties": {
|
|
20825
|
+
"id": {
|
|
20826
|
+
"type": "string"
|
|
20827
|
+
},
|
|
20828
|
+
"title": {
|
|
20829
|
+
"type": "string"
|
|
20830
|
+
},
|
|
20831
|
+
"status": {
|
|
20832
|
+
"type": "string",
|
|
20833
|
+
"enum": [
|
|
20834
|
+
"active",
|
|
20835
|
+
"closed"
|
|
20836
|
+
]
|
|
20837
|
+
},
|
|
20838
|
+
"createdAt": {
|
|
20839
|
+
"type": "number"
|
|
20840
|
+
},
|
|
20841
|
+
"updatedAt": {
|
|
20842
|
+
"type": "number"
|
|
20843
|
+
},
|
|
20844
|
+
"lastMessageAt": {
|
|
20845
|
+
"type": "number"
|
|
20846
|
+
},
|
|
20847
|
+
"closedAt": {
|
|
20848
|
+
"type": "number"
|
|
20849
|
+
},
|
|
20850
|
+
"messageCount": {
|
|
20851
|
+
"type": "number"
|
|
20852
|
+
},
|
|
20853
|
+
"pendingInputCount": {
|
|
20854
|
+
"type": "number"
|
|
20855
|
+
},
|
|
20856
|
+
"routeIds": {
|
|
20857
|
+
"type": "array",
|
|
20858
|
+
"items": {
|
|
20859
|
+
"type": "string"
|
|
20860
|
+
}
|
|
20861
|
+
},
|
|
20862
|
+
"surfaceKinds": {
|
|
20863
|
+
"type": "array",
|
|
20864
|
+
"items": {
|
|
20865
|
+
"type": "string"
|
|
20866
|
+
}
|
|
20867
|
+
},
|
|
20868
|
+
"participants": {
|
|
20869
|
+
"type": "array",
|
|
20870
|
+
"items": {
|
|
20871
|
+
"type": "object",
|
|
20872
|
+
"properties": {
|
|
20873
|
+
"surfaceKind": {
|
|
20874
|
+
"type": "string"
|
|
20875
|
+
},
|
|
20876
|
+
"surfaceId": {
|
|
20877
|
+
"type": "string"
|
|
20878
|
+
},
|
|
20879
|
+
"externalId": {
|
|
20880
|
+
"type": "string"
|
|
20881
|
+
},
|
|
20882
|
+
"userId": {
|
|
20883
|
+
"type": "string"
|
|
20884
|
+
},
|
|
20885
|
+
"displayName": {
|
|
20886
|
+
"type": "string"
|
|
20887
|
+
},
|
|
20888
|
+
"routeId": {
|
|
20889
|
+
"type": "string"
|
|
20890
|
+
},
|
|
20891
|
+
"lastSeenAt": {
|
|
20892
|
+
"type": "number"
|
|
20893
|
+
}
|
|
20894
|
+
},
|
|
20895
|
+
"required": [
|
|
20896
|
+
"surfaceKind",
|
|
20897
|
+
"surfaceId",
|
|
20898
|
+
"lastSeenAt"
|
|
20899
|
+
],
|
|
20900
|
+
"additionalProperties": false
|
|
20901
|
+
}
|
|
20902
|
+
},
|
|
20903
|
+
"activeAgentId": {
|
|
20904
|
+
"type": "string"
|
|
20905
|
+
},
|
|
20906
|
+
"lastAgentId": {
|
|
20907
|
+
"type": "string"
|
|
20908
|
+
},
|
|
20909
|
+
"lastError": {
|
|
20910
|
+
"type": "string"
|
|
20911
|
+
},
|
|
20912
|
+
"metadata": {
|
|
20913
|
+
"type": "object",
|
|
20914
|
+
"additionalProperties": {
|
|
20915
|
+
"anyOf": [
|
|
20916
|
+
{
|
|
20917
|
+
"type": "string"
|
|
20918
|
+
},
|
|
20919
|
+
{
|
|
20920
|
+
"type": "number"
|
|
20921
|
+
},
|
|
20922
|
+
{
|
|
20923
|
+
"type": "boolean"
|
|
20924
|
+
},
|
|
20925
|
+
{
|
|
20926
|
+
"type": "null"
|
|
20927
|
+
},
|
|
20928
|
+
{
|
|
20929
|
+
"type": "object",
|
|
20930
|
+
"additionalProperties": {}
|
|
20931
|
+
},
|
|
20932
|
+
{
|
|
20933
|
+
"type": "array",
|
|
20934
|
+
"items": {}
|
|
20935
|
+
}
|
|
20936
|
+
]
|
|
20937
|
+
}
|
|
20938
|
+
}
|
|
20939
|
+
},
|
|
20940
|
+
"required": [
|
|
20941
|
+
"id",
|
|
20942
|
+
"title",
|
|
20943
|
+
"status",
|
|
20944
|
+
"createdAt",
|
|
20945
|
+
"updatedAt",
|
|
20946
|
+
"messageCount",
|
|
20947
|
+
"pendingInputCount",
|
|
20948
|
+
"routeIds",
|
|
20949
|
+
"surfaceKinds",
|
|
20950
|
+
"participants",
|
|
20951
|
+
"metadata"
|
|
20952
|
+
],
|
|
20953
|
+
"additionalProperties": false
|
|
20954
|
+
}
|
|
20955
|
+
},
|
|
20956
|
+
"required": [
|
|
20957
|
+
"session"
|
|
20958
|
+
],
|
|
20959
|
+
"additionalProperties": false
|
|
20960
|
+
},
|
|
20961
|
+
"invokable": true
|
|
20962
|
+
},
|
|
20783
20963
|
{
|
|
20784
20964
|
"id": "config.get",
|
|
20785
20965
|
"title": "Get Config",
|
|
@@ -54702,10 +54882,10 @@
|
|
|
54702
54882
|
}
|
|
54703
54883
|
],
|
|
54704
54884
|
"schemaCoverage": {
|
|
54705
|
-
"methods":
|
|
54706
|
-
"typedInputs":
|
|
54885
|
+
"methods": 222,
|
|
54886
|
+
"typedInputs": 222,
|
|
54707
54887
|
"genericInputs": 0,
|
|
54708
|
-
"typedOutputs":
|
|
54888
|
+
"typedOutputs": 222,
|
|
54709
54889
|
"genericOutputs": 0
|
|
54710
54890
|
},
|
|
54711
54891
|
"eventCoverage": {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
export declare const FOUNDATION_METADATA: {
|
|
2
2
|
readonly productId: "goodvibes";
|
|
3
|
-
readonly productVersion: "0.
|
|
4
|
-
readonly operatorMethodCount:
|
|
3
|
+
readonly productVersion: "0.25.7";
|
|
4
|
+
readonly operatorMethodCount: 222;
|
|
5
5
|
readonly operatorEventCount: 30;
|
|
6
6
|
readonly peerEndpointCount: 6;
|
|
7
7
|
};
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
// Synced from packages/contracts/src/generated/foundation-metadata.ts
|
|
2
2
|
export const FOUNDATION_METADATA = {
|
|
3
3
|
"productId": "goodvibes",
|
|
4
|
-
"productVersion": "0.
|
|
5
|
-
"operatorMethodCount":
|
|
4
|
+
"productVersion": "0.25.7",
|
|
5
|
+
"operatorMethodCount": 222,
|
|
6
6
|
"operatorEventCount": 30,
|
|
7
7
|
"peerEndpointCount": 6
|
|
8
8
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"operator-contract.d.ts","sourceRoot":"","sources":["../../../../src/_internal/contracts/generated/operator-contract.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,wBAAwB,EAAE,MAAM,aAAa,CAAC;AAE5D,eAAO,MAAM,iBAAiB,EAAE,
|
|
1
|
+
{"version":3,"file":"operator-contract.d.ts","sourceRoot":"","sources":["../../../../src/_internal/contracts/generated/operator-contract.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,wBAAwB,EAAE,MAAM,aAAa,CAAC;AAE5D,eAAO,MAAM,iBAAiB,EAAE,wBAunrDtB,CAAC"}
|
|
@@ -3,7 +3,7 @@ export const OPERATOR_CONTRACT = {
|
|
|
3
3
|
"product": {
|
|
4
4
|
"id": "goodvibes",
|
|
5
5
|
"surface": "operator",
|
|
6
|
-
"version": "0.
|
|
6
|
+
"version": "0.25.7"
|
|
7
7
|
},
|
|
8
8
|
"auth": {
|
|
9
9
|
"modes": [
|
|
@@ -20780,6 +20780,186 @@ export const OPERATOR_CONTRACT = {
|
|
|
20780
20780
|
},
|
|
20781
20781
|
"invokable": true
|
|
20782
20782
|
},
|
|
20783
|
+
{
|
|
20784
|
+
"id": "companion.chat.sessions.update",
|
|
20785
|
+
"title": "Update Companion Chat Session",
|
|
20786
|
+
"description": "Update companion-chat session metadata, including session-local `provider` and `model`, without changing the daemon/TUI current model.",
|
|
20787
|
+
"category": "companion",
|
|
20788
|
+
"source": "builtin",
|
|
20789
|
+
"access": "authenticated",
|
|
20790
|
+
"transport": [
|
|
20791
|
+
"http",
|
|
20792
|
+
"ws"
|
|
20793
|
+
],
|
|
20794
|
+
"scopes": [
|
|
20795
|
+
"write:sessions"
|
|
20796
|
+
],
|
|
20797
|
+
"http": {
|
|
20798
|
+
"method": "PATCH",
|
|
20799
|
+
"path": "/api/companion/chat/sessions/{sessionId}"
|
|
20800
|
+
},
|
|
20801
|
+
"inputSchema": {
|
|
20802
|
+
"type": "object",
|
|
20803
|
+
"properties": {
|
|
20804
|
+
"title": {
|
|
20805
|
+
"type": "string"
|
|
20806
|
+
},
|
|
20807
|
+
"model": {
|
|
20808
|
+
"type": "string"
|
|
20809
|
+
},
|
|
20810
|
+
"provider": {
|
|
20811
|
+
"type": "string"
|
|
20812
|
+
},
|
|
20813
|
+
"systemPrompt": {
|
|
20814
|
+
"type": "string"
|
|
20815
|
+
}
|
|
20816
|
+
},
|
|
20817
|
+
"additionalProperties": true
|
|
20818
|
+
},
|
|
20819
|
+
"outputSchema": {
|
|
20820
|
+
"type": "object",
|
|
20821
|
+
"properties": {
|
|
20822
|
+
"session": {
|
|
20823
|
+
"type": "object",
|
|
20824
|
+
"properties": {
|
|
20825
|
+
"id": {
|
|
20826
|
+
"type": "string"
|
|
20827
|
+
},
|
|
20828
|
+
"title": {
|
|
20829
|
+
"type": "string"
|
|
20830
|
+
},
|
|
20831
|
+
"status": {
|
|
20832
|
+
"type": "string",
|
|
20833
|
+
"enum": [
|
|
20834
|
+
"active",
|
|
20835
|
+
"closed"
|
|
20836
|
+
]
|
|
20837
|
+
},
|
|
20838
|
+
"createdAt": {
|
|
20839
|
+
"type": "number"
|
|
20840
|
+
},
|
|
20841
|
+
"updatedAt": {
|
|
20842
|
+
"type": "number"
|
|
20843
|
+
},
|
|
20844
|
+
"lastMessageAt": {
|
|
20845
|
+
"type": "number"
|
|
20846
|
+
},
|
|
20847
|
+
"closedAt": {
|
|
20848
|
+
"type": "number"
|
|
20849
|
+
},
|
|
20850
|
+
"messageCount": {
|
|
20851
|
+
"type": "number"
|
|
20852
|
+
},
|
|
20853
|
+
"pendingInputCount": {
|
|
20854
|
+
"type": "number"
|
|
20855
|
+
},
|
|
20856
|
+
"routeIds": {
|
|
20857
|
+
"type": "array",
|
|
20858
|
+
"items": {
|
|
20859
|
+
"type": "string"
|
|
20860
|
+
}
|
|
20861
|
+
},
|
|
20862
|
+
"surfaceKinds": {
|
|
20863
|
+
"type": "array",
|
|
20864
|
+
"items": {
|
|
20865
|
+
"type": "string"
|
|
20866
|
+
}
|
|
20867
|
+
},
|
|
20868
|
+
"participants": {
|
|
20869
|
+
"type": "array",
|
|
20870
|
+
"items": {
|
|
20871
|
+
"type": "object",
|
|
20872
|
+
"properties": {
|
|
20873
|
+
"surfaceKind": {
|
|
20874
|
+
"type": "string"
|
|
20875
|
+
},
|
|
20876
|
+
"surfaceId": {
|
|
20877
|
+
"type": "string"
|
|
20878
|
+
},
|
|
20879
|
+
"externalId": {
|
|
20880
|
+
"type": "string"
|
|
20881
|
+
},
|
|
20882
|
+
"userId": {
|
|
20883
|
+
"type": "string"
|
|
20884
|
+
},
|
|
20885
|
+
"displayName": {
|
|
20886
|
+
"type": "string"
|
|
20887
|
+
},
|
|
20888
|
+
"routeId": {
|
|
20889
|
+
"type": "string"
|
|
20890
|
+
},
|
|
20891
|
+
"lastSeenAt": {
|
|
20892
|
+
"type": "number"
|
|
20893
|
+
}
|
|
20894
|
+
},
|
|
20895
|
+
"required": [
|
|
20896
|
+
"surfaceKind",
|
|
20897
|
+
"surfaceId",
|
|
20898
|
+
"lastSeenAt"
|
|
20899
|
+
],
|
|
20900
|
+
"additionalProperties": false
|
|
20901
|
+
}
|
|
20902
|
+
},
|
|
20903
|
+
"activeAgentId": {
|
|
20904
|
+
"type": "string"
|
|
20905
|
+
},
|
|
20906
|
+
"lastAgentId": {
|
|
20907
|
+
"type": "string"
|
|
20908
|
+
},
|
|
20909
|
+
"lastError": {
|
|
20910
|
+
"type": "string"
|
|
20911
|
+
},
|
|
20912
|
+
"metadata": {
|
|
20913
|
+
"type": "object",
|
|
20914
|
+
"additionalProperties": {
|
|
20915
|
+
"anyOf": [
|
|
20916
|
+
{
|
|
20917
|
+
"type": "string"
|
|
20918
|
+
},
|
|
20919
|
+
{
|
|
20920
|
+
"type": "number"
|
|
20921
|
+
},
|
|
20922
|
+
{
|
|
20923
|
+
"type": "boolean"
|
|
20924
|
+
},
|
|
20925
|
+
{
|
|
20926
|
+
"type": "null"
|
|
20927
|
+
},
|
|
20928
|
+
{
|
|
20929
|
+
"type": "object",
|
|
20930
|
+
"additionalProperties": {}
|
|
20931
|
+
},
|
|
20932
|
+
{
|
|
20933
|
+
"type": "array",
|
|
20934
|
+
"items": {}
|
|
20935
|
+
}
|
|
20936
|
+
]
|
|
20937
|
+
}
|
|
20938
|
+
}
|
|
20939
|
+
},
|
|
20940
|
+
"required": [
|
|
20941
|
+
"id",
|
|
20942
|
+
"title",
|
|
20943
|
+
"status",
|
|
20944
|
+
"createdAt",
|
|
20945
|
+
"updatedAt",
|
|
20946
|
+
"messageCount",
|
|
20947
|
+
"pendingInputCount",
|
|
20948
|
+
"routeIds",
|
|
20949
|
+
"surfaceKinds",
|
|
20950
|
+
"participants",
|
|
20951
|
+
"metadata"
|
|
20952
|
+
],
|
|
20953
|
+
"additionalProperties": false
|
|
20954
|
+
}
|
|
20955
|
+
},
|
|
20956
|
+
"required": [
|
|
20957
|
+
"session"
|
|
20958
|
+
],
|
|
20959
|
+
"additionalProperties": false
|
|
20960
|
+
},
|
|
20961
|
+
"invokable": true
|
|
20962
|
+
},
|
|
20783
20963
|
{
|
|
20784
20964
|
"id": "config.get",
|
|
20785
20965
|
"title": "Get Config",
|
|
@@ -54702,10 +54882,10 @@ export const OPERATOR_CONTRACT = {
|
|
|
54702
54882
|
}
|
|
54703
54883
|
],
|
|
54704
54884
|
"schemaCoverage": {
|
|
54705
|
-
"methods":
|
|
54706
|
-
"typedInputs":
|
|
54885
|
+
"methods": 222,
|
|
54886
|
+
"typedInputs": 222,
|
|
54707
54887
|
"genericInputs": 0,
|
|
54708
|
-
"typedOutputs":
|
|
54888
|
+
"typedOutputs": 222,
|
|
54709
54889
|
"genericOutputs": 0
|
|
54710
54890
|
},
|
|
54711
54891
|
"eventCoverage": {
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export declare const OPERATOR_METHOD_IDS: readonly ["accounts.snapshot", "approvals.approve", "approvals.cancel", "approvals.claim", "approvals.deny", "approvals.list", "artifacts.content.get", "artifacts.create", "artifacts.get", "artifacts.list", "automation.heartbeat.list", "automation.heartbeat.run", "automation.integration.snapshot", "automation.jobs.create", "automation.jobs.delete", "automation.jobs.disable", "automation.jobs.enable", "automation.jobs.list", "automation.jobs.patch", "automation.jobs.pause", "automation.jobs.resume", "automation.jobs.run", "automation.runs.cancel", "automation.runs.get", "automation.runs.list", "automation.runs.retry", "channels.accounts.action.default", "channels.accounts.action.named", "channels.accounts.get", "channels.accounts.list", "channels.accounts.surface.list", "channels.actions.invoke", "channels.actions.list", "channels.actions.surface.list", "channels.agent_tools.list", "channels.agent_tools.surface.list", "channels.allowlist.edit", "channels.allowlist.resolve", "channels.authorize", "channels.capabilities.list", "channels.capabilities.surface.list", "channels.directory.query", "channels.doctor.get", "channels.lifecycle.get", "channels.lifecycle.migrate", "channels.policies.audit", "channels.policies.list", "channels.policies.update", "channels.repairs.list", "channels.setup.get", "channels.status", "channels.targets.resolve", "channels.tools.invoke", "channels.tools.list", "channels.tools.surface.list", "companion.chat.events.stream", "companion.chat.messages.create", "companion.chat.messages.list", "companion.chat.sessions.create", "companion.chat.sessions.delete", "companion.chat.sessions.get", "config.get", "config.set", "continuity.snapshot", "control.auth.current", "control.auth.login", "control.clients.list", "control.contract", "control.events.catalog", "control.events.stream", "control.messages.list", "control.methods.get", "control.methods.list", "control.snapshot", "control.status", "control.web", "deliveries.get", "deliveries.list", "health.snapshot", "intelligence.snapshot", "knowledge.candidate.decide", "knowledge.candidate.get", "knowledge.candidates.list", "knowledge.connector.doctor", "knowledge.connector.get", "knowledge.connectors.list", "knowledge.extraction.get", "knowledge.extractions.list", "knowledge.graphql.execute", "knowledge.graphql.schema", "knowledge.ingest.artifact", "knowledge.ingest.bookmarks", "knowledge.ingest.connector", "knowledge.ingest.url", "knowledge.ingest.urls", "knowledge.issues.list", "knowledge.item.get", "knowledge.job-runs.list", "knowledge.job.get", "knowledge.job.run", "knowledge.jobs.list", "knowledge.lint", "knowledge.nodes.list", "knowledge.packet", "knowledge.projection.materialize", "knowledge.projection.render", "knowledge.projections.list", "knowledge.reindex", "knowledge.report.get", "knowledge.reports.list", "knowledge.schedule.delete", "knowledge.schedule.enable", "knowledge.schedule.get", "knowledge.schedule.save", "knowledge.schedules.list", "knowledge.search", "knowledge.source.extraction.get", "knowledge.sources.list", "knowledge.status", "knowledge.usage.list", "local_auth.bootstrap.delete", "local_auth.sessions.delete", "local_auth.status", "local_auth.users.create", "local_auth.users.delete", "local_auth.users.password.rotate", "media.analyze", "media.generate", "media.providers.list", "media.transform", "memory.doctor", "memory.embeddings.default.set", "memory.vector.rebuild", "memory.vector.stats", "multimodal.analyze", "multimodal.packet", "multimodal.providers.list", "multimodal.status", "multimodal.writeback", "panels.list", "panels.open", "providers.get", "providers.list", "providers.usage.get", "remote.node_host.contract", "remote.pair.requests.approve", "remote.pair.requests.list", "remote.pair.requests.reject", "remote.peers.disconnect", "remote.peers.invoke", "remote.peers.list", "remote.peers.token.revoke", "remote.peers.token.rotate", "remote.snapshot", "remote.work.cancel", "remote.work.list", "review.snapshot", "routes.bindings.create", "routes.bindings.delete", "routes.bindings.list", "routes.bindings.patch", "routes.snapshot", "scheduler.capacity", "schedules.create", "schedules.delete", "schedules.disable", "schedules.enable", "schedules.list", "schedules.run", "services.install", "services.restart", "services.start", "services.status", "services.stop", "services.uninstall", "sessions.close", "sessions.create", "sessions.followUp", "sessions.get", "sessions.inputs.cancel", "sessions.inputs.create", "sessions.inputs.list", "sessions.integration.snapshot", "sessions.list", "sessions.messages.create", "sessions.messages.list", "sessions.reopen", "sessions.steer", "settings.snapshot", "surfaces.list", "tasks.cancel", "tasks.create", "tasks.get", "tasks.list", "tasks.retry", "tasks.status", "telemetry.errors.list", "telemetry.events.list", "telemetry.metrics.get", "telemetry.otlp.logs", "telemetry.otlp.metrics", "telemetry.otlp.traces", "telemetry.snapshot", "telemetry.stream", "telemetry.traces.list", "voice.providers.list", "voice.realtime.session", "voice.status", "voice.stt", "voice.tts", "voice.voices.list", "watchers.create", "watchers.delete", "watchers.list", "watchers.patch", "watchers.run", "watchers.start", "watchers.stop", "web_search.providers.list", "web_search.query", "worktrees.snapshot"];
|
|
1
|
+
export declare const OPERATOR_METHOD_IDS: readonly ["accounts.snapshot", "approvals.approve", "approvals.cancel", "approvals.claim", "approvals.deny", "approvals.list", "artifacts.content.get", "artifacts.create", "artifacts.get", "artifacts.list", "automation.heartbeat.list", "automation.heartbeat.run", "automation.integration.snapshot", "automation.jobs.create", "automation.jobs.delete", "automation.jobs.disable", "automation.jobs.enable", "automation.jobs.list", "automation.jobs.patch", "automation.jobs.pause", "automation.jobs.resume", "automation.jobs.run", "automation.runs.cancel", "automation.runs.get", "automation.runs.list", "automation.runs.retry", "channels.accounts.action.default", "channels.accounts.action.named", "channels.accounts.get", "channels.accounts.list", "channels.accounts.surface.list", "channels.actions.invoke", "channels.actions.list", "channels.actions.surface.list", "channels.agent_tools.list", "channels.agent_tools.surface.list", "channels.allowlist.edit", "channels.allowlist.resolve", "channels.authorize", "channels.capabilities.list", "channels.capabilities.surface.list", "channels.directory.query", "channels.doctor.get", "channels.lifecycle.get", "channels.lifecycle.migrate", "channels.policies.audit", "channels.policies.list", "channels.policies.update", "channels.repairs.list", "channels.setup.get", "channels.status", "channels.targets.resolve", "channels.tools.invoke", "channels.tools.list", "channels.tools.surface.list", "companion.chat.events.stream", "companion.chat.messages.create", "companion.chat.messages.list", "companion.chat.sessions.create", "companion.chat.sessions.delete", "companion.chat.sessions.get", "companion.chat.sessions.update", "config.get", "config.set", "continuity.snapshot", "control.auth.current", "control.auth.login", "control.clients.list", "control.contract", "control.events.catalog", "control.events.stream", "control.messages.list", "control.methods.get", "control.methods.list", "control.snapshot", "control.status", "control.web", "deliveries.get", "deliveries.list", "health.snapshot", "intelligence.snapshot", "knowledge.candidate.decide", "knowledge.candidate.get", "knowledge.candidates.list", "knowledge.connector.doctor", "knowledge.connector.get", "knowledge.connectors.list", "knowledge.extraction.get", "knowledge.extractions.list", "knowledge.graphql.execute", "knowledge.graphql.schema", "knowledge.ingest.artifact", "knowledge.ingest.bookmarks", "knowledge.ingest.connector", "knowledge.ingest.url", "knowledge.ingest.urls", "knowledge.issues.list", "knowledge.item.get", "knowledge.job-runs.list", "knowledge.job.get", "knowledge.job.run", "knowledge.jobs.list", "knowledge.lint", "knowledge.nodes.list", "knowledge.packet", "knowledge.projection.materialize", "knowledge.projection.render", "knowledge.projections.list", "knowledge.reindex", "knowledge.report.get", "knowledge.reports.list", "knowledge.schedule.delete", "knowledge.schedule.enable", "knowledge.schedule.get", "knowledge.schedule.save", "knowledge.schedules.list", "knowledge.search", "knowledge.source.extraction.get", "knowledge.sources.list", "knowledge.status", "knowledge.usage.list", "local_auth.bootstrap.delete", "local_auth.sessions.delete", "local_auth.status", "local_auth.users.create", "local_auth.users.delete", "local_auth.users.password.rotate", "media.analyze", "media.generate", "media.providers.list", "media.transform", "memory.doctor", "memory.embeddings.default.set", "memory.vector.rebuild", "memory.vector.stats", "multimodal.analyze", "multimodal.packet", "multimodal.providers.list", "multimodal.status", "multimodal.writeback", "panels.list", "panels.open", "providers.get", "providers.list", "providers.usage.get", "remote.node_host.contract", "remote.pair.requests.approve", "remote.pair.requests.list", "remote.pair.requests.reject", "remote.peers.disconnect", "remote.peers.invoke", "remote.peers.list", "remote.peers.token.revoke", "remote.peers.token.rotate", "remote.snapshot", "remote.work.cancel", "remote.work.list", "review.snapshot", "routes.bindings.create", "routes.bindings.delete", "routes.bindings.list", "routes.bindings.patch", "routes.snapshot", "scheduler.capacity", "schedules.create", "schedules.delete", "schedules.disable", "schedules.enable", "schedules.list", "schedules.run", "services.install", "services.restart", "services.start", "services.status", "services.stop", "services.uninstall", "sessions.close", "sessions.create", "sessions.followUp", "sessions.get", "sessions.inputs.cancel", "sessions.inputs.create", "sessions.inputs.list", "sessions.integration.snapshot", "sessions.list", "sessions.messages.create", "sessions.messages.list", "sessions.reopen", "sessions.steer", "settings.snapshot", "surfaces.list", "tasks.cancel", "tasks.create", "tasks.get", "tasks.list", "tasks.retry", "tasks.status", "telemetry.errors.list", "telemetry.events.list", "telemetry.metrics.get", "telemetry.otlp.logs", "telemetry.otlp.metrics", "telemetry.otlp.traces", "telemetry.snapshot", "telemetry.stream", "telemetry.traces.list", "voice.providers.list", "voice.realtime.session", "voice.status", "voice.stt", "voice.tts", "voice.voices.list", "watchers.create", "watchers.delete", "watchers.list", "watchers.patch", "watchers.run", "watchers.start", "watchers.stop", "web_search.providers.list", "web_search.query", "worktrees.snapshot"];
|
|
2
2
|
export type OperatorMethodId = typeof OPERATOR_METHOD_IDS[number];
|
|
3
3
|
//# sourceMappingURL=operator-method-ids.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"operator-method-ids.d.ts","sourceRoot":"","sources":["../../../../src/_internal/contracts/generated/operator-method-ids.ts"],"names":[],"mappings":"AACA,eAAO,MAAM,mBAAmB,
|
|
1
|
+
{"version":3,"file":"operator-method-ids.d.ts","sourceRoot":"","sources":["../../../../src/_internal/contracts/generated/operator-method-ids.ts"],"names":[],"mappings":"AACA,eAAO,MAAM,mBAAmB,+sKA+NtB,CAAC;AACX,MAAM,MAAM,gBAAgB,GAAG,OAAO,mBAAmB,CAAC,MAAM,CAAC,CAAC"}
|
|
@@ -28,6 +28,33 @@ export declare const ConfiguredViaSchema: z.ZodEnum<{
|
|
|
28
28
|
subscription: "subscription";
|
|
29
29
|
}>;
|
|
30
30
|
export type ConfiguredVia = z.infer<typeof ConfiguredViaSchema>;
|
|
31
|
+
export declare const ProviderAuthRouteDescriptorSchema: z.ZodObject<{
|
|
32
|
+
route: z.ZodEnum<{
|
|
33
|
+
none: "none";
|
|
34
|
+
"api-key": "api-key";
|
|
35
|
+
"secret-ref": "secret-ref";
|
|
36
|
+
"service-oauth": "service-oauth";
|
|
37
|
+
"subscription-oauth": "subscription-oauth";
|
|
38
|
+
anonymous: "anonymous";
|
|
39
|
+
}>;
|
|
40
|
+
label: z.ZodString;
|
|
41
|
+
configured: z.ZodBoolean;
|
|
42
|
+
usable: z.ZodOptional<z.ZodBoolean>;
|
|
43
|
+
freshness: z.ZodOptional<z.ZodEnum<{
|
|
44
|
+
healthy: "healthy";
|
|
45
|
+
pending: "pending";
|
|
46
|
+
unconfigured: "unconfigured";
|
|
47
|
+
expiring: "expiring";
|
|
48
|
+
expired: "expired";
|
|
49
|
+
}>>;
|
|
50
|
+
detail: z.ZodOptional<z.ZodString>;
|
|
51
|
+
envVars: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
52
|
+
secretKeys: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
53
|
+
serviceNames: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
54
|
+
providerId: z.ZodOptional<z.ZodString>;
|
|
55
|
+
repairHints: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
56
|
+
}, z.core.$strip>;
|
|
57
|
+
export type ProviderAuthRouteDescriptor = z.infer<typeof ProviderAuthRouteDescriptorSchema>;
|
|
31
58
|
export declare const ProviderEntrySchema: z.ZodObject<{
|
|
32
59
|
id: z.ZodString;
|
|
33
60
|
label: z.ZodString;
|
|
@@ -39,6 +66,32 @@ export declare const ProviderEntrySchema: z.ZodObject<{
|
|
|
39
66
|
subscription: "subscription";
|
|
40
67
|
}>>;
|
|
41
68
|
envVars: z.ZodArray<z.ZodString>;
|
|
69
|
+
routes: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
70
|
+
route: z.ZodEnum<{
|
|
71
|
+
none: "none";
|
|
72
|
+
"api-key": "api-key";
|
|
73
|
+
"secret-ref": "secret-ref";
|
|
74
|
+
"service-oauth": "service-oauth";
|
|
75
|
+
"subscription-oauth": "subscription-oauth";
|
|
76
|
+
anonymous: "anonymous";
|
|
77
|
+
}>;
|
|
78
|
+
label: z.ZodString;
|
|
79
|
+
configured: z.ZodBoolean;
|
|
80
|
+
usable: z.ZodOptional<z.ZodBoolean>;
|
|
81
|
+
freshness: z.ZodOptional<z.ZodEnum<{
|
|
82
|
+
healthy: "healthy";
|
|
83
|
+
pending: "pending";
|
|
84
|
+
unconfigured: "unconfigured";
|
|
85
|
+
expiring: "expiring";
|
|
86
|
+
expired: "expired";
|
|
87
|
+
}>>;
|
|
88
|
+
detail: z.ZodOptional<z.ZodString>;
|
|
89
|
+
envVars: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
90
|
+
secretKeys: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
91
|
+
serviceNames: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
92
|
+
providerId: z.ZodOptional<z.ZodString>;
|
|
93
|
+
repairHints: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
94
|
+
}, z.core.$strip>>>;
|
|
42
95
|
models: z.ZodArray<z.ZodObject<{
|
|
43
96
|
id: z.ZodString;
|
|
44
97
|
registryKey: z.ZodString;
|
|
@@ -60,6 +113,32 @@ export declare const ListProvidersResponseSchema: z.ZodObject<{
|
|
|
60
113
|
subscription: "subscription";
|
|
61
114
|
}>>;
|
|
62
115
|
envVars: z.ZodArray<z.ZodString>;
|
|
116
|
+
routes: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
117
|
+
route: z.ZodEnum<{
|
|
118
|
+
none: "none";
|
|
119
|
+
"api-key": "api-key";
|
|
120
|
+
"secret-ref": "secret-ref";
|
|
121
|
+
"service-oauth": "service-oauth";
|
|
122
|
+
"subscription-oauth": "subscription-oauth";
|
|
123
|
+
anonymous: "anonymous";
|
|
124
|
+
}>;
|
|
125
|
+
label: z.ZodString;
|
|
126
|
+
configured: z.ZodBoolean;
|
|
127
|
+
usable: z.ZodOptional<z.ZodBoolean>;
|
|
128
|
+
freshness: z.ZodOptional<z.ZodEnum<{
|
|
129
|
+
healthy: "healthy";
|
|
130
|
+
pending: "pending";
|
|
131
|
+
unconfigured: "unconfigured";
|
|
132
|
+
expiring: "expiring";
|
|
133
|
+
expired: "expired";
|
|
134
|
+
}>>;
|
|
135
|
+
detail: z.ZodOptional<z.ZodString>;
|
|
136
|
+
envVars: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
137
|
+
secretKeys: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
138
|
+
serviceNames: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
139
|
+
providerId: z.ZodOptional<z.ZodString>;
|
|
140
|
+
repairHints: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
141
|
+
}, z.core.$strip>>>;
|
|
63
142
|
models: z.ZodArray<z.ZodObject<{
|
|
64
143
|
id: z.ZodString;
|
|
65
144
|
registryKey: z.ZodString;
|
|
@@ -73,6 +152,7 @@ export declare const ListProvidersResponseSchema: z.ZodObject<{
|
|
|
73
152
|
provider: z.ZodString;
|
|
74
153
|
id: z.ZodString;
|
|
75
154
|
}, z.core.$strip>>;
|
|
155
|
+
secretsResolutionSkipped: z.ZodOptional<z.ZodBoolean>;
|
|
76
156
|
}, z.core.$strip>;
|
|
77
157
|
export type ListProvidersResponse = z.infer<typeof ListProvidersResponseSchema>;
|
|
78
158
|
export declare const CurrentModelResponseSchema: z.ZodObject<{
|
|
@@ -88,6 +168,32 @@ export declare const CurrentModelResponseSchema: z.ZodObject<{
|
|
|
88
168
|
anonymous: "anonymous";
|
|
89
169
|
subscription: "subscription";
|
|
90
170
|
}>>;
|
|
171
|
+
routes: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
172
|
+
route: z.ZodEnum<{
|
|
173
|
+
none: "none";
|
|
174
|
+
"api-key": "api-key";
|
|
175
|
+
"secret-ref": "secret-ref";
|
|
176
|
+
"service-oauth": "service-oauth";
|
|
177
|
+
"subscription-oauth": "subscription-oauth";
|
|
178
|
+
anonymous: "anonymous";
|
|
179
|
+
}>;
|
|
180
|
+
label: z.ZodString;
|
|
181
|
+
configured: z.ZodBoolean;
|
|
182
|
+
usable: z.ZodOptional<z.ZodBoolean>;
|
|
183
|
+
freshness: z.ZodOptional<z.ZodEnum<{
|
|
184
|
+
healthy: "healthy";
|
|
185
|
+
pending: "pending";
|
|
186
|
+
unconfigured: "unconfigured";
|
|
187
|
+
expiring: "expiring";
|
|
188
|
+
expired: "expired";
|
|
189
|
+
}>>;
|
|
190
|
+
detail: z.ZodOptional<z.ZodString>;
|
|
191
|
+
envVars: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
192
|
+
secretKeys: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
193
|
+
serviceNames: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
194
|
+
providerId: z.ZodOptional<z.ZodString>;
|
|
195
|
+
repairHints: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
196
|
+
}, z.core.$strip>>>;
|
|
91
197
|
}, z.core.$strip>;
|
|
92
198
|
export type CurrentModelResponse = z.infer<typeof CurrentModelResponseSchema>;
|
|
93
199
|
export declare const PatchCurrentModelBodySchema: z.ZodObject<{
|
|
@@ -118,6 +224,32 @@ export declare const PatchCurrentModelResponseSchema: z.ZodObject<{
|
|
|
118
224
|
anonymous: "anonymous";
|
|
119
225
|
subscription: "subscription";
|
|
120
226
|
}>>;
|
|
227
|
+
routes: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
228
|
+
route: z.ZodEnum<{
|
|
229
|
+
none: "none";
|
|
230
|
+
"api-key": "api-key";
|
|
231
|
+
"secret-ref": "secret-ref";
|
|
232
|
+
"service-oauth": "service-oauth";
|
|
233
|
+
"subscription-oauth": "subscription-oauth";
|
|
234
|
+
anonymous: "anonymous";
|
|
235
|
+
}>;
|
|
236
|
+
label: z.ZodString;
|
|
237
|
+
configured: z.ZodBoolean;
|
|
238
|
+
usable: z.ZodOptional<z.ZodBoolean>;
|
|
239
|
+
freshness: z.ZodOptional<z.ZodEnum<{
|
|
240
|
+
healthy: "healthy";
|
|
241
|
+
pending: "pending";
|
|
242
|
+
unconfigured: "unconfigured";
|
|
243
|
+
expiring: "expiring";
|
|
244
|
+
expired: "expired";
|
|
245
|
+
}>>;
|
|
246
|
+
detail: z.ZodOptional<z.ZodString>;
|
|
247
|
+
envVars: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
248
|
+
secretKeys: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
249
|
+
serviceNames: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
250
|
+
providerId: z.ZodOptional<z.ZodString>;
|
|
251
|
+
repairHints: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
252
|
+
}, z.core.$strip>>>;
|
|
121
253
|
persisted: z.ZodBoolean;
|
|
122
254
|
}, z.core.$strip>;
|
|
123
255
|
export type PatchCurrentModelResponse = z.infer<typeof PatchCurrentModelResponseSchema>;
|