use crate::snapshot_cache::{SnapshotEnvelope, SnapshotHeader};
use crate::sns::report::{
SnsProposalRow,
cache_storage::{SnsCacheHeaderMetadata, SnsCacheMetadata},
};
use serde::{Deserialize as SerdeDeserialize, Serialize};
pub(super) type SnsProposalsCache = SnapshotEnvelope<SnsCacheMetadata, SnsProposalsCacheRows>;
pub(super) const SNS_PROPOSALS_CACHE_FIELDS: &[&str] = &[
"schema_version",
"network",
"source_endpoint",
"fetched_at",
"fetched_by",
"domain",
"entity",
"collection",
"scope",
"sns_wasm_canister_id",
"id",
"name",
"root_canister_id",
"governance_canister_id",
"completeness",
"proposals",
];
pub(super) type SnsProposalsCacheHeader = SnapshotHeader<SnsCacheHeaderMetadata>;
#[derive(Clone, Debug, Eq, PartialEq, SerdeDeserialize, Serialize)]
pub(super) struct SnsProposalsCacheRows {
pub(super) proposals: Vec<SnsProposalRow>,
}
#[derive(Clone, Debug, Eq, PartialEq)]
pub(super) struct CompleteSnsProposals {
pub(super) proposals: Vec<SnsProposalRow>,
pub(super) page_count: u32,
pub(super) last_cursor: Option<String>,
}