@atproto/ozone 0.2.7 → 0.2.9
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 +15 -0
- package/dist/lexicon/lexicons.d.ts +28 -12
- package/dist/lexicon/lexicons.d.ts.map +1 -1
- package/dist/lexicon/lexicons.js +14 -6
- package/dist/lexicon/lexicons.js.map +1 -1
- package/dist/lexicon/types/app/bsky/ageassurance/defs.d.ts +2 -0
- package/dist/lexicon/types/app/bsky/ageassurance/defs.d.ts.map +1 -1
- package/dist/lexicon/types/app/bsky/ageassurance/defs.js.map +1 -1
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# @atproto/ozone
|
|
2
2
|
|
|
3
|
+
## 0.2.9
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies []:
|
|
8
|
+
- @atproto/xrpc-server@0.11.5
|
|
9
|
+
|
|
10
|
+
## 0.2.8
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- Updated dependencies [[`f2a0efe`](https://github.com/bluesky-social/atproto/commit/f2a0efe11140c8bebe488ac1f737e242d7f23f0b), [`45278fd`](https://github.com/bluesky-social/atproto/commit/45278fd367ee50654ac5d09bd6da1451c8b0cd98), [`f2a0efe`](https://github.com/bluesky-social/atproto/commit/f2a0efe11140c8bebe488ac1f737e242d7f23f0b)]:
|
|
15
|
+
- @atproto/xrpc-server@0.11.4
|
|
16
|
+
- @atproto/api@0.20.23
|
|
17
|
+
|
|
3
18
|
## 0.2.7
|
|
4
19
|
|
|
5
20
|
### Patch Changes
|
|
@@ -1345,6 +1345,14 @@ export declare const schemaDict: {
|
|
|
1345
1345
|
readonly type: 'integer';
|
|
1346
1346
|
readonly description: 'The minimum age (as a whole integer) required to use Bluesky in this region.';
|
|
1347
1347
|
};
|
|
1348
|
+
readonly additionalVerificationMethods: {
|
|
1349
|
+
readonly type: 'array';
|
|
1350
|
+
readonly description: 'Verification methods permitted in this region in addition to the third-party (KWS) flow, which is always supported. `device` permits using the native on-device age APIs (e.g. Apple Declared Age Range, Google Play Age Signals).';
|
|
1351
|
+
readonly items: {
|
|
1352
|
+
readonly type: 'string';
|
|
1353
|
+
readonly knownValues: ["device"];
|
|
1354
|
+
};
|
|
1355
|
+
};
|
|
1348
1356
|
readonly rules: {
|
|
1349
1357
|
readonly type: 'array';
|
|
1350
1358
|
readonly description: 'The ordered list of Age Assurance rules that apply to this region. Rules should be applied in order, and the first matching rule determines the access level granted. The rules array should always include a default rule as the last item.';
|
|
@@ -10287,8 +10295,8 @@ export declare const schemaDict: {
|
|
|
10287
10295
|
readonly name: {
|
|
10288
10296
|
readonly type: 'string';
|
|
10289
10297
|
readonly description: 'The display name of the group conversation.';
|
|
10290
|
-
readonly maxGraphemes:
|
|
10291
|
-
readonly maxLength:
|
|
10298
|
+
readonly maxGraphemes: 50;
|
|
10299
|
+
readonly maxLength: 500;
|
|
10292
10300
|
};
|
|
10293
10301
|
readonly unreadJoinRequestCount: {
|
|
10294
10302
|
readonly type: 'integer';
|
|
@@ -12249,8 +12257,8 @@ export declare const schemaDict: {
|
|
|
12249
12257
|
readonly name: {
|
|
12250
12258
|
readonly type: 'string';
|
|
12251
12259
|
readonly minLength: 1;
|
|
12252
|
-
readonly maxGraphemes:
|
|
12253
|
-
readonly maxLength:
|
|
12260
|
+
readonly maxGraphemes: 50;
|
|
12261
|
+
readonly maxLength: 500;
|
|
12254
12262
|
};
|
|
12255
12263
|
};
|
|
12256
12264
|
};
|
|
@@ -12772,8 +12780,8 @@ export declare const schemaDict: {
|
|
|
12772
12780
|
readonly name: {
|
|
12773
12781
|
readonly type: 'string';
|
|
12774
12782
|
readonly description: 'The display name of the group conversation.';
|
|
12775
|
-
readonly maxGraphemes:
|
|
12776
|
-
readonly maxLength:
|
|
12783
|
+
readonly maxGraphemes: 50;
|
|
12784
|
+
readonly maxLength: 500;
|
|
12777
12785
|
};
|
|
12778
12786
|
};
|
|
12779
12787
|
};
|
|
@@ -25619,6 +25627,14 @@ export declare const schemas: ({
|
|
|
25619
25627
|
readonly type: 'integer';
|
|
25620
25628
|
readonly description: 'The minimum age (as a whole integer) required to use Bluesky in this region.';
|
|
25621
25629
|
};
|
|
25630
|
+
readonly additionalVerificationMethods: {
|
|
25631
|
+
readonly type: 'array';
|
|
25632
|
+
readonly description: 'Verification methods permitted in this region in addition to the third-party (KWS) flow, which is always supported. `device` permits using the native on-device age APIs (e.g. Apple Declared Age Range, Google Play Age Signals).';
|
|
25633
|
+
readonly items: {
|
|
25634
|
+
readonly type: 'string';
|
|
25635
|
+
readonly knownValues: ["device"];
|
|
25636
|
+
};
|
|
25637
|
+
};
|
|
25622
25638
|
readonly rules: {
|
|
25623
25639
|
readonly type: 'array';
|
|
25624
25640
|
readonly description: 'The ordered list of Age Assurance rules that apply to this region. Rules should be applied in order, and the first matching rule determines the access level granted. The rules array should always include a default rule as the last item.';
|
|
@@ -34417,8 +34433,8 @@ export declare const schemas: ({
|
|
|
34417
34433
|
readonly name: {
|
|
34418
34434
|
readonly type: 'string';
|
|
34419
34435
|
readonly description: 'The display name of the group conversation.';
|
|
34420
|
-
readonly maxGraphemes:
|
|
34421
|
-
readonly maxLength:
|
|
34436
|
+
readonly maxGraphemes: 50;
|
|
34437
|
+
readonly maxLength: 500;
|
|
34422
34438
|
};
|
|
34423
34439
|
readonly unreadJoinRequestCount: {
|
|
34424
34440
|
readonly type: 'integer';
|
|
@@ -36351,8 +36367,8 @@ export declare const schemas: ({
|
|
|
36351
36367
|
readonly name: {
|
|
36352
36368
|
readonly type: 'string';
|
|
36353
36369
|
readonly minLength: 1;
|
|
36354
|
-
readonly maxGraphemes:
|
|
36355
|
-
readonly maxLength:
|
|
36370
|
+
readonly maxGraphemes: 50;
|
|
36371
|
+
readonly maxLength: 500;
|
|
36356
36372
|
};
|
|
36357
36373
|
};
|
|
36358
36374
|
};
|
|
@@ -36863,8 +36879,8 @@ export declare const schemas: ({
|
|
|
36863
36879
|
readonly name: {
|
|
36864
36880
|
readonly type: 'string';
|
|
36865
36881
|
readonly description: 'The display name of the group conversation.';
|
|
36866
|
-
readonly maxGraphemes:
|
|
36867
|
-
readonly maxLength:
|
|
36882
|
+
readonly maxGraphemes: 50;
|
|
36883
|
+
readonly maxLength: 500;
|
|
36868
36884
|
};
|
|
36869
36885
|
};
|
|
36870
36886
|
};
|