@theholocron/cli 3.24.4 → 3.25.1

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.
@@ -558,16 +558,35 @@ interface Notifications extends ProviderIdentity {
558
558
  }
559
559
  interface Analytics extends ProviderIdentity {
560
560
  readonly key: "analytics";
561
+ /** Returns the env var names the app reads at runtime for this provider. */
561
562
  describe(): Promise<{
562
563
  provider: string;
563
- dsnEnvKey: string;
564
+ envKeys: string[];
565
+ }>;
566
+ whoami?(): Promise<{
567
+ org: string;
568
+ }>;
569
+ ensureProject?(name: string): Promise<{
570
+ token: string;
571
+ alreadyExists: boolean;
564
572
  }>;
565
573
  }
566
574
  interface Observability extends ProviderIdentity {
567
575
  readonly key: "observability";
576
+ /** Returns the env var names the app reads at runtime for this provider. */
568
577
  describe(): Promise<{
569
578
  provider: string;
570
- dsnEnvKey: string;
579
+ envKeys: string[];
580
+ }>;
581
+ whoami?(): Promise<{
582
+ org: string;
583
+ }>;
584
+ ensureProject?(input: {
585
+ name: string;
586
+ platform?: string;
587
+ }): Promise<{
588
+ dsn: string;
589
+ alreadyExists: boolean;
571
590
  }>;
572
591
  }
573
592
  interface CapabilityImpls {