greentic-types 0.5.2

Shared primitives for Greentic: TenantCtx, InvocationEnvelope, NodeError, ids.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
//! Storefront, catalog, subscription, and desired state shared models.

use alloc::collections::BTreeMap;
use alloc::string::String;
use alloc::vec::Vec;

#[cfg(feature = "schemars")]
use schemars::JsonSchema;
#[cfg(feature = "serde")]
use serde::{Deserialize, Serialize};
use serde_json::Value;

use crate::{
    ArtifactRef, BundleId, CollectionId, ComponentRef, DistributorRef, EnvironmentRef,
    MetadataRecordRef, PackId, PackRef, SemverReq, StoreFrontId, StorePlanId, StoreProductId,
    SubscriptionId, TenantCtx,
};

/// Visual theme tokens for a storefront.
#[derive(Clone, Debug, PartialEq)]
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
#[cfg_attr(feature = "schemars", derive(JsonSchema))]
pub struct Theme {
    /// Primary color hex code.
    pub primary_color: String,
    /// Secondary color hex code.
    pub secondary_color: String,
    /// Accent color hex code.
    pub accent_color: String,
    /// Background color hex code.
    pub background_color: String,
    /// Text color hex code.
    pub text_color: String,
    /// Primary font family.
    pub font_family: String,
    /// Optional logo URL.
    #[cfg_attr(
        feature = "serde",
        serde(default, skip_serializing_if = "Option::is_none")
    )]
    pub logo_url: Option<String>,
    /// Optional favicon URL.
    #[cfg_attr(
        feature = "serde",
        serde(default, skip_serializing_if = "Option::is_none")
    )]
    pub favicon_url: Option<String>,
    /// Optional hero image URL.
    #[cfg_attr(
        feature = "serde",
        serde(default, skip_serializing_if = "Option::is_none")
    )]
    pub hero_image_url: Option<String>,
    /// Optional hero title.
    #[cfg_attr(
        feature = "serde",
        serde(default, skip_serializing_if = "Option::is_none")
    )]
    pub hero_title: Option<String>,
    /// Optional hero subtitle.
    #[cfg_attr(
        feature = "serde",
        serde(default, skip_serializing_if = "Option::is_none")
    )]
    pub hero_subtitle: Option<String>,
    /// Optional card corner radius in pixels.
    #[cfg_attr(
        feature = "serde",
        serde(default, skip_serializing_if = "Option::is_none")
    )]
    pub card_radius: Option<u8>,
    /// Optional card elevation hint.
    #[cfg_attr(
        feature = "serde",
        serde(default, skip_serializing_if = "Option::is_none")
    )]
    pub card_elevation: Option<u8>,
    /// Optional button style token.
    #[cfg_attr(
        feature = "serde",
        serde(default, skip_serializing_if = "Option::is_none")
    )]
    pub button_style: Option<String>,
}

impl Default for Theme {
    fn default() -> Self {
        Self {
            primary_color: "#0f766e".into(),
            secondary_color: "#134e4a".into(),
            accent_color: "#10b981".into(),
            background_color: "#ffffff".into(),
            text_color: "#0f172a".into(),
            font_family: "Inter, sans-serif".into(),
            logo_url: None,
            favicon_url: None,
            hero_image_url: None,
            hero_title: None,
            hero_subtitle: None,
            card_radius: None,
            card_elevation: None,
            button_style: None,
        }
    }
}

/// Layout section kind for storefront composition.
#[derive(Clone, Debug, PartialEq, Eq, Hash)]
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
#[cfg_attr(feature = "serde", serde(rename_all = "snake_case"))]
#[cfg_attr(feature = "schemars", derive(JsonSchema))]
pub enum LayoutSectionKind {
    /// Hero section.
    Hero,
    /// Featured collection of products.
    FeaturedCollection,
    /// Grid of products.
    Grid,
    /// Call-to-action section.
    Cta,
    /// Custom section identified by name.
    Custom(String),
}

