firebasecore.proto 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. syntax = "proto2";
  2. package logs.proto.mobilesdk.ios;
  3. message ICoreConfiguration {
  4. enum ConfigurationType {
  5. UNKNOWN_CONFIGURATION_TYPE = 0;
  6. CORE = 1;
  7. SDK = 2;
  8. }
  9. enum BuildType {
  10. UNKNOWN_BUILD_TYPE = 0;
  11. INTERNAL = 1;
  12. EAP = 2;
  13. PROD = 3;
  14. }
  15. enum ServiceType {
  16. UNKNOWN_SDK_SERVICE = 0;
  17. ICORE = 1;
  18. ADMOB = 2;
  19. APP_INVITE = 3;
  20. SIGN_IN = 5;
  21. GCM = 6 [deprecated = true];
  22. MAPS = 7;
  23. SCION = 8 [deprecated = true];
  24. ANALYTICS = 9;
  25. APP_INDEXING = 10;
  26. CONFIG = 11 [deprecated = true];
  27. DURABLE_DEEP_LINKS = 12 [deprecated = true];
  28. CRASH = 13;
  29. AUTH = 14;
  30. DATABASE = 15;
  31. STORAGE = 16;
  32. MESSAGING = 17;
  33. MEASUREMENT = 18;
  34. REMOTE_CONFIG = 19;
  35. DYNAMIC_LINKS = 20;
  36. INVITES = 21;
  37. AUTH_UI = 22;
  38. FIRESTORE = 23;
  39. PERFORMANCE = 24;
  40. ML_VISION_ON_DEVICE_FACE = 26;
  41. ML_VISION_ON_DEVICE_BARCODE = 27;
  42. ML_VISION_ON_DEVICE_TEXT = 28;
  43. ML_VISION_ON_DEVICE_LABEL = 29;
  44. ML_MODEL_INTERPRETER = 30;
  45. IN_APP_MESSAGING = 31;
  46. FUNCTIONS = 32;
  47. ML_NATURAL_LANGUAGE = 33;
  48. ML_VISION_ON_DEVICE_AUTOML = 34;
  49. ML_VISION_ON_DEVICE_OBJECT_DETECTION = 35;
  50. }
  51. enum PodName {
  52. UNKNOWN_POD_NAME = 0;
  53. GOOGLE = 1;
  54. FIREBASE = 2;
  55. }
  56. enum DeploymentType {
  57. UNKNOWN = 0;
  58. COCOAPODS = 1;
  59. ZIP_FILE = 2;
  60. CARTHAGE = 3;
  61. SPM = 4;
  62. }
  63. optional .logs.proto.mobilesdk.ios.ICoreConfiguration.PodName pod_name = 16;
  64. optional .logs.proto.mobilesdk.ios.ICoreConfiguration.ConfigurationType
  65. configuration_type = 1;
  66. optional string icore_version = 18;
  67. optional string sdk_version = 19;
  68. repeated .logs.proto.mobilesdk.ios.ICoreConfiguration.ServiceType
  69. sdk_service_installed = 7;
  70. optional .logs.proto.mobilesdk.ios.ICoreConfiguration.ServiceType sdk_name =
  71. 20;
  72. optional string device_model = 9;
  73. optional string os_version = 22;
  74. optional string app_id = 10;
  75. optional string bundle_id = 12;
  76. optional string min_supported_ios_version = 24;
  77. optional bool use_default_app = 25;
  78. optional int32 app_count = 21;
  79. optional bool deployed_in_app_store = 26;
  80. optional int32 dynamic_framework_count = 27;
  81. optional string apple_framework_version = 28;
  82. optional bool using_zip_file = 29;
  83. optional DeploymentType deployment_type = 30;
  84. optional string platform_info = 31;
  85. optional bool swizzling_enabled = 33;
  86. optional bool using_gdt = 36;
  87. }