comAtprotoServerGetAccountInviteCodes top-level constant

Map<String, dynamic> const comAtprotoServerGetAccountInviteCodes

com.atproto.server.getAccountInviteCodes

Implementation

const comAtprotoServerGetAccountInviteCodes = <String, dynamic>{
  "lexicon": 1,
  "id": "com.atproto.server.getAccountInviteCodes",
  "defs": {
    "main": {
      "type": "query",
      "description":
          "Get all invite codes for the current account. Requires auth.",
      "parameters": {
        "type": "params",
        "properties": {
          "includeUsed": {"type": "boolean", "default": true},
          "createAvailable": {
            "type": "boolean",
            "description":
                "Controls whether any new 'earned' but not 'created' invites should be created.",
            "default": true
          }
        }
      },
      "output": {
        "encoding": "application/json",
        "schema": {
          "type": "object",
          "required": ["codes"],
          "properties": {
            "codes": {
              "type": "array",
              "items": {
                "type": "ref",
                "ref": "com.atproto.server.defs#inviteCode"
              }
            }
          }
        }
      },
      "errors": [
        {"name": "DuplicateCreate"}
      ]
    }
  }
};