···1313// AdminDisableAccountInvites_Input is the input argument to a com.atproto.admin.disableAccountInvites call.
1414type AdminDisableAccountInvites_Input struct {
1515 Account string `json:"account" cborgen:"account"`
1616+ // note: Additionally add a note describing why the invites were disabled
1717+ Note *string `json:"note,omitempty" cborgen:"note,omitempty"`
1618}
17191820// AdminDisableAccountInvites calls the XRPC method "com.atproto.admin.disableAccountInvites".
+2
api/atproto/adminenableAccountInvites.go
···1313// AdminEnableAccountInvites_Input is the input argument to a com.atproto.admin.enableAccountInvites call.
1414type AdminEnableAccountInvites_Input struct {
1515 Account string `json:"account" cborgen:"account"`
1616+ // note: Additionally add a note describing why the invites were enabled
1717+ Note *string `json:"note,omitempty" cborgen:"note,omitempty"`
1618}
17191820// AdminEnableAccountInvites calls the XRPC method "com.atproto.admin.enableAccountInvites".
+15
api/atproto/labeldefs.go
···2121 // val: the short string name of the value or type of this label
2222 Val string `json:"val" cborgen:"val"`
2323}
2424+2525+// LabelDefs_SelfLabel is a "selfLabel" in the com.atproto.label.defs schema.
2626+//
2727+// Metadata tag on an atproto record, published by the author within the record. Note -- schemas should use #selfLabels, not #selfLabel.
2828+type LabelDefs_SelfLabel struct {
2929+ // val: the short string name of the value or type of this label
3030+ Val string `json:"val" cborgen:"val"`
3131+}
3232+3333+// LabelDefs_SelfLabels is a "selfLabels" in the com.atproto.label.defs schema.
3434+//
3535+// Metadata tags on an atproto record, published by the author within the record.
3636+type LabelDefs_SelfLabels struct {
3737+ Values []*LabelDefs_SelfLabel `json:"values" cborgen:"values"`
3838+}