diff --git a/assets/logo-icons/entity/2.0x/bot_head.png b/assets/logo-icons/entity/2.0x/bot_head.png new file mode 100644 index 0000000..00fa623 Binary files /dev/null and b/assets/logo-icons/entity/2.0x/bot_head.png differ diff --git a/assets/logo-icons/entity/2.0x/brain.png b/assets/logo-icons/entity/2.0x/brain.png new file mode 100644 index 0000000..2609dc1 Binary files /dev/null and b/assets/logo-icons/entity/2.0x/brain.png differ diff --git a/assets/logo-icons/entity/2.0x/neural_net.png b/assets/logo-icons/entity/2.0x/neural_net.png new file mode 100644 index 0000000..5817f6a Binary files /dev/null and b/assets/logo-icons/entity/2.0x/neural_net.png differ diff --git a/assets/logo-icons/entity/3.0x/bot_head.png b/assets/logo-icons/entity/3.0x/bot_head.png new file mode 100644 index 0000000..dfa1f83 Binary files /dev/null and b/assets/logo-icons/entity/3.0x/bot_head.png differ diff --git a/assets/logo-icons/entity/3.0x/brain.png b/assets/logo-icons/entity/3.0x/brain.png new file mode 100644 index 0000000..ccc7883 Binary files /dev/null and b/assets/logo-icons/entity/3.0x/brain.png differ diff --git a/assets/logo-icons/entity/3.0x/neural_net.png b/assets/logo-icons/entity/3.0x/neural_net.png new file mode 100644 index 0000000..190b85d Binary files /dev/null and b/assets/logo-icons/entity/3.0x/neural_net.png differ diff --git a/assets/logo-icons/entity/bot_head.png b/assets/logo-icons/entity/bot_head.png new file mode 100644 index 0000000..17c228e Binary files /dev/null and b/assets/logo-icons/entity/bot_head.png differ diff --git a/assets/logo-icons/entity/brain.png b/assets/logo-icons/entity/brain.png new file mode 100644 index 0000000..0ade851 Binary files /dev/null and b/assets/logo-icons/entity/brain.png differ diff --git a/assets/logo-icons/entity/neural_net.png b/assets/logo-icons/entity/neural_net.png new file mode 100644 index 0000000..476afde Binary files /dev/null and b/assets/logo-icons/entity/neural_net.png differ diff --git a/lib/src/logo/curated_logo_icons.dart b/lib/src/logo/curated_logo_icons.dart index 79ca88e..b5a1bf1 100644 --- a/lib/src/logo/curated_logo_icons.dart +++ b/lib/src/logo/curated_logo_icons.dart @@ -50,7 +50,7 @@ String? anonymousAnimalAssetPath(String name) => : null; /// Keys of the curated "anonymous entity" badge icon set (lowercase) — applications, -/// organizations, and resource servers — matching the +/// organizations, resource servers, and agents — matching the /// `avatar:...,variant=anonymous_entity,content=` logo spec scheme supported by the web /// SDK's logo picker. const List kAnonymousEntityNames = [ @@ -87,6 +87,9 @@ const List kAnonymousEntityNames = [ 'circuit_node', 'antenna', 'valve', + 'bot_head', + 'brain', + 'neural_net', ]; /// Resolves an `avatar:...,variant=anonymous_entity,content=` spec's entity key to its diff --git a/lib/src/logo/logo_spec.dart b/lib/src/logo/logo_spec.dart index 7cbd9a8..619889b 100644 --- a/lib/src/logo/logo_spec.dart +++ b/lib/src/logo/logo_spec.dart @@ -37,7 +37,7 @@ enum AvatarVariant { anonymousAnimal, /// One of the curated "anonymous entity" badge icons (applications, organizations, resource - /// servers) — a bundled asset image. + /// servers, agents) — a bundled asset image. anonymousEntity, }