/// Layout section configuration.
#[derive(Clone, Debug, PartialEq)]
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
#[cfg_attr(feature = "schemars", derive(JsonSchema))]
pub struct LayoutSection {
    /// Stable section identifier.
    pub id: String,
    /// Section kind.
    pub kind: LayoutSectionKind,
    /// Optional collection backing the section.
    #[cfg_attr(
        feature = "serde",
        serde(default, skip_serializing_if = "Option::is_none")
    )]
    pub collection_id: Option<CollectionId>,
    /// Optional title.
    #[cfg_attr(
        feature = "serde",
        serde(default, skip_serializing_if = "Option::is_none")
    )]
    pub title: Option<String>,
    /// Optional subtitle.
    #[cfg_attr(
        feature = "serde",
        serde(default, skip_serializing_if = "Option::is_none")
    )]
    pub subtitle: Option<String>,
    /// Ordering hint for rendering.
    pub sort_order: i32,
    /// Free-form metadata for front-end rendering.
    #[cfg_attr(feature = "serde", serde(default))]
    pub metadata: BTreeMap<String, Value>,
}

/// Collection of products curated for a storefront.
#[derive(Clone, Debug, PartialEq)]
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
#[cfg_attr(feature = "schemars", derive(JsonSchema))]
pub struct Collection {
    /// Collection identifier.
    pub id: CollectionId,
    /// Storefront owning the collection.
    pub storefront_id: StoreFrontId,
    /// Display title.
    pub title: String,
    /// Products included in the collection.
    #[cfg_attr(
        feature = "serde",
        serde(default, skip_serializing_if = "Vec::is_empty")
    )]
    pub product_ids: Vec<StoreProductId>,
    /// Optional slug.
    #[cfg_attr(
        feature = "serde",
        serde(default, skip_serializing_if = "Option::is_none")
    )]
    pub slug: Option<String>,
    /// Optional description.
    #[cfg_attr(
        feature = "serde",
        serde(default, skip_serializing_if = "Option::is_none")
    )]
    pub description: Option<String>,
    /// Sort order hint.
    pub sort_order: i32,
    /// Additional metadata.
    #[cfg_attr(feature = "serde", serde(default))]
    pub metadata: BTreeMap<String, Value>,
}

/// Override applied to a product within a storefront.
#[derive(Clone, Debug, PartialEq)]
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
#[cfg_attr(feature = "schemars", derive(JsonSchema))]
pub struct ProductOverride {
    /// Storefront receiving the override.
    pub storefront_id: StoreFrontId,
    /// Product being overridden.
    pub product_id: StoreProductId,
    /// Optional display name override.
    #[cfg_attr(
        feature = "serde",
        serde(default, skip_serializing_if = "Option::is_none")
    )]
    pub display_name: Option<String>,
    /// Optional short description override.
    #[cfg_attr(
        feature = "serde",
        serde(default, skip_serializing_if = "Option::is_none")
    )]
    pub short_description: Option<String>,
    /// Badges to render on the product card.
    #[cfg_attr(
        feature = "serde",
        serde(default, skip_serializing_if = "Vec::is_empty")
    )]
    pub badges: Vec<String>,
    /// Additional metadata.
    #[cfg_attr(feature = "serde", serde(default))]
    pub metadata: BTreeMap<String, Value>,
}

/// Storefront configuration and content.
#[derive(Clone, Debug, PartialEq)]
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
#[cfg_attr(feature = "schemars", derive(JsonSchema))]
pub struct StoreFront {
    /// Storefront identifier.
    pub id: StoreFrontId,
    /// Slug used for routing.
    pub slug: String,
    /// Display name.
    pub name: String,
    /// Visual theme.
    #[cfg_attr(feature = "serde", serde(default))]
    pub theme: Theme,
    /// Layout sections composing the storefront.
    #[cfg_attr(
        feature = "serde",
        serde(default, skip_serializing_if = "Vec::is_empty")
    )]
    pub sections: Vec<LayoutSection>,
    /// Curated collections.
    #[cfg_attr(
        feature = "serde",
        serde(default, skip_serializing_if = "Vec::is_empty")
    )]
    pub collections: Vec<Collection>,
    /// Product overrides scoped to this storefront.
    #[cfg_attr(
        feature = "serde",
        serde(default, skip_serializing_if = "Vec::is_empty")
    )]
    pub overrides: Vec<ProductOverride>,
    /// Optional worker identifier used by messaging.
    #[cfg_attr(
        feature = "serde",
        serde(default, skip_serializing_if = "Option::is_none")
    )]
    pub worker_id: Option<String>,
    /// Additional metadata.
    #[cfg_attr(feature = "serde", serde(default))]
    pub metadata: BTreeMap<String, Value>,
}

