@dailydotdev/schema 0.3.1 → 0.3.2
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/bragi/pipelines_connect.cjs +1 -1
- package/dist/bragi/pipelines_connect.d.cts +12 -1
- package/dist/bragi/pipelines_connect.d.ts +12 -1
- package/dist/bragi/pipelines_connect.js +1 -1
- package/dist/bragi/pipelines_pb.cjs +1 -1
- package/dist/bragi/pipelines_pb.d.cts +266 -2
- package/dist/bragi/pipelines_pb.d.ts +266 -2
- package/dist/bragi/pipelines_pb.js +1 -1
- package/dist/index.cjs +1 -1
- package/dist/index.d.cts +1 -2
- package/dist/index.d.ts +1 -2
- package/dist/index.js +1 -1
- package/package.json +1 -1
- package/dist/snotra/personalisation/personalisation_pb.cjs +0 -1
- package/dist/snotra/personalisation/personalisation_pb.d.cts +0 -126
- package/dist/snotra/personalisation/personalisation_pb.d.ts +0 -126
- package/dist/snotra/personalisation/personalisation_pb.js +0 -1
|
@@ -1,126 +0,0 @@
|
|
|
1
|
-
import { Message, Timestamp, PartialMessage, proto3, FieldList, BinaryReadOptions, JsonValue, JsonReadOptions, PlainMessage } from '@bufbuild/protobuf';
|
|
2
|
-
import { Error } from '../../util/error_pb.js';
|
|
3
|
-
|
|
4
|
-
/**
|
|
5
|
-
* @generated from message personalisation.VectorIndexMeta
|
|
6
|
-
*/
|
|
7
|
-
declare class VectorIndexMeta extends Message<VectorIndexMeta> {
|
|
8
|
-
/**
|
|
9
|
-
* @generated from field: google.protobuf.Timestamp created = 1;
|
|
10
|
-
*/
|
|
11
|
-
created?: Timestamp;
|
|
12
|
-
/**
|
|
13
|
-
* @generated from field: string index_name = 2;
|
|
14
|
-
*/
|
|
15
|
-
indexName: string;
|
|
16
|
-
/**
|
|
17
|
-
* @generated from field: string field_name = 3;
|
|
18
|
-
*/
|
|
19
|
-
fieldName: string;
|
|
20
|
-
/**
|
|
21
|
-
* @generated from field: string prefix = 4;
|
|
22
|
-
*/
|
|
23
|
-
prefix: string;
|
|
24
|
-
/**
|
|
25
|
-
* @generated from field: repeated string keys = 5;
|
|
26
|
-
*/
|
|
27
|
-
keys: string[];
|
|
28
|
-
constructor(data?: PartialMessage<VectorIndexMeta>);
|
|
29
|
-
static readonly runtime: typeof proto3;
|
|
30
|
-
static readonly typeName = "personalisation.VectorIndexMeta";
|
|
31
|
-
static readonly fields: FieldList;
|
|
32
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): VectorIndexMeta;
|
|
33
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): VectorIndexMeta;
|
|
34
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): VectorIndexMeta;
|
|
35
|
-
static equals(a: VectorIndexMeta | PlainMessage<VectorIndexMeta> | undefined, b: VectorIndexMeta | PlainMessage<VectorIndexMeta> | undefined): boolean;
|
|
36
|
-
}
|
|
37
|
-
/**
|
|
38
|
-
* @generated from message personalisation.GetVectorIndexMetaRequest
|
|
39
|
-
*/
|
|
40
|
-
declare class GetVectorIndexMetaRequest extends Message<GetVectorIndexMetaRequest> {
|
|
41
|
-
/**
|
|
42
|
-
* @generated from field: string index_name = 1;
|
|
43
|
-
*/
|
|
44
|
-
indexName: string;
|
|
45
|
-
constructor(data?: PartialMessage<GetVectorIndexMetaRequest>);
|
|
46
|
-
static readonly runtime: typeof proto3;
|
|
47
|
-
static readonly typeName = "personalisation.GetVectorIndexMetaRequest";
|
|
48
|
-
static readonly fields: FieldList;
|
|
49
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetVectorIndexMetaRequest;
|
|
50
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetVectorIndexMetaRequest;
|
|
51
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetVectorIndexMetaRequest;
|
|
52
|
-
static equals(a: GetVectorIndexMetaRequest | PlainMessage<GetVectorIndexMetaRequest> | undefined, b: GetVectorIndexMetaRequest | PlainMessage<GetVectorIndexMetaRequest> | undefined): boolean;
|
|
53
|
-
}
|
|
54
|
-
/**
|
|
55
|
-
* @generated from message personalisation.GetVectorIndexMetaResponse
|
|
56
|
-
*/
|
|
57
|
-
declare class GetVectorIndexMetaResponse extends Message<GetVectorIndexMetaResponse> {
|
|
58
|
-
/**
|
|
59
|
-
* @generated from field: personalisation.VectorIndexMeta result = 1;
|
|
60
|
-
*/
|
|
61
|
-
result?: VectorIndexMeta;
|
|
62
|
-
/**
|
|
63
|
-
* @generated from field: util.Error error = 2;
|
|
64
|
-
*/
|
|
65
|
-
error?: Error;
|
|
66
|
-
constructor(data?: PartialMessage<GetVectorIndexMetaResponse>);
|
|
67
|
-
static readonly runtime: typeof proto3;
|
|
68
|
-
static readonly typeName = "personalisation.GetVectorIndexMetaResponse";
|
|
69
|
-
static readonly fields: FieldList;
|
|
70
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetVectorIndexMetaResponse;
|
|
71
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetVectorIndexMetaResponse;
|
|
72
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetVectorIndexMetaResponse;
|
|
73
|
-
static equals(a: GetVectorIndexMetaResponse | PlainMessage<GetVectorIndexMetaResponse> | undefined, b: GetVectorIndexMetaResponse | PlainMessage<GetVectorIndexMetaResponse> | undefined): boolean;
|
|
74
|
-
}
|
|
75
|
-
/**
|
|
76
|
-
* @generated from message personalisation.CreateVectorIndexMetaRequest
|
|
77
|
-
*/
|
|
78
|
-
declare class CreateVectorIndexMetaRequest extends Message<CreateVectorIndexMetaRequest> {
|
|
79
|
-
/**
|
|
80
|
-
* @generated from field: string index_name = 1;
|
|
81
|
-
*/
|
|
82
|
-
indexName: string;
|
|
83
|
-
/**
|
|
84
|
-
* @generated from field: string field_name = 2;
|
|
85
|
-
*/
|
|
86
|
-
fieldName: string;
|
|
87
|
-
/**
|
|
88
|
-
* @generated from field: string prefix = 3;
|
|
89
|
-
*/
|
|
90
|
-
prefix: string;
|
|
91
|
-
/**
|
|
92
|
-
* @generated from field: repeated string keys = 4;
|
|
93
|
-
*/
|
|
94
|
-
keys: string[];
|
|
95
|
-
constructor(data?: PartialMessage<CreateVectorIndexMetaRequest>);
|
|
96
|
-
static readonly runtime: typeof proto3;
|
|
97
|
-
static readonly typeName = "personalisation.CreateVectorIndexMetaRequest";
|
|
98
|
-
static readonly fields: FieldList;
|
|
99
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): CreateVectorIndexMetaRequest;
|
|
100
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): CreateVectorIndexMetaRequest;
|
|
101
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): CreateVectorIndexMetaRequest;
|
|
102
|
-
static equals(a: CreateVectorIndexMetaRequest | PlainMessage<CreateVectorIndexMetaRequest> | undefined, b: CreateVectorIndexMetaRequest | PlainMessage<CreateVectorIndexMetaRequest> | undefined): boolean;
|
|
103
|
-
}
|
|
104
|
-
/**
|
|
105
|
-
* @generated from message personalisation.CreateVectorIndexMetaResponse
|
|
106
|
-
*/
|
|
107
|
-
declare class CreateVectorIndexMetaResponse extends Message<CreateVectorIndexMetaResponse> {
|
|
108
|
-
/**
|
|
109
|
-
* @generated from field: repeated personalisation.VectorIndexMeta expired_indexes = 1;
|
|
110
|
-
*/
|
|
111
|
-
expiredIndexes: VectorIndexMeta[];
|
|
112
|
-
/**
|
|
113
|
-
* @generated from field: util.Error error = 2;
|
|
114
|
-
*/
|
|
115
|
-
error?: Error;
|
|
116
|
-
constructor(data?: PartialMessage<CreateVectorIndexMetaResponse>);
|
|
117
|
-
static readonly runtime: typeof proto3;
|
|
118
|
-
static readonly typeName = "personalisation.CreateVectorIndexMetaResponse";
|
|
119
|
-
static readonly fields: FieldList;
|
|
120
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): CreateVectorIndexMetaResponse;
|
|
121
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): CreateVectorIndexMetaResponse;
|
|
122
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): CreateVectorIndexMetaResponse;
|
|
123
|
-
static equals(a: CreateVectorIndexMetaResponse | PlainMessage<CreateVectorIndexMetaResponse> | undefined, b: CreateVectorIndexMetaResponse | PlainMessage<CreateVectorIndexMetaResponse> | undefined): boolean;
|
|
124
|
-
}
|
|
125
|
-
|
|
126
|
-
export { CreateVectorIndexMetaRequest, CreateVectorIndexMetaResponse, GetVectorIndexMetaRequest, GetVectorIndexMetaResponse, VectorIndexMeta };
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
import{Message as e,proto3 as t,Timestamp as n}from"@bufbuild/protobuf";import{Error as r}from"../../util/error_pb.ts";class i extends e{created;indexName="";fieldName="";prefix="";keys=[];constructor(e){super(),t.util.initPartial(e,this)}static runtime=t;static typeName="personalisation.VectorIndexMeta";static fields=t.util.newFieldList((()=>[{no:1,name:"created",kind:"message",T:n},{no:2,name:"index_name",kind:"scalar",T:9},{no:3,name:"field_name",kind:"scalar",T:9},{no:4,name:"prefix",kind:"scalar",T:9},{no:5,name:"keys",kind:"scalar",T:9,repeated:!0}]));static fromBinary(e,t){return(new i).fromBinary(e,t)}static fromJson(e,t){return(new i).fromJson(e,t)}static fromJsonString(e,t){return(new i).fromJsonString(e,t)}static equals(e,n){return t.util.equals(i,e,n)}}class s extends e{indexName="";constructor(e){super(),t.util.initPartial(e,this)}static runtime=t;static typeName="personalisation.GetVectorIndexMetaRequest";static fields=t.util.newFieldList((()=>[{no:1,name:"index_name",kind:"scalar",T:9}]));static fromBinary(e,t){return(new s).fromBinary(e,t)}static fromJson(e,t){return(new s).fromJson(e,t)}static fromJsonString(e,t){return(new s).fromJsonString(e,t)}static equals(e,n){return t.util.equals(s,e,n)}}class a extends e{result;error;constructor(e){super(),t.util.initPartial(e,this)}static runtime=t;static typeName="personalisation.GetVectorIndexMetaResponse";static fields=t.util.newFieldList((()=>[{no:1,name:"result",kind:"message",T:i},{no:2,name:"error",kind:"message",T:r}]));static fromBinary(e,t){return(new a).fromBinary(e,t)}static fromJson(e,t){return(new a).fromJson(e,t)}static fromJsonString(e,t){return(new a).fromJsonString(e,t)}static equals(e,n){return t.util.equals(a,e,n)}}class o extends e{indexName="";fieldName="";prefix="";keys=[];constructor(e){super(),t.util.initPartial(e,this)}static runtime=t;static typeName="personalisation.CreateVectorIndexMetaRequest";static fields=t.util.newFieldList((()=>[{no:1,name:"index_name",kind:"scalar",T:9},{no:2,name:"field_name",kind:"scalar",T:9},{no:3,name:"prefix",kind:"scalar",T:9},{no:4,name:"keys",kind:"scalar",T:9,repeated:!0}]));static fromBinary(e,t){return(new o).fromBinary(e,t)}static fromJson(e,t){return(new o).fromJson(e,t)}static fromJsonString(e,t){return(new o).fromJsonString(e,t)}static equals(e,n){return t.util.equals(o,e,n)}}class m extends e{expiredIndexes=[];error;constructor(e){super(),t.util.initPartial(e,this)}static runtime=t;static typeName="personalisation.CreateVectorIndexMetaResponse";static fields=t.util.newFieldList((()=>[{no:1,name:"expired_indexes",kind:"message",T:i,repeated:!0},{no:2,name:"error",kind:"message",T:r}]));static fromBinary(e,t){return(new m).fromBinary(e,t)}static fromJson(e,t){return(new m).fromJson(e,t)}static fromJsonString(e,t){return(new m).fromJsonString(e,t)}static equals(e,n){return t.util.equals(m,e,n)}}export{o as CreateVectorIndexMetaRequest,m as CreateVectorIndexMetaResponse,s as GetVectorIndexMetaRequest,a as GetVectorIndexMetaResponse,i as VectorIndexMeta};
|