files_sdk/admin/
mod.rs

1//! Administration and billing module
2//!
3//! This module contains handlers for site administration, history, and billing:
4//! - Site settings and usage
5//! - History and history exports
6//! - Action notification exports
7//! - Invoices and payments
8//! - DNS records and child site management
9//! - Holiday regions and styles
10
11pub mod action_notification_export_results;
12pub mod action_notification_exports;
13pub mod child_site_management_policies;
14pub mod dns_records;
15pub mod history;
16pub mod history_export_results;
17pub mod history_exports;
18pub mod holiday_regions;
19pub mod invoices;
20pub mod payments;
21pub mod site;
22pub mod styles;
23
24// Re-export handlers
25pub use action_notification_export_results::ActionNotificationExportResultHandler;
26pub use action_notification_exports::ActionNotificationExportHandler;
27pub use child_site_management_policies::ChildSiteManagementPolicyHandler;
28pub use dns_records::DnsRecordHandler;
29pub use history::HistoryHandler;
30pub use history_export_results::HistoryExportResultHandler2;
31pub use history_exports::HistoryExportHandler2;
32pub use holiday_regions::HolidayRegionHandler;
33pub use invoices::InvoiceHandler;
34pub use payments::PaymentHandler;
35pub use site::SiteHandler;
36pub use styles::StyleHandler;
37
38// Re-export entities
39pub use action_notification_export_results::ActionNotificationExportResultEntity;
40pub use action_notification_exports::ActionNotificationExportEntity;
41pub use child_site_management_policies::ChildSiteManagementPolicyEntity;
42pub use dns_records::DnsRecordEntity;
43pub use history::{HistoryExportEntity, HistoryExportResultEntity};
44pub use history_export_results::HistoryExportResultEntity2;
45pub use history_exports::HistoryExportEntity2;
46pub use holiday_regions::HolidayRegionEntity;
47pub use invoices::{AccountLineItemEntity, InvoiceLineItemEntity};
48pub use payments::{PaymentEntity, PaymentLineItemEntity};
49pub use site::{SiteEntity, SiteUsageEntity};
50pub use styles::StyleEntity;