/// Kinds of products exposed by the store catalog.
#[derive(Clone, Debug, PartialEq, Eq, Hash)]
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
#[cfg_attr(feature = "serde", serde(rename_all = "snake_case"))]
#[cfg_attr(feature = "schemars", derive(JsonSchema))]
pub enum StoreProductKind {
    /// Component offering.
    Component,
    /// Flow offering.
    Flow,
    /// Pack offering.
    Pack,
}

/// Strategy used to resolve versions.
#[derive(Clone, Debug, PartialEq, Eq, Hash)]
#[cfg_attr(feature = "schemars", derive(JsonSchema))]
pub enum VersionStrategy {
    /// Always track the latest version.
    Latest,
    /// Use a pinned semantic version requirement (legacy shape).
    Pinned {
        /// Version requirement (e.g. ^1.2).
        requirement: SemverReq,
    },
    /// Track a long-term support channel (legacy shape).
    Lts,
    /// Custom strategy identified by name (legacy shape).
    Custom(String),
    /// Always track the latest published version for this component.
    Fixed {
        /// Exact version string (e.g. "1.2.3").
        version: String,
    },
    /// A semver-style range (e.g. ">=1.2,<2.0").
    Range {
        /// Version range expression.
        range: String,
    },
    /// A named channel (e.g. "stable", "beta", "canary").
    Channel {
        /// Channel name.
        channel: String,
    },
    /// Forward-compatible escape hatch for unknown strategies.
    CustomTagged {
        /// Free-form value for the strategy.
        value: String,
    },
}

#[cfg(feature = "serde")]
impl Serialize for VersionStrategy {
    fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
    where
        S: serde::Serializer,
    {
        #[derive(Serialize)]
        #[serde(rename_all = "snake_case")]
        enum Legacy<'a> {
            Latest,
            Pinned { requirement: &'a SemverReq },
            Lts,
            Custom(&'a str),
        }

        #[derive(Serialize)]
        struct Tagged<'a> {
            #[serde(rename = "kind")]
            kind: &'static str,
            #[serde(skip_serializing_if = "Option::is_none")]
            version: Option<&'a String>,
            #[serde(skip_serializing_if = "Option::is_none")]
            range: Option<&'a String>,
            #[serde(skip_serializing_if = "Option::is_none")]
            channel: Option<&'a String>,
            #[serde(skip_serializing_if = "Option::is_none")]
            value: Option<&'a String>,
        }

        match self {
            VersionStrategy::Latest => Legacy::Latest.serialize(serializer),
            VersionStrategy::Pinned { requirement } => {
                Legacy::Pinned { requirement }.serialize(serializer)
            }
            VersionStrategy::Lts => Legacy::Lts.serialize(serializer),
            VersionStrategy::Custom(value) => Legacy::Custom(value).serialize(serializer),
            VersionStrategy::Fixed { version } => Tagged {
                kind: "fixed",
                version: Some(version),
                range: None,
                channel: None,
                value: None,
            }
            .serialize(serializer),
            VersionStrategy::Range { range } => Tagged {
                kind: "range",
                version: None,
                range: Some(range),
                channel: None,
                value: None,
            }
            .serialize(serializer),
            VersionStrategy::Channel { channel } => Tagged {
                kind: "channel",
                version: None,
                range: None,
                channel: Some(channel),
                value: None,
            }
            .serialize(serializer),
            VersionStrategy::CustomTagged { value } => Tagged {
                kind: "custom",
                version: None,
                range: None,
                channel: None,
                value: Some(value),
            }
            .serialize(serializer),
        }
    }
}

