commissionsight 0.1.0__py3-none-any.whl

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.
@@ -0,0 +1,108 @@
1
+ """CommissionSight — lightweight, zero-dependency Python client for the CommissionSight API.
2
+
3
+ >>> from commissionsight import CommissionSightClient
4
+ >>> cs = CommissionSightClient("https://api.commissionsight.com/v1", token="...")
5
+ >>> carriers = cs.list_carriers()
6
+ """
7
+
8
+ from __future__ import annotations
9
+
10
+ from .client import CommissionSightClient, Transport, query
11
+ from .errors import ApiError
12
+ from .types import (
13
+ AdminAccountBilling,
14
+ AdminAccountFile,
15
+ AdminAccountJob,
16
+ AdminAccountOverview,
17
+ AdminAccountUser,
18
+ AdminAlert,
19
+ AdminCronRun,
20
+ AdminCronTask,
21
+ AdminJobDetail,
22
+ AdminLogEvent,
23
+ AdminLogs,
24
+ AdminMetrics,
25
+ AdminProvisionResult,
26
+ AdminRevenueSummary,
27
+ AdminSystemActivity,
28
+ AdminUser,
29
+ AttritionPoint,
30
+ AuditEvent,
31
+ BillingDetails,
32
+ BillingPreview,
33
+ BillingProfile,
34
+ CarrierConfigEntry,
35
+ ChargebackRow,
36
+ ComparisonRow,
37
+ DataQualityReport,
38
+ DataQualitySignal,
39
+ ExpectedCommissionRate,
40
+ FileSummary,
41
+ Flag,
42
+ InferredConfig,
43
+ JobSummary,
44
+ Journey,
45
+ JourneyDelta,
46
+ JourneyPeriod,
47
+ JourneyPolicy,
48
+ Page,
49
+ Pagination,
50
+ ResultRow,
51
+ StabilityLevel,
52
+ Status,
53
+ TeamMember,
54
+ Webhook,
55
+ )
56
+
57
+ __version__ = "0.1.0"
58
+
59
+ __all__ = [
60
+ "CommissionSightClient",
61
+ "ApiError",
62
+ "Transport",
63
+ "query",
64
+ "__version__",
65
+ # types
66
+ "Status",
67
+ "Flag",
68
+ "StabilityLevel",
69
+ "Page",
70
+ "Pagination",
71
+ "ChargebackRow",
72
+ "JobSummary",
73
+ "FileSummary",
74
+ "ResultRow",
75
+ "ComparisonRow",
76
+ "Journey",
77
+ "JourneyPeriod",
78
+ "JourneyPolicy",
79
+ "JourneyDelta",
80
+ "TeamMember",
81
+ "AuditEvent",
82
+ "BillingDetails",
83
+ "BillingProfile",
84
+ "BillingPreview",
85
+ "ExpectedCommissionRate",
86
+ "Webhook",
87
+ "AttritionPoint",
88
+ "DataQualityReport",
89
+ "DataQualitySignal",
90
+ "InferredConfig",
91
+ "CarrierConfigEntry",
92
+ "AdminMetrics",
93
+ "AdminJobDetail",
94
+ "AdminLogEvent",
95
+ "AdminAlert",
96
+ "AdminLogs",
97
+ "AdminAccountOverview",
98
+ "AdminAccountFile",
99
+ "AdminAccountJob",
100
+ "AdminAccountUser",
101
+ "AdminCronRun",
102
+ "AdminCronTask",
103
+ "AdminSystemActivity",
104
+ "AdminRevenueSummary",
105
+ "AdminProvisionResult",
106
+ "AdminAccountBilling",
107
+ "AdminUser",
108
+ ]