@atproto/bsky 0.0.38 → 0.0.39
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/CHANGELOG.md +7 -0
- package/dist/index.js +32 -4
- package/dist/index.js.map +2 -2
- package/dist/lexicon/lexicons.d.ts +13 -0
- package/dist/lexicon/types/com/atproto/server/describeServer.d.ts +7 -0
- package/package.json +5 -5
- package/src/data-plane/server/routes/labels.ts +4 -2
- package/src/lexicon/lexicons.ts +13 -0
- package/src/lexicon/types/com/atproto/server/describeServer.ts +18 -0
- package/src/views/index.ts +1 -1
- package/tests/__snapshots__/feed-generation.test.ts.snap +0 -45
- package/tests/data-plane/__snapshots__/indexing.test.ts.snap +0 -8
- package/tests/views/__snapshots__/author-feed.test.ts.snap +0 -46
- package/tests/views/__snapshots__/block-lists.test.ts.snap +0 -17
- package/tests/views/__snapshots__/blocks.test.ts.snap +0 -9
- package/tests/views/__snapshots__/labeler-service.test.ts.snap +0 -4
- package/tests/views/__snapshots__/list-feed.test.ts.snap +0 -20
- package/tests/views/__snapshots__/mute-lists.test.ts.snap +0 -18
- package/tests/views/__snapshots__/mutes.test.ts.snap +0 -4
- package/tests/views/__snapshots__/notifications.test.ts.snap +0 -9
- package/tests/views/__snapshots__/posts.test.ts.snap +0 -7
- package/tests/views/__snapshots__/profile.test.ts.snap +0 -6
- package/tests/views/__snapshots__/thread.test.ts.snap +0 -38
- package/tests/views/__snapshots__/timeline.test.ts.snap +0 -145
|
@@ -2206,6 +2206,11 @@ export declare const schemaDict: {
|
|
|
2206
2206
|
description: string;
|
|
2207
2207
|
ref: string;
|
|
2208
2208
|
};
|
|
2209
|
+
contact: {
|
|
2210
|
+
type: string;
|
|
2211
|
+
description: string;
|
|
2212
|
+
ref: string;
|
|
2213
|
+
};
|
|
2209
2214
|
did: {
|
|
2210
2215
|
type: string;
|
|
2211
2216
|
format: string;
|
|
@@ -2225,6 +2230,14 @@ export declare const schemaDict: {
|
|
|
2225
2230
|
};
|
|
2226
2231
|
};
|
|
2227
2232
|
};
|
|
2233
|
+
contact: {
|
|
2234
|
+
type: string;
|
|
2235
|
+
properties: {
|
|
2236
|
+
email: {
|
|
2237
|
+
type: string;
|
|
2238
|
+
};
|
|
2239
|
+
};
|
|
2240
|
+
};
|
|
2228
2241
|
};
|
|
2229
2242
|
};
|
|
2230
2243
|
ComAtprotoServerGetAccountInviteCodes: {
|
|
@@ -9,6 +9,7 @@ export interface OutputSchema {
|
|
|
9
9
|
phoneVerificationRequired?: boolean;
|
|
10
10
|
availableUserDomains: string[];
|
|
11
11
|
links?: Links;
|
|
12
|
+
contact?: Contact;
|
|
12
13
|
did: string;
|
|
13
14
|
[k: string]: unknown;
|
|
14
15
|
}
|
|
@@ -40,3 +41,9 @@ export interface Links {
|
|
|
40
41
|
}
|
|
41
42
|
export declare function isLinks(v: unknown): v is Links;
|
|
42
43
|
export declare function validateLinks(v: unknown): ValidationResult;
|
|
44
|
+
export interface Contact {
|
|
45
|
+
email?: string;
|
|
46
|
+
[k: string]: unknown;
|
|
47
|
+
}
|
|
48
|
+
export declare function isContact(v: unknown): v is Contact;
|
|
49
|
+
export declare function validateContact(v: unknown): ValidationResult;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atproto/bsky",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.39",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "Reference implementation of app.bsky App View (Bluesky API)",
|
|
6
6
|
"keywords": [
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
"structured-headers": "^1.0.1",
|
|
43
43
|
"typed-emitter": "^2.1.0",
|
|
44
44
|
"uint8arrays": "3.0.0",
|
|
45
|
-
"@atproto/api": "^0.11.
|
|
45
|
+
"@atproto/api": "^0.11.1",
|
|
46
46
|
"@atproto/common": "^0.3.4",
|
|
47
47
|
"@atproto/crypto": "^0.3.0",
|
|
48
48
|
"@atproto/identity": "^0.3.3",
|
|
@@ -63,10 +63,10 @@
|
|
|
63
63
|
"@types/qs": "^6.9.7",
|
|
64
64
|
"axios": "^0.27.2",
|
|
65
65
|
"http2-express-bridge": "^1.0.7",
|
|
66
|
-
"@atproto/api": "^0.11.
|
|
67
|
-
"@atproto/dev-env": "^0.2.
|
|
66
|
+
"@atproto/api": "^0.11.1",
|
|
67
|
+
"@atproto/dev-env": "^0.2.39",
|
|
68
68
|
"@atproto/lex-cli": "^0.3.2",
|
|
69
|
-
"@atproto/pds": "^0.4.
|
|
69
|
+
"@atproto/pds": "^0.4.7",
|
|
70
70
|
"@atproto/xrpc": "^0.4.3"
|
|
71
71
|
},
|
|
72
72
|
"scripts": {
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import * as ui8 from 'uint8arrays'
|
|
2
|
+
import { noUndefinedVals } from '@atproto/common'
|
|
2
3
|
import { ServiceImpl } from '@connectrpc/connect'
|
|
3
4
|
import { Service } from '../../../proto/bsky_connect'
|
|
4
5
|
import { Database } from '../db'
|
|
@@ -17,10 +18,11 @@ export default (db: Database): Partial<ServiceImpl<typeof Service>> => ({
|
|
|
17
18
|
.execute()
|
|
18
19
|
|
|
19
20
|
const labels = res.map((l) => {
|
|
20
|
-
const formatted = {
|
|
21
|
+
const formatted = noUndefinedVals({
|
|
21
22
|
...l,
|
|
22
23
|
cid: l.cid === '' ? undefined : l.cid,
|
|
23
|
-
|
|
24
|
+
neg: l.neg === true ? true : undefined,
|
|
25
|
+
})
|
|
24
26
|
return ui8.fromString(JSON.stringify(formatted), 'utf8')
|
|
25
27
|
})
|
|
26
28
|
return { labels }
|
package/src/lexicon/lexicons.ts
CHANGED
|
@@ -2420,6 +2420,11 @@ export const schemaDict = {
|
|
|
2420
2420
|
description: 'URLs of service policy documents.',
|
|
2421
2421
|
ref: 'lex:com.atproto.server.describeServer#links',
|
|
2422
2422
|
},
|
|
2423
|
+
contact: {
|
|
2424
|
+
type: 'ref',
|
|
2425
|
+
description: 'Contact information',
|
|
2426
|
+
ref: 'lex:com.atproto.server.describeServer#contact',
|
|
2427
|
+
},
|
|
2423
2428
|
did: {
|
|
2424
2429
|
type: 'string',
|
|
2425
2430
|
format: 'did',
|
|
@@ -2439,6 +2444,14 @@ export const schemaDict = {
|
|
|
2439
2444
|
},
|
|
2440
2445
|
},
|
|
2441
2446
|
},
|
|
2447
|
+
contact: {
|
|
2448
|
+
type: 'object',
|
|
2449
|
+
properties: {
|
|
2450
|
+
email: {
|
|
2451
|
+
type: 'string',
|
|
2452
|
+
},
|
|
2453
|
+
},
|
|
2454
|
+
},
|
|
2442
2455
|
},
|
|
2443
2456
|
},
|
|
2444
2457
|
ComAtprotoServerGetAccountInviteCodes: {
|
|
@@ -20,6 +20,7 @@ export interface OutputSchema {
|
|
|
20
20
|
/** List of domain suffixes that can be used in account handles. */
|
|
21
21
|
availableUserDomains: string[]
|
|
22
22
|
links?: Links
|
|
23
|
+
contact?: Contact
|
|
23
24
|
did: string
|
|
24
25
|
[k: string]: unknown
|
|
25
26
|
}
|
|
@@ -66,3 +67,20 @@ export function isLinks(v: unknown): v is Links {
|
|
|
66
67
|
export function validateLinks(v: unknown): ValidationResult {
|
|
67
68
|
return lexicons.validate('com.atproto.server.describeServer#links', v)
|
|
68
69
|
}
|
|
70
|
+
|
|
71
|
+
export interface Contact {
|
|
72
|
+
email?: string
|
|
73
|
+
[k: string]: unknown
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
export function isContact(v: unknown): v is Contact {
|
|
77
|
+
return (
|
|
78
|
+
isObj(v) &&
|
|
79
|
+
hasProp(v, '$type') &&
|
|
80
|
+
v.$type === 'com.atproto.server.describeServer#contact'
|
|
81
|
+
)
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
export function validateContact(v: unknown): ValidationResult {
|
|
85
|
+
return lexicons.validate('com.atproto.server.describeServer#contact', v)
|
|
86
|
+
}
|
package/src/views/index.ts
CHANGED
|
@@ -267,7 +267,7 @@ export class Views {
|
|
|
267
267
|
? normalizeDatetimeAlways(record.createdAt)
|
|
268
268
|
: new Date(0).toISOString()
|
|
269
269
|
return record.labels.values.map(({ val }) => {
|
|
270
|
-
return { src, uri, cid, val, cts
|
|
270
|
+
return { src, uri, cid, val, cts }
|
|
271
271
|
})
|
|
272
272
|
}
|
|
273
273
|
|
|
@@ -74,7 +74,6 @@ Object {
|
|
|
74
74
|
Object {
|
|
75
75
|
"cid": "cids(3)",
|
|
76
76
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
77
|
-
"neg": false,
|
|
78
77
|
"src": "user(3)",
|
|
79
78
|
"uri": "record(4)",
|
|
80
79
|
"val": "self-label-a",
|
|
@@ -82,7 +81,6 @@ Object {
|
|
|
82
81
|
Object {
|
|
83
82
|
"cid": "cids(3)",
|
|
84
83
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
85
|
-
"neg": false,
|
|
86
84
|
"src": "user(3)",
|
|
87
85
|
"uri": "record(4)",
|
|
88
86
|
"val": "self-label-b",
|
|
@@ -144,7 +142,6 @@ Array [
|
|
|
144
142
|
Object {
|
|
145
143
|
"cid": "cids(2)",
|
|
146
144
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
147
|
-
"neg": false,
|
|
148
145
|
"src": "user(1)",
|
|
149
146
|
"uri": "record(3)",
|
|
150
147
|
"val": "self-label-a",
|
|
@@ -152,7 +149,6 @@ Array [
|
|
|
152
149
|
Object {
|
|
153
150
|
"cid": "cids(2)",
|
|
154
151
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
155
|
-
"neg": false,
|
|
156
152
|
"src": "user(1)",
|
|
157
153
|
"uri": "record(3)",
|
|
158
154
|
"val": "self-label-b",
|
|
@@ -187,7 +183,6 @@ Array [
|
|
|
187
183
|
Object {
|
|
188
184
|
"cid": "cids(2)",
|
|
189
185
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
190
|
-
"neg": false,
|
|
191
186
|
"src": "user(1)",
|
|
192
187
|
"uri": "record(3)",
|
|
193
188
|
"val": "self-label-a",
|
|
@@ -195,7 +190,6 @@ Array [
|
|
|
195
190
|
Object {
|
|
196
191
|
"cid": "cids(2)",
|
|
197
192
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
198
|
-
"neg": false,
|
|
199
193
|
"src": "user(1)",
|
|
200
194
|
"uri": "record(3)",
|
|
201
195
|
"val": "self-label-b",
|
|
@@ -230,7 +224,6 @@ Array [
|
|
|
230
224
|
Object {
|
|
231
225
|
"cid": "cids(2)",
|
|
232
226
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
233
|
-
"neg": false,
|
|
234
227
|
"src": "user(1)",
|
|
235
228
|
"uri": "record(3)",
|
|
236
229
|
"val": "self-label-a",
|
|
@@ -238,7 +231,6 @@ Array [
|
|
|
238
231
|
Object {
|
|
239
232
|
"cid": "cids(2)",
|
|
240
233
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
241
|
-
"neg": false,
|
|
242
234
|
"src": "user(1)",
|
|
243
235
|
"uri": "record(3)",
|
|
244
236
|
"val": "self-label-b",
|
|
@@ -273,7 +265,6 @@ Array [
|
|
|
273
265
|
Object {
|
|
274
266
|
"cid": "cids(2)",
|
|
275
267
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
276
|
-
"neg": false,
|
|
277
268
|
"src": "user(1)",
|
|
278
269
|
"uri": "record(3)",
|
|
279
270
|
"val": "self-label-a",
|
|
@@ -281,7 +272,6 @@ Array [
|
|
|
281
272
|
Object {
|
|
282
273
|
"cid": "cids(2)",
|
|
283
274
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
284
|
-
"neg": false,
|
|
285
275
|
"src": "user(1)",
|
|
286
276
|
"uri": "record(3)",
|
|
287
277
|
"val": "self-label-b",
|
|
@@ -316,7 +306,6 @@ Array [
|
|
|
316
306
|
Object {
|
|
317
307
|
"cid": "cids(2)",
|
|
318
308
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
319
|
-
"neg": false,
|
|
320
309
|
"src": "user(1)",
|
|
321
310
|
"uri": "record(3)",
|
|
322
311
|
"val": "self-label-a",
|
|
@@ -324,7 +313,6 @@ Array [
|
|
|
324
313
|
Object {
|
|
325
314
|
"cid": "cids(2)",
|
|
326
315
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
327
|
-
"neg": false,
|
|
328
316
|
"src": "user(1)",
|
|
329
317
|
"uri": "record(3)",
|
|
330
318
|
"val": "self-label-b",
|
|
@@ -364,7 +352,6 @@ Array [
|
|
|
364
352
|
Object {
|
|
365
353
|
"cid": "cids(2)",
|
|
366
354
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
367
|
-
"neg": false,
|
|
368
355
|
"src": "user(0)",
|
|
369
356
|
"uri": "record(1)",
|
|
370
357
|
"val": "self-label-a",
|
|
@@ -372,7 +359,6 @@ Array [
|
|
|
372
359
|
Object {
|
|
373
360
|
"cid": "cids(2)",
|
|
374
361
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
375
|
-
"neg": false,
|
|
376
362
|
"src": "user(0)",
|
|
377
363
|
"uri": "record(1)",
|
|
378
364
|
"val": "self-label-b",
|
|
@@ -389,7 +375,6 @@ Array [
|
|
|
389
375
|
Object {
|
|
390
376
|
"cid": "cids(0)",
|
|
391
377
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
392
|
-
"neg": false,
|
|
393
378
|
"src": "user(0)",
|
|
394
379
|
"uri": "record(0)",
|
|
395
380
|
"val": "self-label",
|
|
@@ -614,7 +599,6 @@ Array [
|
|
|
614
599
|
Object {
|
|
615
600
|
"cid": "cids(2)",
|
|
616
601
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
617
|
-
"neg": false,
|
|
618
602
|
"src": "user(0)",
|
|
619
603
|
"uri": "record(1)",
|
|
620
604
|
"val": "self-label-a",
|
|
@@ -622,7 +606,6 @@ Array [
|
|
|
622
606
|
Object {
|
|
623
607
|
"cid": "cids(2)",
|
|
624
608
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
625
|
-
"neg": false,
|
|
626
609
|
"src": "user(0)",
|
|
627
610
|
"uri": "record(1)",
|
|
628
611
|
"val": "self-label-b",
|
|
@@ -658,7 +641,6 @@ Array [
|
|
|
658
641
|
Object {
|
|
659
642
|
"cid": "cids(2)",
|
|
660
643
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
661
|
-
"neg": false,
|
|
662
644
|
"src": "user(0)",
|
|
663
645
|
"uri": "record(1)",
|
|
664
646
|
"val": "self-label-a",
|
|
@@ -666,7 +648,6 @@ Array [
|
|
|
666
648
|
Object {
|
|
667
649
|
"cid": "cids(2)",
|
|
668
650
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
669
|
-
"neg": false,
|
|
670
651
|
"src": "user(0)",
|
|
671
652
|
"uri": "record(1)",
|
|
672
653
|
"val": "self-label-b",
|
|
@@ -885,7 +866,6 @@ Array [
|
|
|
885
866
|
Object {
|
|
886
867
|
"cid": "cids(2)",
|
|
887
868
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
888
|
-
"neg": false,
|
|
889
869
|
"src": "user(0)",
|
|
890
870
|
"uri": "record(1)",
|
|
891
871
|
"val": "self-label-a",
|
|
@@ -893,7 +873,6 @@ Array [
|
|
|
893
873
|
Object {
|
|
894
874
|
"cid": "cids(2)",
|
|
895
875
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
896
|
-
"neg": false,
|
|
897
876
|
"src": "user(0)",
|
|
898
877
|
"uri": "record(1)",
|
|
899
878
|
"val": "self-label-b",
|
|
@@ -906,7 +885,6 @@ Array [
|
|
|
906
885
|
Object {
|
|
907
886
|
"cid": "cids(0)",
|
|
908
887
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
909
|
-
"neg": false,
|
|
910
888
|
"src": "user(0)",
|
|
911
889
|
"uri": "record(0)",
|
|
912
890
|
"val": "self-label",
|
|
@@ -1074,7 +1052,6 @@ Array [
|
|
|
1074
1052
|
Object {
|
|
1075
1053
|
"cid": "cids(2)",
|
|
1076
1054
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
1077
|
-
"neg": false,
|
|
1078
1055
|
"src": "user(0)",
|
|
1079
1056
|
"uri": "record(1)",
|
|
1080
1057
|
"val": "self-label-a",
|
|
@@ -1082,7 +1059,6 @@ Array [
|
|
|
1082
1059
|
Object {
|
|
1083
1060
|
"cid": "cids(2)",
|
|
1084
1061
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
1085
|
-
"neg": false,
|
|
1086
1062
|
"src": "user(0)",
|
|
1087
1063
|
"uri": "record(1)",
|
|
1088
1064
|
"val": "self-label-b",
|
|
@@ -1113,7 +1089,6 @@ Array [
|
|
|
1113
1089
|
Object {
|
|
1114
1090
|
"cid": "cids(2)",
|
|
1115
1091
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
1116
|
-
"neg": false,
|
|
1117
1092
|
"src": "user(0)",
|
|
1118
1093
|
"uri": "record(1)",
|
|
1119
1094
|
"val": "self-label-a",
|
|
@@ -1121,7 +1096,6 @@ Array [
|
|
|
1121
1096
|
Object {
|
|
1122
1097
|
"cid": "cids(2)",
|
|
1123
1098
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
1124
|
-
"neg": false,
|
|
1125
1099
|
"src": "user(0)",
|
|
1126
1100
|
"uri": "record(1)",
|
|
1127
1101
|
"val": "self-label-b",
|
|
@@ -1159,7 +1133,6 @@ Array [
|
|
|
1159
1133
|
Object {
|
|
1160
1134
|
"cid": "cids(2)",
|
|
1161
1135
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
1162
|
-
"neg": false,
|
|
1163
1136
|
"src": "user(0)",
|
|
1164
1137
|
"uri": "record(1)",
|
|
1165
1138
|
"val": "self-label-a",
|
|
@@ -1167,7 +1140,6 @@ Array [
|
|
|
1167
1140
|
Object {
|
|
1168
1141
|
"cid": "cids(2)",
|
|
1169
1142
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
1170
|
-
"neg": false,
|
|
1171
1143
|
"src": "user(0)",
|
|
1172
1144
|
"uri": "record(1)",
|
|
1173
1145
|
"val": "self-label-b",
|
|
@@ -1184,7 +1156,6 @@ Array [
|
|
|
1184
1156
|
Object {
|
|
1185
1157
|
"cid": "cids(0)",
|
|
1186
1158
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
1187
|
-
"neg": false,
|
|
1188
1159
|
"src": "user(0)",
|
|
1189
1160
|
"uri": "record(0)",
|
|
1190
1161
|
"val": "self-label",
|
|
@@ -1375,7 +1346,6 @@ Array [
|
|
|
1375
1346
|
Object {
|
|
1376
1347
|
"cid": "cids(2)",
|
|
1377
1348
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
1378
|
-
"neg": false,
|
|
1379
1349
|
"src": "user(0)",
|
|
1380
1350
|
"uri": "record(1)",
|
|
1381
1351
|
"val": "self-label-a",
|
|
@@ -1383,7 +1353,6 @@ Array [
|
|
|
1383
1353
|
Object {
|
|
1384
1354
|
"cid": "cids(2)",
|
|
1385
1355
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
1386
|
-
"neg": false,
|
|
1387
1356
|
"src": "user(0)",
|
|
1388
1357
|
"uri": "record(1)",
|
|
1389
1358
|
"val": "self-label-b",
|
|
@@ -1419,7 +1388,6 @@ Array [
|
|
|
1419
1388
|
Object {
|
|
1420
1389
|
"cid": "cids(2)",
|
|
1421
1390
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
1422
|
-
"neg": false,
|
|
1423
1391
|
"src": "user(0)",
|
|
1424
1392
|
"uri": "record(1)",
|
|
1425
1393
|
"val": "self-label-a",
|
|
@@ -1427,7 +1395,6 @@ Array [
|
|
|
1427
1395
|
Object {
|
|
1428
1396
|
"cid": "cids(2)",
|
|
1429
1397
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
1430
|
-
"neg": false,
|
|
1431
1398
|
"src": "user(0)",
|
|
1432
1399
|
"uri": "record(1)",
|
|
1433
1400
|
"val": "self-label-b",
|
|
@@ -1474,7 +1441,6 @@ Object {
|
|
|
1474
1441
|
Object {
|
|
1475
1442
|
"cid": "cids(2)",
|
|
1476
1443
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
1477
|
-
"neg": false,
|
|
1478
1444
|
"src": "user(1)",
|
|
1479
1445
|
"uri": "record(3)",
|
|
1480
1446
|
"val": "self-label-a",
|
|
@@ -1482,7 +1448,6 @@ Object {
|
|
|
1482
1448
|
Object {
|
|
1483
1449
|
"cid": "cids(2)",
|
|
1484
1450
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
1485
|
-
"neg": false,
|
|
1486
1451
|
"src": "user(1)",
|
|
1487
1452
|
"uri": "record(3)",
|
|
1488
1453
|
"val": "self-label-b",
|
|
@@ -1525,7 +1490,6 @@ Object {
|
|
|
1525
1490
|
Object {
|
|
1526
1491
|
"cid": "cids(2)",
|
|
1527
1492
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
1528
|
-
"neg": false,
|
|
1529
1493
|
"src": "user(1)",
|
|
1530
1494
|
"uri": "record(3)",
|
|
1531
1495
|
"val": "self-label-a",
|
|
@@ -1533,7 +1497,6 @@ Object {
|
|
|
1533
1497
|
Object {
|
|
1534
1498
|
"cid": "cids(2)",
|
|
1535
1499
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
1536
|
-
"neg": false,
|
|
1537
1500
|
"src": "user(1)",
|
|
1538
1501
|
"uri": "record(3)",
|
|
1539
1502
|
"val": "self-label-b",
|
|
@@ -1568,7 +1531,6 @@ Object {
|
|
|
1568
1531
|
Object {
|
|
1569
1532
|
"cid": "cids(2)",
|
|
1570
1533
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
1571
|
-
"neg": false,
|
|
1572
1534
|
"src": "user(1)",
|
|
1573
1535
|
"uri": "record(3)",
|
|
1574
1536
|
"val": "self-label-a",
|
|
@@ -1576,7 +1538,6 @@ Object {
|
|
|
1576
1538
|
Object {
|
|
1577
1539
|
"cid": "cids(2)",
|
|
1578
1540
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
1579
|
-
"neg": false,
|
|
1580
1541
|
"src": "user(1)",
|
|
1581
1542
|
"uri": "record(3)",
|
|
1582
1543
|
"val": "self-label-b",
|
|
@@ -1621,7 +1582,6 @@ Object {
|
|
|
1621
1582
|
Object {
|
|
1622
1583
|
"cid": "cids(2)",
|
|
1623
1584
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
1624
|
-
"neg": false,
|
|
1625
1585
|
"src": "user(1)",
|
|
1626
1586
|
"uri": "record(3)",
|
|
1627
1587
|
"val": "self-label-a",
|
|
@@ -1629,7 +1589,6 @@ Object {
|
|
|
1629
1589
|
Object {
|
|
1630
1590
|
"cid": "cids(2)",
|
|
1631
1591
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
1632
|
-
"neg": false,
|
|
1633
1592
|
"src": "user(1)",
|
|
1634
1593
|
"uri": "record(3)",
|
|
1635
1594
|
"val": "self-label-b",
|
|
@@ -1666,7 +1625,6 @@ Object {
|
|
|
1666
1625
|
Object {
|
|
1667
1626
|
"cid": "cids(2)",
|
|
1668
1627
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
1669
|
-
"neg": false,
|
|
1670
1628
|
"src": "user(1)",
|
|
1671
1629
|
"uri": "record(3)",
|
|
1672
1630
|
"val": "self-label-a",
|
|
@@ -1674,7 +1632,6 @@ Object {
|
|
|
1674
1632
|
Object {
|
|
1675
1633
|
"cid": "cids(2)",
|
|
1676
1634
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
1677
|
-
"neg": false,
|
|
1678
1635
|
"src": "user(1)",
|
|
1679
1636
|
"uri": "record(3)",
|
|
1680
1637
|
"val": "self-label-b",
|
|
@@ -1709,7 +1666,6 @@ Object {
|
|
|
1709
1666
|
Object {
|
|
1710
1667
|
"cid": "cids(2)",
|
|
1711
1668
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
1712
|
-
"neg": false,
|
|
1713
1669
|
"src": "user(1)",
|
|
1714
1670
|
"uri": "record(3)",
|
|
1715
1671
|
"val": "self-label-a",
|
|
@@ -1717,7 +1673,6 @@ Object {
|
|
|
1717
1673
|
Object {
|
|
1718
1674
|
"cid": "cids(2)",
|
|
1719
1675
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
1720
|
-
"neg": false,
|
|
1721
1676
|
"src": "user(1)",
|
|
1722
1677
|
"uri": "record(3)",
|
|
1723
1678
|
"val": "self-label-b",
|
|
@@ -117,7 +117,6 @@ Array [
|
|
|
117
117
|
Object {
|
|
118
118
|
"cid": "cids(3)",
|
|
119
119
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
120
|
-
"neg": false,
|
|
121
120
|
"src": "did:example:labeler",
|
|
122
121
|
"uri": "record(3)",
|
|
123
122
|
"val": "test-label",
|
|
@@ -125,7 +124,6 @@ Array [
|
|
|
125
124
|
Object {
|
|
126
125
|
"cid": "cids(3)",
|
|
127
126
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
128
|
-
"neg": false,
|
|
129
127
|
"src": "did:example:labeler",
|
|
130
128
|
"uri": "record(3)",
|
|
131
129
|
"val": "test-label-2",
|
|
@@ -321,7 +319,6 @@ Array [
|
|
|
321
319
|
Object {
|
|
322
320
|
"cid": "cids(6)",
|
|
323
321
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
324
|
-
"neg": false,
|
|
325
322
|
"src": "did:example:labeler",
|
|
326
323
|
"uri": "record(6)",
|
|
327
324
|
"val": "test-label",
|
|
@@ -389,7 +386,6 @@ Array [
|
|
|
389
386
|
Object {
|
|
390
387
|
"cid": "cids(11)",
|
|
391
388
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
392
|
-
"neg": false,
|
|
393
389
|
"src": "user(0)",
|
|
394
390
|
"uri": "record(12)",
|
|
395
391
|
"val": "self-label",
|
|
@@ -475,7 +471,6 @@ Object {
|
|
|
475
471
|
Object {
|
|
476
472
|
"cid": "cids(2)",
|
|
477
473
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
478
|
-
"neg": false,
|
|
479
474
|
"src": "user(0)",
|
|
480
475
|
"uri": "record(1)",
|
|
481
476
|
"val": "self-label-a",
|
|
@@ -483,7 +478,6 @@ Object {
|
|
|
483
478
|
Object {
|
|
484
479
|
"cid": "cids(2)",
|
|
485
480
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
486
|
-
"neg": false,
|
|
487
481
|
"src": "user(0)",
|
|
488
482
|
"uri": "record(1)",
|
|
489
483
|
"val": "self-label-b",
|
|
@@ -541,7 +535,6 @@ Object {
|
|
|
541
535
|
Object {
|
|
542
536
|
"cid": "cids(2)",
|
|
543
537
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
544
|
-
"neg": false,
|
|
545
538
|
"src": "user(0)",
|
|
546
539
|
"uri": "record(1)",
|
|
547
540
|
"val": "self-label-a",
|
|
@@ -549,7 +542,6 @@ Object {
|
|
|
549
542
|
Object {
|
|
550
543
|
"cid": "cids(2)",
|
|
551
544
|
"cts": "1970-01-01T00:00:00.000Z",
|
|
552
|
-
"neg": false,
|
|
553
545
|
"src": "user(0)",
|
|
554
546
|
"uri": "record(1)",
|
|
555
547
|
"val": "self-label-b",
|