#[cfg(feature = "serde")]
impl<'de> Deserialize<'de> for VersionStrategy {
    fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
    where
        D: serde::Deserializer<'de>,
    {
        #[derive(Deserialize)]
        #[serde(rename_all = "snake_case")]
        enum Legacy {
            Latest,
            Pinned { requirement: SemverReq },
            Lts,
            Custom(String),
        }

        #[derive(Deserialize)]
        #[serde(tag = "kind", rename_all = "snake_case")]
        enum Tagged {
            Latest,
            Fixed { version: String },
            Range { range: String },
            Channel { channel: String },
            Custom { value: String },
        }

        #[derive(Deserialize)]
        #[serde(untagged)]
        enum Wrapper {
            Tagged(Tagged),
            Legacy(Legacy),
        }

        match Wrapper::deserialize(deserializer)? {
            Wrapper::Tagged(tagged) => match tagged {
                Tagged::Latest => Ok(VersionStrategy::Latest),
                Tagged::Fixed { version } => Ok(VersionStrategy::Fixed { version }),
                Tagged::Range { range } => Ok(VersionStrategy::Range { range }),
                Tagged::Channel { channel } => Ok(VersionStrategy::Channel { channel }),
                Tagged::Custom { value } => Ok(VersionStrategy::CustomTagged { value }),
            },
            Wrapper::Legacy(legacy) => match legacy {
                Legacy::Latest => Ok(VersionStrategy::Latest),
                Legacy::Pinned { requirement } => Ok(VersionStrategy::Pinned { requirement }),
                Legacy::Lts => Ok(VersionStrategy::Lts),
                Legacy::Custom(value) => Ok(VersionStrategy::Custom(value)),
            },
        }
    }
}

/// Map of capability group -> list of capability values.
pub type CapabilityMap = BTreeMap<String, Vec<String>>;

/// Catalog product describing a component, flow, or pack.
#[derive(Clone, Debug, PartialEq)]
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
#[cfg_attr(feature = "schemars", derive(JsonSchema))]
pub struct StoreProduct {
    /// Product identifier.
    pub id: StoreProductId,
    /// Product kind.
    pub kind: StoreProductKind,
    /// Display name.
    pub name: String,
    /// Slug for routing.
    pub slug: String,
    /// Description.
    pub description: String,
    /// Source repository reference.
    pub source_repo: crate::RepoRef,
    /// Optional component reference.
    #[cfg_attr(
        feature = "serde",
        serde(default, skip_serializing_if = "Option::is_none")
    )]
    pub component_ref: Option<ComponentRef>,
    /// Optional pack reference.
    #[cfg_attr(
        feature = "serde",
        serde(default, skip_serializing_if = "Option::is_none")
    )]
    pub pack_ref: Option<PackId>,
    /// Optional category label.
    #[cfg_attr(
        feature = "serde",
        serde(default, skip_serializing_if = "Option::is_none")
    )]
    pub category: Option<String>,
    /// Tags for filtering.
    #[cfg_attr(
        feature = "serde",
        serde(default, skip_serializing_if = "Vec::is_empty")
    )]
    pub tags: Vec<String>,
    /// Capabilities exposed by the product.
    #[cfg_attr(feature = "serde", serde(default))]
    pub capabilities: CapabilityMap,
    /// Version resolution strategy.
    pub version_strategy: VersionStrategy,
    /// Default plan identifier, if any.
    #[cfg_attr(
        feature = "serde",
        serde(default, skip_serializing_if = "Option::is_none")
    )]
    pub default_plan_id: Option<StorePlanId>,
    /// Convenience flag indicating the default plan is free.
    pub is_free: bool,
    /// Additional metadata.
    #[cfg_attr(feature = "serde", serde(default))]
    pub metadata: BTreeMap<String, Value>,
}

