@atproto/bsky 0.0.171 → 0.0.172
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 +11 -0
- package/dist/api/app/bsky/notification/registerPush.d.ts.map +1 -1
- package/dist/api/app/bsky/notification/registerPush.js +6 -7
- package/dist/api/app/bsky/notification/registerPush.js.map +1 -1
- package/dist/api/app/bsky/notification/unregisterPush.d.ts +4 -0
- package/dist/api/app/bsky/notification/unregisterPush.d.ts.map +1 -0
- package/dist/api/app/bsky/notification/unregisterPush.js +33 -0
- package/dist/api/app/bsky/notification/unregisterPush.js.map +1 -0
- package/dist/api/app/bsky/notification/util.d.ts +4 -0
- package/dist/api/app/bsky/notification/util.d.ts.map +1 -1
- package/dist/api/app/bsky/notification/util.js +14 -1
- package/dist/api/app/bsky/notification/util.js.map +1 -1
- package/dist/api/app/bsky/unspecced/initAgeAssurance.js +1 -1
- package/dist/api/app/bsky/unspecced/initAgeAssurance.js.map +1 -1
- package/dist/config.js +1 -1
- package/dist/config.js.map +1 -1
- package/dist/lexicon/index.d.ts +2 -0
- package/dist/lexicon/index.d.ts.map +1 -1
- package/dist/lexicon/index.js +4 -0
- package/dist/lexicon/index.js.map +1 -1
- package/dist/lexicon/lexicons.d.ts +66 -0
- package/dist/lexicon/lexicons.d.ts.map +1 -1
- package/dist/lexicon/lexicons.js +34 -0
- package/dist/lexicon/lexicons.js.map +1 -1
- package/dist/lexicon/types/app/bsky/notification/unregisterPush.d.ts +17 -0
- package/dist/lexicon/types/app/bsky/notification/unregisterPush.d.ts.map +1 -0
- package/dist/lexicon/types/app/bsky/notification/unregisterPush.js +7 -0
- package/dist/lexicon/types/app/bsky/notification/unregisterPush.js.map +1 -0
- package/dist/proto/bsky_pb.d.ts +4 -0
- package/dist/proto/bsky_pb.d.ts.map +1 -1
- package/dist/proto/bsky_pb.js +15 -0
- package/dist/proto/bsky_pb.js.map +1 -1
- package/dist/proto/courier_connect.d.ts +19 -1
- package/dist/proto/courier_connect.d.ts.map +1 -1
- package/dist/proto/courier_connect.js +18 -0
- package/dist/proto/courier_connect.js.map +1 -1
- package/dist/proto/courier_pb.d.ts +76 -0
- package/dist/proto/courier_pb.d.ts.map +1 -1
- package/dist/proto/courier_pb.js +233 -1
- package/dist/proto/courier_pb.js.map +1 -1
- package/package.json +4 -4
- package/proto/bsky.proto +1 -0
- package/proto/courier.proto +18 -0
- package/src/api/app/bsky/notification/registerPush.ts +5 -8
- package/src/api/app/bsky/notification/unregisterPush.ts +38 -0
- package/src/api/app/bsky/notification/util.ts +18 -0
- package/src/api/app/bsky/unspecced/initAgeAssurance.ts +1 -1
- package/src/config.ts +1 -1
- package/src/lexicon/index.ts +13 -0
- package/src/lexicon/lexicons.ts +35 -0
- package/src/lexicon/types/app/bsky/notification/unregisterPush.ts +36 -0
- package/src/proto/bsky_pb.ts +11 -0
- package/src/proto/courier_connect.ts +22 -0
- package/src/proto/courier_pb.ts +246 -0
- package/tsconfig.build.tsbuildinfo +1 -1
package/dist/proto/bsky_pb.js
CHANGED
|
@@ -5808,6 +5808,15 @@ class AgeAssuranceStatus extends protobuf_1.Message {
|
|
|
5808
5808
|
writable: true,
|
|
5809
5809
|
value: void 0
|
|
5810
5810
|
});
|
|
5811
|
+
/**
|
|
5812
|
+
* @generated from field: bool override_applied = 3;
|
|
5813
|
+
*/
|
|
5814
|
+
Object.defineProperty(this, "overrideApplied", {
|
|
5815
|
+
enumerable: true,
|
|
5816
|
+
configurable: true,
|
|
5817
|
+
writable: true,
|
|
5818
|
+
value: false
|
|
5819
|
+
});
|
|
5811
5820
|
protobuf_1.proto3.util.initPartial(data, this);
|
|
5812
5821
|
}
|
|
5813
5822
|
static fromBinary(bytes, options) {
|
|
@@ -5843,6 +5852,12 @@ Object.defineProperty(AgeAssuranceStatus, "fields", {
|
|
|
5843
5852
|
value: protobuf_1.proto3.util.newFieldList(() => [
|
|
5844
5853
|
{ no: 1, name: 'status', kind: 'scalar', T: 9 /* ScalarType.STRING */ },
|
|
5845
5854
|
{ no: 2, name: 'last_initiated_at', kind: 'message', T: protobuf_1.Timestamp },
|
|
5855
|
+
{
|
|
5856
|
+
no: 3,
|
|
5857
|
+
name: 'override_applied',
|
|
5858
|
+
kind: 'scalar',
|
|
5859
|
+
T: 8 /* ScalarType.BOOL */,
|
|
5860
|
+
},
|
|
5846
5861
|
])
|
|
5847
5862
|
});
|
|
5848
5863
|
/**
|