brand.dev 0.2.0 → 0.3.0
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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +26 -0
- data/README.md +1 -1
- data/lib/brand_dev/internal/transport/base_client.rb +1 -1
- data/lib/brand_dev/internal/type/array_of.rb +1 -0
- data/lib/brand_dev/internal/type/base_model.rb +3 -1
- data/lib/brand_dev/internal/type/converter.rb +27 -0
- data/lib/brand_dev/internal/type/hash_of.rb +1 -0
- data/lib/brand_dev/internal/type/union.rb +9 -7
- data/lib/brand_dev/models/brand_identify_from_transaction_response.rb +311 -1
- data/lib/brand_dev/models/brand_retrieve_params.rb +32 -9
- data/lib/brand_dev/models/brand_retrieve_response.rb +310 -1
- data/lib/brand_dev/models.rb +0 -2
- data/lib/brand_dev/resources/brand.rb +10 -32
- data/lib/brand_dev/version.rb +1 -1
- data/lib/brand_dev.rb +0 -2
- data/rbi/brand_dev/internal/transport/base_client.rbi +1 -1
- data/rbi/brand_dev/internal/type/converter.rbi +54 -0
- data/rbi/brand_dev/internal/type/union.rbi +9 -2
- data/rbi/brand_dev/models/brand_identify_from_transaction_response.rbi +1409 -0
- data/rbi/brand_dev/models/brand_retrieve_params.rbi +48 -10
- data/rbi/brand_dev/models/brand_retrieve_response.rbi +1409 -0
- data/rbi/brand_dev/models.rbi +0 -2
- data/rbi/brand_dev/resources/brand.rbi +18 -24
- data/sig/brand_dev/internal/transport/base_client.rbs +1 -1
- data/sig/brand_dev/internal/type/converter.rbs +17 -0
- data/sig/brand_dev/internal/type/union.rbs +2 -2
- data/sig/brand_dev/models/brand_identify_from_transaction_response.rbs +558 -0
- data/sig/brand_dev/models/brand_retrieve_params.rbs +18 -2
- data/sig/brand_dev/models/brand_retrieve_response.rbs +558 -0
- data/sig/brand_dev/models.rbs +0 -2
- data/sig/brand_dev/resources/brand.rbs +3 -7
- metadata +2 -8
- data/lib/brand_dev/models/brand_retrieve_by_ticker_params.rb +0 -35
- data/lib/brand_dev/models/brand_retrieve_by_ticker_response.rb +0 -478
- data/rbi/brand_dev/models/brand_retrieve_by_ticker_params.rbi +0 -61
- data/rbi/brand_dev/models/brand_retrieve_by_ticker_response.rbi +0 -1081
- data/sig/brand_dev/models/brand_retrieve_by_ticker_params.rbs +0 -30
- data/sig/brand_dev/models/brand_retrieve_by_ticker_response.rbs +0 -467
@@ -42,6 +42,7 @@ module BrandDev
|
|
42
42
|
description: String,
|
43
43
|
domain: String,
|
44
44
|
email: String,
|
45
|
+
industries: BrandDev::Models::BrandRetrieveResponse::Brand::Industries,
|
45
46
|
is_nsfw: bool,
|
46
47
|
logos: ::Array[BrandDev::Models::BrandRetrieveResponse::Brand::Logo],
|
47
48
|
phone: String,
|
@@ -82,6 +83,12 @@ module BrandDev
|
|
82
83
|
|
83
84
|
def email=: (String) -> String
|
84
85
|
|
86
|
+
attr_reader industries: BrandDev::Models::BrandRetrieveResponse::Brand::Industries?
|
87
|
+
|
88
|
+
def industries=: (
|
89
|
+
BrandDev::Models::BrandRetrieveResponse::Brand::Industries
|
90
|
+
) -> BrandDev::Models::BrandRetrieveResponse::Brand::Industries
|
91
|
+
|
85
92
|
attr_reader is_nsfw: bool?
|
86
93
|
|
87
94
|
def is_nsfw=: (bool) -> bool
|
@@ -123,6 +130,7 @@ module BrandDev
|
|
123
130
|
?description: String,
|
124
131
|
?domain: String,
|
125
132
|
?email: String,
|
133
|
+
?industries: BrandDev::Models::BrandRetrieveResponse::Brand::Industries,
|
126
134
|
?is_nsfw: bool,
|
127
135
|
?logos: ::Array[BrandDev::Models::BrandRetrieveResponse::Brand::Logo],
|
128
136
|
?phone: String,
|
@@ -139,6 +147,7 @@ module BrandDev
|
|
139
147
|
description: String,
|
140
148
|
domain: String,
|
141
149
|
email: String,
|
150
|
+
industries: BrandDev::Models::BrandRetrieveResponse::Brand::Industries,
|
142
151
|
is_nsfw: bool,
|
143
152
|
logos: ::Array[BrandDev::Models::BrandRetrieveResponse::Brand::Logo],
|
144
153
|
phone: String,
|
@@ -307,6 +316,555 @@ module BrandDev
|
|
307
316
|
def to_hash: -> { hex: String, name: String }
|
308
317
|
end
|
309
318
|
|
319
|
+
type industries =
|
320
|
+
{
|
321
|
+
eic: ::Array[BrandDev::Models::BrandRetrieveResponse::Brand::Industries::Eic]
|
322
|
+
}
|
323
|
+
|
324
|
+
class Industries < BrandDev::Internal::Type::BaseModel
|
325
|
+
attr_reader eic: ::Array[BrandDev::Models::BrandRetrieveResponse::Brand::Industries::Eic]?
|
326
|
+
|
327
|
+
def eic=: (
|
328
|
+
::Array[BrandDev::Models::BrandRetrieveResponse::Brand::Industries::Eic]
|
329
|
+
) -> ::Array[BrandDev::Models::BrandRetrieveResponse::Brand::Industries::Eic]
|
330
|
+
|
331
|
+
def initialize: (
|
332
|
+
?eic: ::Array[BrandDev::Models::BrandRetrieveResponse::Brand::Industries::Eic]
|
333
|
+
) -> void
|
334
|
+
|
335
|
+
def to_hash: -> {
|
336
|
+
eic: ::Array[BrandDev::Models::BrandRetrieveResponse::Brand::Industries::Eic]
|
337
|
+
}
|
338
|
+
|
339
|
+
type eic =
|
340
|
+
{
|
341
|
+
industry: BrandDev::Models::BrandRetrieveResponse::Brand::Industries::Eic::industry,
|
342
|
+
subindustry: BrandDev::Models::BrandRetrieveResponse::Brand::Industries::Eic::subindustry
|
343
|
+
}
|
344
|
+
|
345
|
+
class Eic < BrandDev::Internal::Type::BaseModel
|
346
|
+
attr_accessor industry: BrandDev::Models::BrandRetrieveResponse::Brand::Industries::Eic::industry
|
347
|
+
|
348
|
+
attr_accessor subindustry: BrandDev::Models::BrandRetrieveResponse::Brand::Industries::Eic::subindustry
|
349
|
+
|
350
|
+
def initialize: (
|
351
|
+
industry: BrandDev::Models::BrandRetrieveResponse::Brand::Industries::Eic::industry,
|
352
|
+
subindustry: BrandDev::Models::BrandRetrieveResponse::Brand::Industries::Eic::subindustry
|
353
|
+
) -> void
|
354
|
+
|
355
|
+
def to_hash: -> {
|
356
|
+
industry: BrandDev::Models::BrandRetrieveResponse::Brand::Industries::Eic::industry,
|
357
|
+
subindustry: BrandDev::Models::BrandRetrieveResponse::Brand::Industries::Eic::subindustry
|
358
|
+
}
|
359
|
+
|
360
|
+
type industry =
|
361
|
+
:"Aerospace & Defense"
|
362
|
+
| :Technology
|
363
|
+
| :Finance
|
364
|
+
| :Healthcare
|
365
|
+
| :"Retail & E-commerce"
|
366
|
+
| :Entertainment
|
367
|
+
| :Education
|
368
|
+
| :"Government & Nonprofit"
|
369
|
+
| :"Industrial & Energy"
|
370
|
+
| :"Automotive & Transportation"
|
371
|
+
| :"Lifestyle & Leisure"
|
372
|
+
| :"Luxury & Fashion"
|
373
|
+
| :"News & Media"
|
374
|
+
| :Sports
|
375
|
+
| :"Real Estate & PropTech"
|
376
|
+
| :"Legal & Compliance"
|
377
|
+
| :Telecommunications
|
378
|
+
| :"Agriculture & Food"
|
379
|
+
| :"Professional Services & Agencies"
|
380
|
+
| :"Chemicals & Materials"
|
381
|
+
| :"Logistics & Supply Chain"
|
382
|
+
| :"Hospitality & Tourism"
|
383
|
+
| :"Construction & Built Environment"
|
384
|
+
| :"Consumer Packaged Goods (CPG)"
|
385
|
+
|
386
|
+
module Industry
|
387
|
+
extend BrandDev::Internal::Type::Enum
|
388
|
+
|
389
|
+
AEROSPACE_DEFENSE: :"Aerospace & Defense"
|
390
|
+
TECHNOLOGY: :Technology
|
391
|
+
FINANCE: :Finance
|
392
|
+
HEALTHCARE: :Healthcare
|
393
|
+
RETAIL_E_COMMERCE: :"Retail & E-commerce"
|
394
|
+
ENTERTAINMENT: :Entertainment
|
395
|
+
EDUCATION: :Education
|
396
|
+
GOVERNMENT_NONPROFIT: :"Government & Nonprofit"
|
397
|
+
INDUSTRIAL_ENERGY: :"Industrial & Energy"
|
398
|
+
AUTOMOTIVE_TRANSPORTATION: :"Automotive & Transportation"
|
399
|
+
LIFESTYLE_LEISURE: :"Lifestyle & Leisure"
|
400
|
+
LUXURY_FASHION: :"Luxury & Fashion"
|
401
|
+
NEWS_MEDIA: :"News & Media"
|
402
|
+
SPORTS: :Sports
|
403
|
+
REAL_ESTATE_PROP_TECH: :"Real Estate & PropTech"
|
404
|
+
LEGAL_COMPLIANCE: :"Legal & Compliance"
|
405
|
+
TELECOMMUNICATIONS: :Telecommunications
|
406
|
+
AGRICULTURE_FOOD: :"Agriculture & Food"
|
407
|
+
PROFESSIONAL_SERVICES_AGENCIES: :"Professional Services & Agencies"
|
408
|
+
CHEMICALS_MATERIALS: :"Chemicals & Materials"
|
409
|
+
LOGISTICS_SUPPLY_CHAIN: :"Logistics & Supply Chain"
|
410
|
+
HOSPITALITY_TOURISM: :"Hospitality & Tourism"
|
411
|
+
CONSTRUCTION_BUILT_ENVIRONMENT: :"Construction & Built Environment"
|
412
|
+
CONSUMER_PACKAGED_GOODS_CPG: :"Consumer Packaged Goods (CPG)"
|
413
|
+
|
414
|
+
def self?.values: -> ::Array[BrandDev::Models::BrandRetrieveResponse::Brand::Industries::Eic::industry]
|
415
|
+
end
|
416
|
+
|
417
|
+
type subindustry =
|
418
|
+
:"Defense Systems & Military Hardware"
|
419
|
+
| :"Aerospace Manufacturing"
|
420
|
+
| :"Avionics & Navigation Technology"
|
421
|
+
| :"Subsea & Naval Defense Systems"
|
422
|
+
| :"Space & Satellite Technology"
|
423
|
+
| :"Defense IT & Systems Integration"
|
424
|
+
| :"Software (B2B)"
|
425
|
+
| :"Software (B2C)"
|
426
|
+
| :"Cloud Infrastructure & DevOps"
|
427
|
+
| :Cybersecurity
|
428
|
+
| :"Artificial Intelligence & Machine Learning"
|
429
|
+
| :"Data Infrastructure & Analytics"
|
430
|
+
| :"Hardware & Semiconductors"
|
431
|
+
| :"Fintech Infrastructure"
|
432
|
+
| :"eCommerce & Marketplace Platforms"
|
433
|
+
| :"Developer Tools & APIs"
|
434
|
+
| :"Web3 & Blockchain"
|
435
|
+
| :"XR & Spatial Computing"
|
436
|
+
| :"Banking & Lending"
|
437
|
+
| :"Investment Management & WealthTech"
|
438
|
+
| :"Insurance & InsurTech"
|
439
|
+
| :"Payments & Money Movement"
|
440
|
+
| :"Accounting, Tax & Financial Planning Tools"
|
441
|
+
| :"Capital Markets & Trading Platforms"
|
442
|
+
| :"Financial Infrastructure & APIs"
|
443
|
+
| :"Credit Scoring & Risk Management"
|
444
|
+
| :"Cryptocurrency & Digital Assets"
|
445
|
+
| :"BNPL & Alternative Financing"
|
446
|
+
| :"Healthcare Providers & Services"
|
447
|
+
| :"Pharmaceuticals & Drug Development"
|
448
|
+
| :"Medical Devices & Diagnostics"
|
449
|
+
| :"Biotechnology & Genomics"
|
450
|
+
| :"Digital Health & Telemedicine"
|
451
|
+
| :"Health Insurance & Benefits Tech"
|
452
|
+
| :"Clinical Trials & Research Platforms"
|
453
|
+
| :"Mental Health & Wellness"
|
454
|
+
| :"Healthcare IT & EHR Systems"
|
455
|
+
| :"Consumer Health & Wellness Products"
|
456
|
+
| :"Online Marketplaces"
|
457
|
+
| :"Direct-to-Consumer (DTC) Brands"
|
458
|
+
| :"Retail Tech & Point-of-Sale Systems"
|
459
|
+
| :"Omnichannel & In-Store Retail"
|
460
|
+
| :"E-commerce Enablement & Infrastructure"
|
461
|
+
| :"Subscription & Membership Commerce"
|
462
|
+
| :"Social Commerce & Influencer Platforms"
|
463
|
+
| :"Fashion & Apparel Retail"
|
464
|
+
| :"Food, Beverage & Grocery E-commerce"
|
465
|
+
| :"Streaming Platforms (Video, Music, Audio)"
|
466
|
+
| :"Gaming & Interactive Entertainment"
|
467
|
+
| :"Creator Economy & Influencer Platforms"
|
468
|
+
| :"Advertising, Adtech & Media Buying"
|
469
|
+
| :"Film, TV & Production Studios"
|
470
|
+
| :"Events, Venues & Live Entertainment"
|
471
|
+
| :"Virtual Worlds & Metaverse Experiences"
|
472
|
+
| :"K-12 Education Platforms & Tools"
|
473
|
+
| :"Higher Education & University Tech"
|
474
|
+
| :"Online Learning & MOOCs"
|
475
|
+
| :"Test Prep & Certification"
|
476
|
+
| :"Corporate Training & Upskilling"
|
477
|
+
| :"Tutoring & Supplemental Learning"
|
478
|
+
| :"Education Management Systems (LMS/SIS)"
|
479
|
+
| :"Language Learning"
|
480
|
+
| :"Creator-Led & Cohort-Based Courses"
|
481
|
+
| :"Special Education & Accessibility Tools"
|
482
|
+
| :"Government Technology & Digital Services"
|
483
|
+
| :"Civic Engagement & Policy Platforms"
|
484
|
+
| :"International Development & Humanitarian Aid"
|
485
|
+
| :"Philanthropy & Grantmaking"
|
486
|
+
| :"Nonprofit Operations & Fundraising Tools"
|
487
|
+
| :"Public Health & Social Services"
|
488
|
+
| :"Education & Youth Development Programs"
|
489
|
+
| :"Environmental & Climate Action Organizations"
|
490
|
+
| :"Legal Aid & Social Justice Advocacy"
|
491
|
+
| :"Municipal & Infrastructure Services"
|
492
|
+
| :"Manufacturing & Industrial Automation"
|
493
|
+
| :"Energy Production (Oil, Gas, Nuclear)"
|
494
|
+
| :"Renewable Energy & Cleantech"
|
495
|
+
| :"Utilities & Grid Infrastructure"
|
496
|
+
| :"Industrial IoT & Monitoring Systems"
|
497
|
+
| :"Construction & Heavy Equipment"
|
498
|
+
| :"Mining & Natural Resources"
|
499
|
+
| :"Environmental Engineering & Sustainability"
|
500
|
+
| :"Energy Storage & Battery Technology"
|
501
|
+
| :"Automotive OEMs & Vehicle Manufacturing"
|
502
|
+
| :"Electric Vehicles (EVs) & Charging Infrastructure"
|
503
|
+
| :"Mobility-as-a-Service (MaaS)"
|
504
|
+
| :"Fleet Management"
|
505
|
+
| :"Public Transit & Urban Mobility"
|
506
|
+
| :"Autonomous Vehicles & ADAS"
|
507
|
+
| :"Aftermarket Parts & Services"
|
508
|
+
| :"Telematics & Vehicle Connectivity"
|
509
|
+
| :"Aviation & Aerospace Transport"
|
510
|
+
| :"Maritime Shipping"
|
511
|
+
| :"Fitness & Wellness"
|
512
|
+
| :"Beauty & Personal Care"
|
513
|
+
| :"Home & Living"
|
514
|
+
| :"Dating & Relationships"
|
515
|
+
| :"Hobbies, Crafts & DIY"
|
516
|
+
| :"Outdoor & Recreational Gear"
|
517
|
+
| :"Events, Experiences & Ticketing Platforms"
|
518
|
+
| :"Designer & Luxury Apparel"
|
519
|
+
| :"Accessories, Jewelry & Watches"
|
520
|
+
| :"Footwear & Leather Goods"
|
521
|
+
| :"Beauty, Fragrance & Skincare"
|
522
|
+
| :"Fashion Marketplaces & Retail Platforms"
|
523
|
+
| :"Sustainable & Ethical Fashion"
|
524
|
+
| :"Resale, Vintage & Circular Fashion"
|
525
|
+
| :"Fashion Tech & Virtual Try-Ons"
|
526
|
+
| :"Streetwear & Emerging Luxury"
|
527
|
+
| :"Couture & Made-to-Measure"
|
528
|
+
| :"News Publishing & Journalism"
|
529
|
+
| :"Digital Media & Content Platforms"
|
530
|
+
| :"Broadcasting (TV & Radio)"
|
531
|
+
| :"Podcasting & Audio Media"
|
532
|
+
| :"News Aggregators & Curation Tools"
|
533
|
+
| :"Independent & Creator-Led Media"
|
534
|
+
| :"Newsletters & Substack-Style Platforms"
|
535
|
+
| :"Political & Investigative Media"
|
536
|
+
| :"Trade & Niche Publications"
|
537
|
+
| :"Media Monitoring & Analytics"
|
538
|
+
| :"Professional Teams & Leagues"
|
539
|
+
| :"Sports Media & Broadcasting"
|
540
|
+
| :"Sports Betting & Fantasy Sports"
|
541
|
+
| :"Fitness & Athletic Training Platforms"
|
542
|
+
| :"Sportswear & Equipment"
|
543
|
+
| :"Esports & Competitive Gaming"
|
544
|
+
| :"Sports Venues & Event Management"
|
545
|
+
| :"Athlete Management & Talent Agencies"
|
546
|
+
| :"Sports Tech & Performance Analytics"
|
547
|
+
| :"Youth, Amateur & Collegiate Sports"
|
548
|
+
| :"Real Estate Marketplaces"
|
549
|
+
| :"Property Management Software"
|
550
|
+
| :"Rental Platforms"
|
551
|
+
| :"Mortgage & Lending Tech"
|
552
|
+
| :"Real Estate Investment Platforms"
|
553
|
+
| :"Law Firms & Legal Services"
|
554
|
+
| :"Legal Tech & Automation"
|
555
|
+
| :"Regulatory Compliance"
|
556
|
+
| :"E-Discovery & Litigation Tools"
|
557
|
+
| :"Contract Management"
|
558
|
+
| :"Governance, Risk & Compliance (GRC)"
|
559
|
+
| :"IP & Trademark Management"
|
560
|
+
| :"Legal Research & Intelligence"
|
561
|
+
| :"Compliance Training & Certification"
|
562
|
+
| :"Whistleblower & Ethics Reporting"
|
563
|
+
| :"Mobile & Wireless Networks (3G/4G/5G)"
|
564
|
+
| :"Broadband & Fiber Internet"
|
565
|
+
| :"Satellite & Space-Based Communications"
|
566
|
+
| :"Network Equipment & Infrastructure"
|
567
|
+
| :"Telecom Billing & OSS/BSS Systems"
|
568
|
+
| :"VoIP & Unified Communications"
|
569
|
+
| :"Internet Service Providers (ISPs)"
|
570
|
+
| :"Edge Computing & Network Virtualization"
|
571
|
+
| :"IoT Connectivity Platforms"
|
572
|
+
| :"Precision Agriculture & AgTech"
|
573
|
+
| :"Crop & Livestock Production"
|
574
|
+
| :"Food & Beverage Manufacturing & Processing"
|
575
|
+
| :"Food Distribution"
|
576
|
+
| :"Restaurants & Food Service"
|
577
|
+
| :"Agricultural Inputs & Equipment"
|
578
|
+
| :"Sustainable & Regenerative Agriculture"
|
579
|
+
| :"Seafood & Aquaculture"
|
580
|
+
| :"Management Consulting"
|
581
|
+
| :"Marketing & Advertising Agencies"
|
582
|
+
| :"Design, Branding & Creative Studios"
|
583
|
+
| :"IT Services & Managed Services"
|
584
|
+
| :"Staffing, Recruiting & Talent"
|
585
|
+
| :"Accounting & Tax Firms"
|
586
|
+
| :"Public Relations & Communications"
|
587
|
+
| :"Business Process Outsourcing (BPO)"
|
588
|
+
| :"Professional Training & Coaching"
|
589
|
+
| :"Specialty Chemicals"
|
590
|
+
| :"Commodity & Petrochemicals"
|
591
|
+
| :"Polymers, Plastics & Rubber"
|
592
|
+
| :"Coatings, Adhesives & Sealants"
|
593
|
+
| :"Industrial Gases"
|
594
|
+
| :"Advanced Materials & Composites"
|
595
|
+
| :"Battery Materials & Energy Storage"
|
596
|
+
| :"Electronic Materials & Semiconductor Chemicals"
|
597
|
+
| :"Agrochemicals & Fertilizers"
|
598
|
+
| :"Freight & Transportation Tech"
|
599
|
+
| :"Last-Mile Delivery"
|
600
|
+
| :"Warehouse Automation"
|
601
|
+
| :"Supply Chain Visibility Platforms"
|
602
|
+
| :"Logistics Marketplaces"
|
603
|
+
| :"Shipping & Freight Forwarding"
|
604
|
+
| :"Cold Chain Logistics"
|
605
|
+
| :"Reverse Logistics & Returns"
|
606
|
+
| :"Cross-Border Trade Tech"
|
607
|
+
| :"Transportation Management Systems (TMS)"
|
608
|
+
| :"Hotels & Accommodation"
|
609
|
+
| :"Vacation Rentals & Short-Term Stays"
|
610
|
+
| :"Restaurant Tech & Management"
|
611
|
+
| :"Travel Booking Platforms"
|
612
|
+
| :"Tourism Experiences & Activities"
|
613
|
+
| :"Cruise Lines & Marine Tourism"
|
614
|
+
| :"Hospitality Management Systems"
|
615
|
+
| :"Event & Venue Management"
|
616
|
+
| :"Corporate Travel Management"
|
617
|
+
| :"Travel Insurance & Protection"
|
618
|
+
| :"Construction Management Software"
|
619
|
+
| :"BIM/CAD & Design Tools"
|
620
|
+
| :"Construction Marketplaces"
|
621
|
+
| :"Equipment Rental & Management"
|
622
|
+
| :"Building Materials & Procurement"
|
623
|
+
| :"Construction Workforce Management"
|
624
|
+
| :"Project Estimation & Bidding"
|
625
|
+
| :"Modular & Prefab Construction"
|
626
|
+
| :"Construction Safety & Compliance"
|
627
|
+
| :"Smart Building Technology"
|
628
|
+
| :"Food & Beverage CPG"
|
629
|
+
| :"Home & Personal Care CPG"
|
630
|
+
| :"CPG Analytics & Insights"
|
631
|
+
| :"Direct-to-Consumer CPG Brands"
|
632
|
+
| :"CPG Supply Chain & Distribution"
|
633
|
+
| :"Private Label Manufacturing"
|
634
|
+
| :"CPG Retail Intelligence"
|
635
|
+
| :"Sustainable CPG & Packaging"
|
636
|
+
| :"Beauty & Cosmetics CPG"
|
637
|
+
| :"Health & Wellness CPG"
|
638
|
+
|
639
|
+
module Subindustry
|
640
|
+
extend BrandDev::Internal::Type::Enum
|
641
|
+
|
642
|
+
DEFENSE_SYSTEMS_MILITARY_HARDWARE: :"Defense Systems & Military Hardware"
|
643
|
+
AEROSPACE_MANUFACTURING: :"Aerospace Manufacturing"
|
644
|
+
AVIONICS_NAVIGATION_TECHNOLOGY: :"Avionics & Navigation Technology"
|
645
|
+
SUBSEA_NAVAL_DEFENSE_SYSTEMS: :"Subsea & Naval Defense Systems"
|
646
|
+
SPACE_SATELLITE_TECHNOLOGY: :"Space & Satellite Technology"
|
647
|
+
DEFENSE_IT_SYSTEMS_INTEGRATION: :"Defense IT & Systems Integration"
|
648
|
+
SOFTWARE_B2_B: :"Software (B2B)"
|
649
|
+
SOFTWARE_B2_C: :"Software (B2C)"
|
650
|
+
CLOUD_INFRASTRUCTURE_DEV_OPS: :"Cloud Infrastructure & DevOps"
|
651
|
+
CYBERSECURITY: :Cybersecurity
|
652
|
+
ARTIFICIAL_INTELLIGENCE_MACHINE_LEARNING: :"Artificial Intelligence & Machine Learning"
|
653
|
+
DATA_INFRASTRUCTURE_ANALYTICS: :"Data Infrastructure & Analytics"
|
654
|
+
HARDWARE_SEMICONDUCTORS: :"Hardware & Semiconductors"
|
655
|
+
FINTECH_INFRASTRUCTURE: :"Fintech Infrastructure"
|
656
|
+
E_COMMERCE_MARKETPLACE_PLATFORMS: :"eCommerce & Marketplace Platforms"
|
657
|
+
DEVELOPER_TOOLS_APIS: :"Developer Tools & APIs"
|
658
|
+
WEB3_BLOCKCHAIN: :"Web3 & Blockchain"
|
659
|
+
XR_SPATIAL_COMPUTING: :"XR & Spatial Computing"
|
660
|
+
BANKING_LENDING: :"Banking & Lending"
|
661
|
+
INVESTMENT_MANAGEMENT_WEALTH_TECH: :"Investment Management & WealthTech"
|
662
|
+
INSURANCE_INSUR_TECH: :"Insurance & InsurTech"
|
663
|
+
PAYMENTS_MONEY_MOVEMENT: :"Payments & Money Movement"
|
664
|
+
ACCOUNTING_TAX_FINANCIAL_PLANNING_TOOLS: :"Accounting, Tax & Financial Planning Tools"
|
665
|
+
CAPITAL_MARKETS_TRADING_PLATFORMS: :"Capital Markets & Trading Platforms"
|
666
|
+
FINANCIAL_INFRASTRUCTURE_APIS: :"Financial Infrastructure & APIs"
|
667
|
+
CREDIT_SCORING_RISK_MANAGEMENT: :"Credit Scoring & Risk Management"
|
668
|
+
CRYPTOCURRENCY_DIGITAL_ASSETS: :"Cryptocurrency & Digital Assets"
|
669
|
+
BNPL_ALTERNATIVE_FINANCING: :"BNPL & Alternative Financing"
|
670
|
+
HEALTHCARE_PROVIDERS_SERVICES: :"Healthcare Providers & Services"
|
671
|
+
PHARMACEUTICALS_DRUG_DEVELOPMENT: :"Pharmaceuticals & Drug Development"
|
672
|
+
MEDICAL_DEVICES_DIAGNOSTICS: :"Medical Devices & Diagnostics"
|
673
|
+
BIOTECHNOLOGY_GENOMICS: :"Biotechnology & Genomics"
|
674
|
+
DIGITAL_HEALTH_TELEMEDICINE: :"Digital Health & Telemedicine"
|
675
|
+
HEALTH_INSURANCE_BENEFITS_TECH: :"Health Insurance & Benefits Tech"
|
676
|
+
CLINICAL_TRIALS_RESEARCH_PLATFORMS: :"Clinical Trials & Research Platforms"
|
677
|
+
MENTAL_HEALTH_WELLNESS: :"Mental Health & Wellness"
|
678
|
+
HEALTHCARE_IT_EHR_SYSTEMS: :"Healthcare IT & EHR Systems"
|
679
|
+
CONSUMER_HEALTH_WELLNESS_PRODUCTS: :"Consumer Health & Wellness Products"
|
680
|
+
ONLINE_MARKETPLACES: :"Online Marketplaces"
|
681
|
+
DIRECT_TO_CONSUMER_DTC_BRANDS: :"Direct-to-Consumer (DTC) Brands"
|
682
|
+
RETAIL_TECH_POINT_OF_SALE_SYSTEMS: :"Retail Tech & Point-of-Sale Systems"
|
683
|
+
OMNICHANNEL_IN_STORE_RETAIL: :"Omnichannel & In-Store Retail"
|
684
|
+
E_COMMERCE_ENABLEMENT_INFRASTRUCTURE: :"E-commerce Enablement & Infrastructure"
|
685
|
+
SUBSCRIPTION_MEMBERSHIP_COMMERCE: :"Subscription & Membership Commerce"
|
686
|
+
SOCIAL_COMMERCE_INFLUENCER_PLATFORMS: :"Social Commerce & Influencer Platforms"
|
687
|
+
FASHION_APPAREL_RETAIL: :"Fashion & Apparel Retail"
|
688
|
+
FOOD_BEVERAGE_GROCERY_E_COMMERCE: :"Food, Beverage & Grocery E-commerce"
|
689
|
+
STREAMING_PLATFORMS_VIDEO_MUSIC_AUDIO: :"Streaming Platforms (Video, Music, Audio)"
|
690
|
+
GAMING_INTERACTIVE_ENTERTAINMENT: :"Gaming & Interactive Entertainment"
|
691
|
+
CREATOR_ECONOMY_INFLUENCER_PLATFORMS: :"Creator Economy & Influencer Platforms"
|
692
|
+
ADVERTISING_ADTECH_MEDIA_BUYING: :"Advertising, Adtech & Media Buying"
|
693
|
+
FILM_TV_PRODUCTION_STUDIOS: :"Film, TV & Production Studios"
|
694
|
+
EVENTS_VENUES_LIVE_ENTERTAINMENT: :"Events, Venues & Live Entertainment"
|
695
|
+
VIRTUAL_WORLDS_METAVERSE_EXPERIENCES: :"Virtual Worlds & Metaverse Experiences"
|
696
|
+
K_12_EDUCATION_PLATFORMS_TOOLS: :"K-12 Education Platforms & Tools"
|
697
|
+
HIGHER_EDUCATION_UNIVERSITY_TECH: :"Higher Education & University Tech"
|
698
|
+
ONLINE_LEARNING_MOO_CS: :"Online Learning & MOOCs"
|
699
|
+
TEST_PREP_CERTIFICATION: :"Test Prep & Certification"
|
700
|
+
CORPORATE_TRAINING_UPSKILLING: :"Corporate Training & Upskilling"
|
701
|
+
TUTORING_SUPPLEMENTAL_LEARNING: :"Tutoring & Supplemental Learning"
|
702
|
+
EDUCATION_MANAGEMENT_SYSTEMS_LMS_SIS: :"Education Management Systems (LMS/SIS)"
|
703
|
+
LANGUAGE_LEARNING: :"Language Learning"
|
704
|
+
CREATOR_LED_COHORT_BASED_COURSES: :"Creator-Led & Cohort-Based Courses"
|
705
|
+
SPECIAL_EDUCATION_ACCESSIBILITY_TOOLS: :"Special Education & Accessibility Tools"
|
706
|
+
GOVERNMENT_TECHNOLOGY_DIGITAL_SERVICES: :"Government Technology & Digital Services"
|
707
|
+
CIVIC_ENGAGEMENT_POLICY_PLATFORMS: :"Civic Engagement & Policy Platforms"
|
708
|
+
INTERNATIONAL_DEVELOPMENT_HUMANITARIAN_AID: :"International Development & Humanitarian Aid"
|
709
|
+
PHILANTHROPY_GRANTMAKING: :"Philanthropy & Grantmaking"
|
710
|
+
NONPROFIT_OPERATIONS_FUNDRAISING_TOOLS: :"Nonprofit Operations & Fundraising Tools"
|
711
|
+
PUBLIC_HEALTH_SOCIAL_SERVICES: :"Public Health & Social Services"
|
712
|
+
EDUCATION_YOUTH_DEVELOPMENT_PROGRAMS: :"Education & Youth Development Programs"
|
713
|
+
ENVIRONMENTAL_CLIMATE_ACTION_ORGANIZATIONS: :"Environmental & Climate Action Organizations"
|
714
|
+
LEGAL_AID_SOCIAL_JUSTICE_ADVOCACY: :"Legal Aid & Social Justice Advocacy"
|
715
|
+
MUNICIPAL_INFRASTRUCTURE_SERVICES: :"Municipal & Infrastructure Services"
|
716
|
+
MANUFACTURING_INDUSTRIAL_AUTOMATION: :"Manufacturing & Industrial Automation"
|
717
|
+
ENERGY_PRODUCTION_OIL_GAS_NUCLEAR: :"Energy Production (Oil, Gas, Nuclear)"
|
718
|
+
RENEWABLE_ENERGY_CLEANTECH: :"Renewable Energy & Cleantech"
|
719
|
+
UTILITIES_GRID_INFRASTRUCTURE: :"Utilities & Grid Infrastructure"
|
720
|
+
INDUSTRIAL_IO_T_MONITORING_SYSTEMS: :"Industrial IoT & Monitoring Systems"
|
721
|
+
CONSTRUCTION_HEAVY_EQUIPMENT: :"Construction & Heavy Equipment"
|
722
|
+
MINING_NATURAL_RESOURCES: :"Mining & Natural Resources"
|
723
|
+
ENVIRONMENTAL_ENGINEERING_SUSTAINABILITY: :"Environmental Engineering & Sustainability"
|
724
|
+
ENERGY_STORAGE_BATTERY_TECHNOLOGY: :"Energy Storage & Battery Technology"
|
725
|
+
AUTOMOTIVE_OE_MS_VEHICLE_MANUFACTURING: :"Automotive OEMs & Vehicle Manufacturing"
|
726
|
+
ELECTRIC_VEHICLES_E_VS_CHARGING_INFRASTRUCTURE: :"Electric Vehicles (EVs) & Charging Infrastructure"
|
727
|
+
MOBILITY_AS_A_SERVICE_MAA_S: :"Mobility-as-a-Service (MaaS)"
|
728
|
+
FLEET_MANAGEMENT: :"Fleet Management"
|
729
|
+
PUBLIC_TRANSIT_URBAN_MOBILITY: :"Public Transit & Urban Mobility"
|
730
|
+
AUTONOMOUS_VEHICLES_ADAS: :"Autonomous Vehicles & ADAS"
|
731
|
+
AFTERMARKET_PARTS_SERVICES: :"Aftermarket Parts & Services"
|
732
|
+
TELEMATICS_VEHICLE_CONNECTIVITY: :"Telematics & Vehicle Connectivity"
|
733
|
+
AVIATION_AEROSPACE_TRANSPORT: :"Aviation & Aerospace Transport"
|
734
|
+
MARITIME_SHIPPING: :"Maritime Shipping"
|
735
|
+
FITNESS_WELLNESS: :"Fitness & Wellness"
|
736
|
+
BEAUTY_PERSONAL_CARE: :"Beauty & Personal Care"
|
737
|
+
HOME_LIVING: :"Home & Living"
|
738
|
+
DATING_RELATIONSHIPS: :"Dating & Relationships"
|
739
|
+
HOBBIES_CRAFTS_DIY: :"Hobbies, Crafts & DIY"
|
740
|
+
OUTDOOR_RECREATIONAL_GEAR: :"Outdoor & Recreational Gear"
|
741
|
+
EVENTS_EXPERIENCES_TICKETING_PLATFORMS: :"Events, Experiences & Ticketing Platforms"
|
742
|
+
DESIGNER_LUXURY_APPAREL: :"Designer & Luxury Apparel"
|
743
|
+
ACCESSORIES_JEWELRY_WATCHES: :"Accessories, Jewelry & Watches"
|
744
|
+
FOOTWEAR_LEATHER_GOODS: :"Footwear & Leather Goods"
|
745
|
+
BEAUTY_FRAGRANCE_SKINCARE: :"Beauty, Fragrance & Skincare"
|
746
|
+
FASHION_MARKETPLACES_RETAIL_PLATFORMS: :"Fashion Marketplaces & Retail Platforms"
|
747
|
+
SUSTAINABLE_ETHICAL_FASHION: :"Sustainable & Ethical Fashion"
|
748
|
+
RESALE_VINTAGE_CIRCULAR_FASHION: :"Resale, Vintage & Circular Fashion"
|
749
|
+
FASHION_TECH_VIRTUAL_TRY_ONS: :"Fashion Tech & Virtual Try-Ons"
|
750
|
+
STREETWEAR_EMERGING_LUXURY: :"Streetwear & Emerging Luxury"
|
751
|
+
COUTURE_MADE_TO_MEASURE: :"Couture & Made-to-Measure"
|
752
|
+
NEWS_PUBLISHING_JOURNALISM: :"News Publishing & Journalism"
|
753
|
+
DIGITAL_MEDIA_CONTENT_PLATFORMS: :"Digital Media & Content Platforms"
|
754
|
+
BROADCASTING_TV_RADIO: :"Broadcasting (TV & Radio)"
|
755
|
+
PODCASTING_AUDIO_MEDIA: :"Podcasting & Audio Media"
|
756
|
+
NEWS_AGGREGATORS_CURATION_TOOLS: :"News Aggregators & Curation Tools"
|
757
|
+
INDEPENDENT_CREATOR_LED_MEDIA: :"Independent & Creator-Led Media"
|
758
|
+
NEWSLETTERS_SUBSTACK_STYLE_PLATFORMS: :"Newsletters & Substack-Style Platforms"
|
759
|
+
POLITICAL_INVESTIGATIVE_MEDIA: :"Political & Investigative Media"
|
760
|
+
TRADE_NICHE_PUBLICATIONS: :"Trade & Niche Publications"
|
761
|
+
MEDIA_MONITORING_ANALYTICS: :"Media Monitoring & Analytics"
|
762
|
+
PROFESSIONAL_TEAMS_LEAGUES: :"Professional Teams & Leagues"
|
763
|
+
SPORTS_MEDIA_BROADCASTING: :"Sports Media & Broadcasting"
|
764
|
+
SPORTS_BETTING_FANTASY_SPORTS: :"Sports Betting & Fantasy Sports"
|
765
|
+
FITNESS_ATHLETIC_TRAINING_PLATFORMS: :"Fitness & Athletic Training Platforms"
|
766
|
+
SPORTSWEAR_EQUIPMENT: :"Sportswear & Equipment"
|
767
|
+
ESPORTS_COMPETITIVE_GAMING: :"Esports & Competitive Gaming"
|
768
|
+
SPORTS_VENUES_EVENT_MANAGEMENT: :"Sports Venues & Event Management"
|
769
|
+
ATHLETE_MANAGEMENT_TALENT_AGENCIES: :"Athlete Management & Talent Agencies"
|
770
|
+
SPORTS_TECH_PERFORMANCE_ANALYTICS: :"Sports Tech & Performance Analytics"
|
771
|
+
YOUTH_AMATEUR_COLLEGIATE_SPORTS: :"Youth, Amateur & Collegiate Sports"
|
772
|
+
REAL_ESTATE_MARKETPLACES: :"Real Estate Marketplaces"
|
773
|
+
PROPERTY_MANAGEMENT_SOFTWARE: :"Property Management Software"
|
774
|
+
RENTAL_PLATFORMS: :"Rental Platforms"
|
775
|
+
MORTGAGE_LENDING_TECH: :"Mortgage & Lending Tech"
|
776
|
+
REAL_ESTATE_INVESTMENT_PLATFORMS: :"Real Estate Investment Platforms"
|
777
|
+
LAW_FIRMS_LEGAL_SERVICES: :"Law Firms & Legal Services"
|
778
|
+
LEGAL_TECH_AUTOMATION: :"Legal Tech & Automation"
|
779
|
+
REGULATORY_COMPLIANCE: :"Regulatory Compliance"
|
780
|
+
E_DISCOVERY_LITIGATION_TOOLS: :"E-Discovery & Litigation Tools"
|
781
|
+
CONTRACT_MANAGEMENT: :"Contract Management"
|
782
|
+
GOVERNANCE_RISK_COMPLIANCE_GRC: :"Governance, Risk & Compliance (GRC)"
|
783
|
+
IP_TRADEMARK_MANAGEMENT: :"IP & Trademark Management"
|
784
|
+
LEGAL_RESEARCH_INTELLIGENCE: :"Legal Research & Intelligence"
|
785
|
+
COMPLIANCE_TRAINING_CERTIFICATION: :"Compliance Training & Certification"
|
786
|
+
WHISTLEBLOWER_ETHICS_REPORTING: :"Whistleblower & Ethics Reporting"
|
787
|
+
MOBILE_WIRELESS_NETWORKS_3_G_4_G_5_G: :"Mobile & Wireless Networks (3G/4G/5G)"
|
788
|
+
BROADBAND_FIBER_INTERNET: :"Broadband & Fiber Internet"
|
789
|
+
SATELLITE_SPACE_BASED_COMMUNICATIONS: :"Satellite & Space-Based Communications"
|
790
|
+
NETWORK_EQUIPMENT_INFRASTRUCTURE: :"Network Equipment & Infrastructure"
|
791
|
+
TELECOM_BILLING_OSS_BSS_SYSTEMS: :"Telecom Billing & OSS/BSS Systems"
|
792
|
+
VO_IP_UNIFIED_COMMUNICATIONS: :"VoIP & Unified Communications"
|
793
|
+
INTERNET_SERVICE_PROVIDERS_IS_PS: :"Internet Service Providers (ISPs)"
|
794
|
+
EDGE_COMPUTING_NETWORK_VIRTUALIZATION: :"Edge Computing & Network Virtualization"
|
795
|
+
IO_T_CONNECTIVITY_PLATFORMS: :"IoT Connectivity Platforms"
|
796
|
+
PRECISION_AGRICULTURE_AG_TECH: :"Precision Agriculture & AgTech"
|
797
|
+
CROP_LIVESTOCK_PRODUCTION: :"Crop & Livestock Production"
|
798
|
+
FOOD_BEVERAGE_MANUFACTURING_PROCESSING: :"Food & Beverage Manufacturing & Processing"
|
799
|
+
FOOD_DISTRIBUTION: :"Food Distribution"
|
800
|
+
RESTAURANTS_FOOD_SERVICE: :"Restaurants & Food Service"
|
801
|
+
AGRICULTURAL_INPUTS_EQUIPMENT: :"Agricultural Inputs & Equipment"
|
802
|
+
SUSTAINABLE_REGENERATIVE_AGRICULTURE: :"Sustainable & Regenerative Agriculture"
|
803
|
+
SEAFOOD_AQUACULTURE: :"Seafood & Aquaculture"
|
804
|
+
MANAGEMENT_CONSULTING: :"Management Consulting"
|
805
|
+
MARKETING_ADVERTISING_AGENCIES: :"Marketing & Advertising Agencies"
|
806
|
+
DESIGN_BRANDING_CREATIVE_STUDIOS: :"Design, Branding & Creative Studios"
|
807
|
+
IT_SERVICES_MANAGED_SERVICES: :"IT Services & Managed Services"
|
808
|
+
STAFFING_RECRUITING_TALENT: :"Staffing, Recruiting & Talent"
|
809
|
+
ACCOUNTING_TAX_FIRMS: :"Accounting & Tax Firms"
|
810
|
+
PUBLIC_RELATIONS_COMMUNICATIONS: :"Public Relations & Communications"
|
811
|
+
BUSINESS_PROCESS_OUTSOURCING_BPO: :"Business Process Outsourcing (BPO)"
|
812
|
+
PROFESSIONAL_TRAINING_COACHING: :"Professional Training & Coaching"
|
813
|
+
SPECIALTY_CHEMICALS: :"Specialty Chemicals"
|
814
|
+
COMMODITY_PETROCHEMICALS: :"Commodity & Petrochemicals"
|
815
|
+
POLYMERS_PLASTICS_RUBBER: :"Polymers, Plastics & Rubber"
|
816
|
+
COATINGS_ADHESIVES_SEALANTS: :"Coatings, Adhesives & Sealants"
|
817
|
+
INDUSTRIAL_GASES: :"Industrial Gases"
|
818
|
+
ADVANCED_MATERIALS_COMPOSITES: :"Advanced Materials & Composites"
|
819
|
+
BATTERY_MATERIALS_ENERGY_STORAGE: :"Battery Materials & Energy Storage"
|
820
|
+
ELECTRONIC_MATERIALS_SEMICONDUCTOR_CHEMICALS: :"Electronic Materials & Semiconductor Chemicals"
|
821
|
+
AGROCHEMICALS_FERTILIZERS: :"Agrochemicals & Fertilizers"
|
822
|
+
FREIGHT_TRANSPORTATION_TECH: :"Freight & Transportation Tech"
|
823
|
+
LAST_MILE_DELIVERY: :"Last-Mile Delivery"
|
824
|
+
WAREHOUSE_AUTOMATION: :"Warehouse Automation"
|
825
|
+
SUPPLY_CHAIN_VISIBILITY_PLATFORMS: :"Supply Chain Visibility Platforms"
|
826
|
+
LOGISTICS_MARKETPLACES: :"Logistics Marketplaces"
|
827
|
+
SHIPPING_FREIGHT_FORWARDING: :"Shipping & Freight Forwarding"
|
828
|
+
COLD_CHAIN_LOGISTICS: :"Cold Chain Logistics"
|
829
|
+
REVERSE_LOGISTICS_RETURNS: :"Reverse Logistics & Returns"
|
830
|
+
CROSS_BORDER_TRADE_TECH: :"Cross-Border Trade Tech"
|
831
|
+
TRANSPORTATION_MANAGEMENT_SYSTEMS_TMS: :"Transportation Management Systems (TMS)"
|
832
|
+
HOTELS_ACCOMMODATION: :"Hotels & Accommodation"
|
833
|
+
VACATION_RENTALS_SHORT_TERM_STAYS: :"Vacation Rentals & Short-Term Stays"
|
834
|
+
RESTAURANT_TECH_MANAGEMENT: :"Restaurant Tech & Management"
|
835
|
+
TRAVEL_BOOKING_PLATFORMS: :"Travel Booking Platforms"
|
836
|
+
TOURISM_EXPERIENCES_ACTIVITIES: :"Tourism Experiences & Activities"
|
837
|
+
CRUISE_LINES_MARINE_TOURISM: :"Cruise Lines & Marine Tourism"
|
838
|
+
HOSPITALITY_MANAGEMENT_SYSTEMS: :"Hospitality Management Systems"
|
839
|
+
EVENT_VENUE_MANAGEMENT: :"Event & Venue Management"
|
840
|
+
CORPORATE_TRAVEL_MANAGEMENT: :"Corporate Travel Management"
|
841
|
+
TRAVEL_INSURANCE_PROTECTION: :"Travel Insurance & Protection"
|
842
|
+
CONSTRUCTION_MANAGEMENT_SOFTWARE: :"Construction Management Software"
|
843
|
+
BIM_CAD_DESIGN_TOOLS: :"BIM/CAD & Design Tools"
|
844
|
+
CONSTRUCTION_MARKETPLACES: :"Construction Marketplaces"
|
845
|
+
EQUIPMENT_RENTAL_MANAGEMENT: :"Equipment Rental & Management"
|
846
|
+
BUILDING_MATERIALS_PROCUREMENT: :"Building Materials & Procurement"
|
847
|
+
CONSTRUCTION_WORKFORCE_MANAGEMENT: :"Construction Workforce Management"
|
848
|
+
PROJECT_ESTIMATION_BIDDING: :"Project Estimation & Bidding"
|
849
|
+
MODULAR_PREFAB_CONSTRUCTION: :"Modular & Prefab Construction"
|
850
|
+
CONSTRUCTION_SAFETY_COMPLIANCE: :"Construction Safety & Compliance"
|
851
|
+
SMART_BUILDING_TECHNOLOGY: :"Smart Building Technology"
|
852
|
+
FOOD_BEVERAGE_CPG: :"Food & Beverage CPG"
|
853
|
+
HOME_PERSONAL_CARE_CPG: :"Home & Personal Care CPG"
|
854
|
+
CPG_ANALYTICS_INSIGHTS: :"CPG Analytics & Insights"
|
855
|
+
DIRECT_TO_CONSUMER_CPG_BRANDS: :"Direct-to-Consumer CPG Brands"
|
856
|
+
CPG_SUPPLY_CHAIN_DISTRIBUTION: :"CPG Supply Chain & Distribution"
|
857
|
+
PRIVATE_LABEL_MANUFACTURING: :"Private Label Manufacturing"
|
858
|
+
CPG_RETAIL_INTELLIGENCE: :"CPG Retail Intelligence"
|
859
|
+
SUSTAINABLE_CPG_PACKAGING: :"Sustainable CPG & Packaging"
|
860
|
+
BEAUTY_COSMETICS_CPG: :"Beauty & Cosmetics CPG"
|
861
|
+
HEALTH_WELLNESS_CPG: :"Health & Wellness CPG"
|
862
|
+
|
863
|
+
def self?.values: -> ::Array[BrandDev::Models::BrandRetrieveResponse::Brand::Industries::Eic::subindustry]
|
864
|
+
end
|
865
|
+
end
|
866
|
+
end
|
867
|
+
|
310
868
|
type logo =
|
311
869
|
{
|
312
870
|
colors: ::Array[BrandDev::Models::BrandRetrieveResponse::Brand::Logo::Color],
|
data/sig/brand_dev/models.rbs
CHANGED
@@ -5,8 +5,6 @@ module BrandDev
|
|
5
5
|
|
6
6
|
class BrandPrefetchParams = BrandDev::Models::BrandPrefetchParams
|
7
7
|
|
8
|
-
class BrandRetrieveByTickerParams = BrandDev::Models::BrandRetrieveByTickerParams
|
9
|
-
|
10
8
|
class BrandRetrieveNaicsParams = BrandDev::Models::BrandRetrieveNaicsParams
|
11
9
|
|
12
10
|
class BrandRetrieveParams = BrandDev::Models::BrandRetrieveParams
|
@@ -2,9 +2,11 @@ module BrandDev
|
|
2
2
|
module Resources
|
3
3
|
class Brand
|
4
4
|
def retrieve: (
|
5
|
-
domain: String,
|
5
|
+
?domain: String,
|
6
6
|
?force_language: BrandDev::Models::BrandRetrieveParams::force_language,
|
7
7
|
?max_speed: bool,
|
8
|
+
?name: String,
|
9
|
+
?ticker: String,
|
8
10
|
?timeout_ms: Integer,
|
9
11
|
?request_options: BrandDev::request_opts
|
10
12
|
) -> BrandDev::Models::BrandRetrieveResponse
|
@@ -29,12 +31,6 @@ module BrandDev
|
|
29
31
|
?request_options: BrandDev::request_opts
|
30
32
|
) -> BrandDev::Models::BrandPrefetchResponse
|
31
33
|
|
32
|
-
def retrieve_by_ticker: (
|
33
|
-
ticker: String,
|
34
|
-
?timeout_ms: Integer,
|
35
|
-
?request_options: BrandDev::request_opts
|
36
|
-
) -> BrandDev::Models::BrandRetrieveByTickerResponse
|
37
|
-
|
38
34
|
def retrieve_naics: (
|
39
35
|
input: String,
|
40
36
|
?timeout_ms: Integer,
|