/// Pricing model for a plan.
#[derive(Clone, Debug, PartialEq, Eq, Hash)]
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
#[cfg_attr(feature = "serde", serde(rename_all = "snake_case"))]
#[cfg_attr(feature = "schemars", derive(JsonSchema))]
pub enum PriceModel {
    /// Free plan.
    Free,
    /// Flat recurring price.
    Flat {
        /// Amount in micro-units per period.
        amount_micro: u64,
        /// Billing period length in days.
        period_days: u16,
    },
    /// Metered pricing with included units.
    Metered {
        /// Included units per period.
        included_units: u64,
        /// Overage rate per additional unit (micro-units).
        overage_rate_micro: u64,
        /// Unit label (for example `build-minute`).
        unit_label: String,
    },
    /// Enterprise/custom pricing.
    Enterprise {
        /// Human-readable description.
        description: String,
    },
}

/// Plan limits used for entitlements.
#[derive(Clone, Debug, PartialEq, Eq, Default)]
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
#[cfg_attr(feature = "schemars", derive(JsonSchema))]
pub struct PlanLimits {
    /// Maximum environments allowed.
    #[cfg_attr(
        feature = "serde",
        serde(default, skip_serializing_if = "Option::is_none")
    )]
    pub max_environments: Option<u32>,
    /// Maximum subscriptions allowed.
    #[cfg_attr(
        feature = "serde",
        serde(default, skip_serializing_if = "Option::is_none")
    )]
    pub max_subscriptions: Option<u32>,
    /// Included units per period (semantic depends on product).
    #[cfg_attr(
        feature = "serde",
        serde(default, skip_serializing_if = "Option::is_none")
    )]
    pub monthly_units_included: Option<u64>,
    /// Additional metadata.
    #[cfg_attr(feature = "serde", serde(default))]
    pub metadata: BTreeMap<String, Value>,
}

/// Plan associated with a store product.
#[derive(Clone, Debug, PartialEq)]
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
#[cfg_attr(feature = "schemars", derive(JsonSchema))]
pub struct StorePlan {
    /// Plan identifier.
    pub id: StorePlanId,
    /// Plan name.
    pub name: String,
    /// Plan description.
    pub description: String,
    /// Pricing model.
    pub price_model: PriceModel,
    /// Plan limits.
    #[cfg_attr(feature = "serde", serde(default))]
    pub limits: PlanLimits,
    /// Tags for classification.
    #[cfg_attr(
        feature = "serde",
        serde(default, skip_serializing_if = "Vec::is_empty")
    )]
    pub tags: Vec<String>,
    /// Additional metadata.
    #[cfg_attr(feature = "serde", serde(default))]
    pub metadata: BTreeMap<String, Value>,
}

/// Subscription lifecycle status.
#[derive(Clone, Debug, PartialEq, Eq, Hash)]
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
#[cfg_attr(feature = "serde", serde(rename_all = "snake_case"))]
#[cfg_attr(feature = "schemars", derive(JsonSchema))]
pub enum SubscriptionStatus {
    /// Draft subscription (pending approval).
    Draft,
    /// Active subscription.
    Active,
    /// Paused subscription.
    Paused,
    /// Cancelled subscription.
    Cancelled,
    /// Subscription encountered an error.
    Error,
}

/// Subscription entry linking a tenant to a product and plan.
#[derive(Clone, Debug, PartialEq)]
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
#[cfg_attr(feature = "schemars", derive(JsonSchema))]
pub struct Subscription {
    /// Subscription identifier.
    pub id: SubscriptionId,
    /// Tenant context owning the subscription.
    pub tenant_ctx: TenantCtx,
    /// Product identifier.
    pub product_id: StoreProductId,
    /// Plan identifier.
    pub plan_id: StorePlanId,
    /// Optional target environment.
    #[cfg_attr(
        feature = "serde",
        serde(default, skip_serializing_if = "Option::is_none")
    )]
    pub environment_ref: Option<EnvironmentRef>,
    /// Optional distributor responsible for the environment.
    #[cfg_attr(
        feature = "serde",
        serde(default, skip_serializing_if = "Option::is_none")
    )]
    pub distributor_ref: Option<DistributorRef>,
    /// Current status.
    pub status: SubscriptionStatus,
    /// Additional metadata.
    #[cfg_attr(feature = "serde", serde(default))]
    pub metadata: BTreeMap<String, Value>,
}

