@dailydotdev/schema 0.2.49 → 0.2.50
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 +34 -1
- package/dist/bragi/pipelines_connect.d.ts +34 -1
- package/dist/bragi/pipelines_connect.js +1 -1
- package/dist/bragi/pipelines_pb.cjs +1 -1
- package/dist/bragi/pipelines_pb.d.cts +109 -1
- package/dist/bragi/pipelines_pb.d.ts +109 -1
- package/dist/bragi/pipelines_pb.js +1 -1
- package/dist/brokkr/brokkr_connect.cjs +1 -1
- package/dist/brokkr/brokkr_connect.d.cts +10 -1
- package/dist/brokkr/brokkr_connect.d.ts +10 -1
- package/dist/brokkr/brokkr_connect.js +1 -1
- package/dist/daily-api/opportunity_pb.cjs +1 -1
- package/dist/daily-api/opportunity_pb.d.cts +4 -0
- package/dist/daily-api/opportunity_pb.d.ts +4 -0
- package/dist/daily-api/opportunity_pb.js +1 -1
- package/dist/index.d.cts +3 -3
- package/dist/index.d.ts +3 -3
- package/dist/snotra/engagement/engagement_pb.cjs +1 -1
- package/dist/snotra/engagement/engagement_pb.d.cts +26 -1
- package/dist/snotra/engagement/engagement_pb.d.ts +26 -1
- package/dist/snotra/engagement/engagement_pb.js +1 -1
- package/dist/snotra/personalisation/personalisation_pb.cjs +1 -1
- package/dist/snotra/personalisation/personalisation_pb.d.cts +1 -101
- package/dist/snotra/personalisation/personalisation_pb.d.ts +1 -101
- package/dist/snotra/personalisation/personalisation_pb.js +1 -1
- package/package.json +1 -1
|
@@ -1,106 +1,6 @@
|
|
|
1
1
|
import { Message, Timestamp, PartialMessage, proto3, FieldList, BinaryReadOptions, JsonValue, JsonReadOptions, PlainMessage } from '@bufbuild/protobuf';
|
|
2
2
|
import { Error } from '../../util/error_pb.cjs';
|
|
3
3
|
|
|
4
|
-
/**
|
|
5
|
-
* @generated from enum personalisation.RankType
|
|
6
|
-
*/
|
|
7
|
-
declare enum RankType {
|
|
8
|
-
/**
|
|
9
|
-
* @generated from enum value: tag = 0;
|
|
10
|
-
*/
|
|
11
|
-
tag = 0,
|
|
12
|
-
/**
|
|
13
|
-
* @generated from enum value: source = 1;
|
|
14
|
-
*/
|
|
15
|
-
source = 1,
|
|
16
|
-
/**
|
|
17
|
-
* @generated from enum value: content_curation = 2;
|
|
18
|
-
*/
|
|
19
|
-
content_curation = 2,
|
|
20
|
-
/**
|
|
21
|
-
* @generated from enum value: author = 3;
|
|
22
|
-
*/
|
|
23
|
-
author = 3
|
|
24
|
-
}
|
|
25
|
-
/**
|
|
26
|
-
* @generated from message personalisation.UserRank
|
|
27
|
-
*/
|
|
28
|
-
declare class UserRank extends Message<UserRank> {
|
|
29
|
-
/**
|
|
30
|
-
* @generated from field: string user_id = 1;
|
|
31
|
-
*/
|
|
32
|
-
userId: string;
|
|
33
|
-
/**
|
|
34
|
-
* @generated from field: personalisation.RankType type = 2;
|
|
35
|
-
*/
|
|
36
|
-
type: RankType;
|
|
37
|
-
/**
|
|
38
|
-
* @generated from field: string value = 3;
|
|
39
|
-
*/
|
|
40
|
-
value: string;
|
|
41
|
-
/**
|
|
42
|
-
* @generated from field: double rank = 4;
|
|
43
|
-
*/
|
|
44
|
-
rank: number;
|
|
45
|
-
/**
|
|
46
|
-
* @generated from field: google.protobuf.Timestamp d_update = 5;
|
|
47
|
-
*/
|
|
48
|
-
dUpdate?: Timestamp;
|
|
49
|
-
/**
|
|
50
|
-
* @generated from field: int64 post_rank_count = 6;
|
|
51
|
-
*/
|
|
52
|
-
postRankCount: any;
|
|
53
|
-
constructor(data?: PartialMessage<UserRank>);
|
|
54
|
-
static readonly runtime: typeof proto3;
|
|
55
|
-
static readonly typeName = "personalisation.UserRank";
|
|
56
|
-
static readonly fields: FieldList;
|
|
57
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): UserRank;
|
|
58
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): UserRank;
|
|
59
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): UserRank;
|
|
60
|
-
static equals(a: UserRank | PlainMessage<UserRank> | undefined, b: UserRank | PlainMessage<UserRank> | undefined): boolean;
|
|
61
|
-
}
|
|
62
|
-
/**
|
|
63
|
-
* @generated from message personalisation.GetUserRankRequest
|
|
64
|
-
*/
|
|
65
|
-
declare class GetUserRankRequest extends Message<GetUserRankRequest> {
|
|
66
|
-
/**
|
|
67
|
-
* @generated from field: string user_id = 1;
|
|
68
|
-
*/
|
|
69
|
-
userId: string;
|
|
70
|
-
/**
|
|
71
|
-
* @generated from field: int64 post_rank_count = 2;
|
|
72
|
-
*/
|
|
73
|
-
postRankCount: any;
|
|
74
|
-
constructor(data?: PartialMessage<GetUserRankRequest>);
|
|
75
|
-
static readonly runtime: typeof proto3;
|
|
76
|
-
static readonly typeName = "personalisation.GetUserRankRequest";
|
|
77
|
-
static readonly fields: FieldList;
|
|
78
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetUserRankRequest;
|
|
79
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetUserRankRequest;
|
|
80
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetUserRankRequest;
|
|
81
|
-
static equals(a: GetUserRankRequest | PlainMessage<GetUserRankRequest> | undefined, b: GetUserRankRequest | PlainMessage<GetUserRankRequest> | undefined): boolean;
|
|
82
|
-
}
|
|
83
|
-
/**
|
|
84
|
-
* @generated from message personalisation.GetUserRankResponse
|
|
85
|
-
*/
|
|
86
|
-
declare class GetUserRankResponse extends Message<GetUserRankResponse> {
|
|
87
|
-
/**
|
|
88
|
-
* @generated from field: repeated personalisation.UserRank result = 1;
|
|
89
|
-
*/
|
|
90
|
-
result: UserRank[];
|
|
91
|
-
/**
|
|
92
|
-
* @generated from field: repeated util.Error error = 2;
|
|
93
|
-
*/
|
|
94
|
-
error: Error[];
|
|
95
|
-
constructor(data?: PartialMessage<GetUserRankResponse>);
|
|
96
|
-
static readonly runtime: typeof proto3;
|
|
97
|
-
static readonly typeName = "personalisation.GetUserRankResponse";
|
|
98
|
-
static readonly fields: FieldList;
|
|
99
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetUserRankResponse;
|
|
100
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetUserRankResponse;
|
|
101
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetUserRankResponse;
|
|
102
|
-
static equals(a: GetUserRankResponse | PlainMessage<GetUserRankResponse> | undefined, b: GetUserRankResponse | PlainMessage<GetUserRankResponse> | undefined): boolean;
|
|
103
|
-
}
|
|
104
4
|
/**
|
|
105
5
|
* @generated from message personalisation.VectorIndexMeta
|
|
106
6
|
*/
|
|
@@ -223,4 +123,4 @@ declare class CreateVectorIndexMetaResponse extends Message<CreateVectorIndexMet
|
|
|
223
123
|
static equals(a: CreateVectorIndexMetaResponse | PlainMessage<CreateVectorIndexMetaResponse> | undefined, b: CreateVectorIndexMetaResponse | PlainMessage<CreateVectorIndexMetaResponse> | undefined): boolean;
|
|
224
124
|
}
|
|
225
125
|
|
|
226
|
-
export { CreateVectorIndexMetaRequest, CreateVectorIndexMetaResponse,
|
|
126
|
+
export { CreateVectorIndexMetaRequest, CreateVectorIndexMetaResponse, GetVectorIndexMetaRequest, GetVectorIndexMetaResponse, VectorIndexMeta };
|
|
@@ -1,106 +1,6 @@
|
|
|
1
1
|
import { Message, Timestamp, PartialMessage, proto3, FieldList, BinaryReadOptions, JsonValue, JsonReadOptions, PlainMessage } from '@bufbuild/protobuf';
|
|
2
2
|
import { Error } from '../../util/error_pb.js';
|
|
3
3
|
|
|
4
|
-
/**
|
|
5
|
-
* @generated from enum personalisation.RankType
|
|
6
|
-
*/
|
|
7
|
-
declare enum RankType {
|
|
8
|
-
/**
|
|
9
|
-
* @generated from enum value: tag = 0;
|
|
10
|
-
*/
|
|
11
|
-
tag = 0,
|
|
12
|
-
/**
|
|
13
|
-
* @generated from enum value: source = 1;
|
|
14
|
-
*/
|
|
15
|
-
source = 1,
|
|
16
|
-
/**
|
|
17
|
-
* @generated from enum value: content_curation = 2;
|
|
18
|
-
*/
|
|
19
|
-
content_curation = 2,
|
|
20
|
-
/**
|
|
21
|
-
* @generated from enum value: author = 3;
|
|
22
|
-
*/
|
|
23
|
-
author = 3
|
|
24
|
-
}
|
|
25
|
-
/**
|
|
26
|
-
* @generated from message personalisation.UserRank
|
|
27
|
-
*/
|
|
28
|
-
declare class UserRank extends Message<UserRank> {
|
|
29
|
-
/**
|
|
30
|
-
* @generated from field: string user_id = 1;
|
|
31
|
-
*/
|
|
32
|
-
userId: string;
|
|
33
|
-
/**
|
|
34
|
-
* @generated from field: personalisation.RankType type = 2;
|
|
35
|
-
*/
|
|
36
|
-
type: RankType;
|
|
37
|
-
/**
|
|
38
|
-
* @generated from field: string value = 3;
|
|
39
|
-
*/
|
|
40
|
-
value: string;
|
|
41
|
-
/**
|
|
42
|
-
* @generated from field: double rank = 4;
|
|
43
|
-
*/
|
|
44
|
-
rank: number;
|
|
45
|
-
/**
|
|
46
|
-
* @generated from field: google.protobuf.Timestamp d_update = 5;
|
|
47
|
-
*/
|
|
48
|
-
dUpdate?: Timestamp;
|
|
49
|
-
/**
|
|
50
|
-
* @generated from field: int64 post_rank_count = 6;
|
|
51
|
-
*/
|
|
52
|
-
postRankCount: any;
|
|
53
|
-
constructor(data?: PartialMessage<UserRank>);
|
|
54
|
-
static readonly runtime: typeof proto3;
|
|
55
|
-
static readonly typeName = "personalisation.UserRank";
|
|
56
|
-
static readonly fields: FieldList;
|
|
57
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): UserRank;
|
|
58
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): UserRank;
|
|
59
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): UserRank;
|
|
60
|
-
static equals(a: UserRank | PlainMessage<UserRank> | undefined, b: UserRank | PlainMessage<UserRank> | undefined): boolean;
|
|
61
|
-
}
|
|
62
|
-
/**
|
|
63
|
-
* @generated from message personalisation.GetUserRankRequest
|
|
64
|
-
*/
|
|
65
|
-
declare class GetUserRankRequest extends Message<GetUserRankRequest> {
|
|
66
|
-
/**
|
|
67
|
-
* @generated from field: string user_id = 1;
|
|
68
|
-
*/
|
|
69
|
-
userId: string;
|
|
70
|
-
/**
|
|
71
|
-
* @generated from field: int64 post_rank_count = 2;
|
|
72
|
-
*/
|
|
73
|
-
postRankCount: any;
|
|
74
|
-
constructor(data?: PartialMessage<GetUserRankRequest>);
|
|
75
|
-
static readonly runtime: typeof proto3;
|
|
76
|
-
static readonly typeName = "personalisation.GetUserRankRequest";
|
|
77
|
-
static readonly fields: FieldList;
|
|
78
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetUserRankRequest;
|
|
79
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetUserRankRequest;
|
|
80
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetUserRankRequest;
|
|
81
|
-
static equals(a: GetUserRankRequest | PlainMessage<GetUserRankRequest> | undefined, b: GetUserRankRequest | PlainMessage<GetUserRankRequest> | undefined): boolean;
|
|
82
|
-
}
|
|
83
|
-
/**
|
|
84
|
-
* @generated from message personalisation.GetUserRankResponse
|
|
85
|
-
*/
|
|
86
|
-
declare class GetUserRankResponse extends Message<GetUserRankResponse> {
|
|
87
|
-
/**
|
|
88
|
-
* @generated from field: repeated personalisation.UserRank result = 1;
|
|
89
|
-
*/
|
|
90
|
-
result: UserRank[];
|
|
91
|
-
/**
|
|
92
|
-
* @generated from field: repeated util.Error error = 2;
|
|
93
|
-
*/
|
|
94
|
-
error: Error[];
|
|
95
|
-
constructor(data?: PartialMessage<GetUserRankResponse>);
|
|
96
|
-
static readonly runtime: typeof proto3;
|
|
97
|
-
static readonly typeName = "personalisation.GetUserRankResponse";
|
|
98
|
-
static readonly fields: FieldList;
|
|
99
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetUserRankResponse;
|
|
100
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetUserRankResponse;
|
|
101
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetUserRankResponse;
|
|
102
|
-
static equals(a: GetUserRankResponse | PlainMessage<GetUserRankResponse> | undefined, b: GetUserRankResponse | PlainMessage<GetUserRankResponse> | undefined): boolean;
|
|
103
|
-
}
|
|
104
4
|
/**
|
|
105
5
|
* @generated from message personalisation.VectorIndexMeta
|
|
106
6
|
*/
|
|
@@ -223,4 +123,4 @@ declare class CreateVectorIndexMetaResponse extends Message<CreateVectorIndexMet
|
|
|
223
123
|
static equals(a: CreateVectorIndexMetaResponse | PlainMessage<CreateVectorIndexMetaResponse> | undefined, b: CreateVectorIndexMetaResponse | PlainMessage<CreateVectorIndexMetaResponse> | undefined): boolean;
|
|
224
124
|
}
|
|
225
125
|
|
|
226
|
-
export { CreateVectorIndexMetaRequest, CreateVectorIndexMetaResponse,
|
|
126
|
+
export { CreateVectorIndexMetaRequest, CreateVectorIndexMetaResponse, GetVectorIndexMetaRequest, GetVectorIndexMetaResponse, VectorIndexMeta };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{Message as
|
|
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};
|