/// Choice between component or pack reference.
#[derive(Clone, Debug, PartialEq, Eq, Hash)]
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
#[cfg_attr(feature = "serde", serde(rename_all = "snake_case"))]
#[cfg_attr(feature = "schemars", derive(JsonSchema))]
pub enum PackOrComponentRef {
    /// Component reference.
    Component(ComponentRef),
    /// Pack reference.
    Pack(PackId),
}

/// Selector describing whether a component or pack should be deployed.
#[derive(Clone, Debug, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
#[cfg_attr(feature = "serde", serde(rename_all = "snake_case"))]
#[cfg_attr(feature = "schemars", derive(JsonSchema))]
pub enum ArtifactSelector {
    /// Component reference.
    Component(ComponentRef),
    /// Pack reference.
    Pack(PackRef),
}

/// Desired subscription entry supplied to the distributor.
#[derive(Clone, Debug, PartialEq)]
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
#[cfg_attr(feature = "schemars", derive(JsonSchema))]
pub struct DesiredSubscriptionEntry {
    /// Target artifact selection.
    pub selector: ArtifactSelector,
    /// Version strategy to apply.
    pub version_strategy: VersionStrategy,
    /// Configuration overrides.
    #[cfg_attr(feature = "serde", serde(default))]
    pub config_overrides: BTreeMap<String, Value>,
    /// Policy tags for downstream enforcement.
    #[cfg_attr(
        feature = "serde",
        serde(default, skip_serializing_if = "Vec::is_empty")
    )]
    pub policy_tags: Vec<String>,
    /// Additional metadata.
    #[cfg_attr(feature = "serde", serde(default))]
    pub metadata: BTreeMap<String, Value>,
}

/// Desired state for an environment.
#[derive(Clone, Debug, PartialEq)]
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
#[cfg_attr(feature = "schemars", derive(JsonSchema))]
pub struct DesiredState {
    /// Tenant context owning the desired state.
    pub tenant: TenantCtx,
    /// Target environment reference.
    pub environment_ref: EnvironmentRef,
    /// Desired subscriptions.
    #[cfg_attr(
        feature = "serde",
        serde(default, skip_serializing_if = "Vec::is_empty")
    )]
    pub entries: Vec<DesiredSubscriptionEntry>,
    /// Desired state version.
    pub version: u64,
    /// Additional metadata.
    #[cfg_attr(feature = "serde", serde(default))]
    pub metadata: BTreeMap<String, Value>,
}

/// Connection kind for an environment.
#[derive(Clone, Debug, PartialEq, Eq, Hash)]
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
#[cfg_attr(feature = "serde", serde(rename_all = "snake_case"))]
#[cfg_attr(feature = "schemars", derive(JsonSchema))]
pub enum ConnectionKind {
    /// Online environment with direct connectivity.
    Online,
    /// Offline or air-gapped environment.
    Offline,
}

/// Environment registry entry.
#[derive(Clone, Debug, PartialEq)]
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
#[cfg_attr(feature = "schemars", derive(JsonSchema))]
pub struct Environment {
    /// Environment identifier.
    pub id: EnvironmentRef,
    /// Tenant context owning the environment.
    pub tenant: TenantCtx,
    /// Human-readable name.
    pub name: String,
    /// Labels for selection and grouping.
    #[cfg_attr(feature = "serde", serde(default))]
    pub labels: BTreeMap<String, String>,
    /// Distributor responsible for this environment.
    pub distributor_ref: DistributorRef,
    /// Connection kind.
    pub connection_kind: ConnectionKind,
    /// Additional metadata.
    #[cfg_attr(feature = "serde", serde(default))]
    pub metadata: BTreeMap<String, Value>,
}

impl Environment {
    /// Constructs a new environment with the required identifiers.
    pub fn new(
        id: EnvironmentRef,
        tenant: TenantCtx,
        distributor_ref: DistributorRef,
        connection_kind: ConnectionKind,
        name: impl Into<String>,
    ) -> Self {
        Self {
            id,
            tenant,
            name: name.into(),
            distributor_ref,
            connection_kind,
            labels: BTreeMap::new(),
            metadata: BTreeMap::new(),
        }
    }
}

/// Rollout lifecycle state for an environment.
#[derive(Clone, Debug, PartialEq, Eq, Hash)]
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
#[cfg_attr(feature = "serde", serde(rename_all = "snake_case"))]
#[cfg_attr(feature = "schemars", derive(JsonSchema))]
pub enum RolloutState {
    /// Rollout is pending scheduling or validation.
    Pending,
    /// Rollout plan generation is in progress.
    Planning,
    /// Rollout is actively executing.
    InProgress,
    /// Rollout completed successfully.
    Succeeded,
    /// Rollout failed.
    Failed,
    /// Rollout is blocked (for example policy or compliance).
    Blocked,
}

/// Status record for an environment rollout.
#[derive(Clone, Debug, PartialEq)]
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
#[cfg_attr(feature = "schemars", derive(JsonSchema))]
pub struct RolloutStatus {
    /// Target environment.
    pub environment_ref: EnvironmentRef,
    /// Desired state version associated with this rollout.
    #[cfg_attr(
        feature = "serde",
        serde(default, skip_serializing_if = "Option::is_none")
    )]
    pub desired_state_version: Option<u64>,
    /// Current rollout state.
    pub state: RolloutState,
    /// Optional bundle used for offline rollouts.
    #[cfg_attr(
        feature = "serde",
        serde(default, skip_serializing_if = "Option::is_none")
    )]
    pub bundle_id: Option<BundleId>,
    /// Optional human-readable message.
    #[cfg_attr(
        feature = "serde",
        serde(default, skip_serializing_if = "Option::is_none")
    )]
    pub message: Option<String>,
    /// Additional metadata.
    #[cfg_attr(feature = "serde", serde(default))]
    pub metadata: BTreeMap<String, Value>,
}

/// Bundle specification for offline or air-gapped deployments.
#[derive(Clone, Debug, PartialEq)]
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
#[cfg_attr(feature = "schemars", derive(JsonSchema))]
pub struct BundleSpec {
    /// Identifier of the distribution-bundle `.gtpack` (pack id).
    pub bundle_id: BundleId,
    /// Tenant context for the bundle.
    pub tenant: TenantCtx,
    /// Target environment.
    pub environment_ref: EnvironmentRef,
    /// Version of the desired state used to construct the bundle.
    pub desired_state_version: u64,
    /// Artifact references included in the bundle.
    #[cfg_attr(
        feature = "serde",
        serde(default, skip_serializing_if = "Vec::is_empty")
    )]
    pub artifact_refs: Vec<ArtifactRef>,
    /// Metadata record references (SBOMs, attestations, signatures).
    #[cfg_attr(
        feature = "serde",
        serde(default, skip_serializing_if = "Vec::is_empty")
    )]
    pub metadata_refs: Vec<MetadataRecordRef>,
    /// Additional metadata.
    #[cfg_attr(feature = "serde", serde(default))]
    pub additional_metadata: BTreeMap<String, Value>,
}

/// Export specification used to request a bundle from a desired state.
#[derive(Clone, Debug, PartialEq)]
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
#[cfg_attr(feature = "schemars", derive(JsonSchema))]
pub struct DesiredStateExportSpec {
    /// Tenant context owning the desired state.
    pub tenant: TenantCtx,
    /// Target environment.
    pub environment_ref: EnvironmentRef,
    /// Desired state version to export.
    pub desired_state_version: u64,
    /// Whether to include artifacts in the bundle.
    #[cfg_attr(feature = "serde", serde(default))]
    pub include_artifacts: bool,
    /// Whether to include metadata (SBOMs, attestations).
    #[cfg_attr(feature = "serde", serde(default))]
    pub include_metadata: bool,
    /// Additional metadata.
    #[cfg_attr(feature = "serde", serde(default))]
    pub metadata: BTreeMap<String, Value>,
}