@rodrigobeber/patoai-dtos 4.6.80 → 4.6.82
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.
|
@@ -84,3 +84,24 @@ export interface BillingCreditConsumedDto {
|
|
|
84
84
|
export interface BillingGetBalanceRequestDto {
|
|
85
85
|
idCrew: number;
|
|
86
86
|
}
|
|
87
|
+
export interface AdminBillingBatchRequestDto {
|
|
88
|
+
idCrews: number[];
|
|
89
|
+
}
|
|
90
|
+
export interface AdminCrewBillingInfoDto {
|
|
91
|
+
idCrew: number;
|
|
92
|
+
planCredits: number;
|
|
93
|
+
extraCredits: number;
|
|
94
|
+
demoCredits: number;
|
|
95
|
+
totalCredits: number;
|
|
96
|
+
periodStart: string | null;
|
|
97
|
+
periodEnd: string | null;
|
|
98
|
+
planName: string | null;
|
|
99
|
+
planSlug: string | null;
|
|
100
|
+
subscriptionStatus: string;
|
|
101
|
+
graceDeadline: string | null;
|
|
102
|
+
price: number | null;
|
|
103
|
+
includedConversations: number | null;
|
|
104
|
+
}
|
|
105
|
+
export interface AdminBillingBatchResponseDto {
|
|
106
|
+
items: AdminCrewBillingInfoDto[];
|
|
107
|
+
}
|
|
@@ -95,6 +95,10 @@ export interface CheckoutResponseDto {
|
|
|
95
95
|
export interface AcceptTermsRequestDto {
|
|
96
96
|
idCrew: number;
|
|
97
97
|
version: string;
|
|
98
|
+
name?: string;
|
|
99
|
+
cpfCnpj?: string;
|
|
100
|
+
email?: string;
|
|
101
|
+
phone?: string;
|
|
98
102
|
}
|
|
99
103
|
export interface TermsStatusDto {
|
|
100
104
|
accepted: boolean;
|
|
@@ -119,3 +123,24 @@ export interface ContractStatusDto {
|
|
|
119
123
|
sentAt?: string;
|
|
120
124
|
signedAt?: string;
|
|
121
125
|
}
|
|
126
|
+
export interface AdminCrewPanelDto {
|
|
127
|
+
idCrew: number;
|
|
128
|
+
name: string;
|
|
129
|
+
active: boolean;
|
|
130
|
+
createdAt: string;
|
|
131
|
+
onlineMode: string;
|
|
132
|
+
billing: boolean;
|
|
133
|
+
planName: string | null;
|
|
134
|
+
subscriptionStatus: string | null;
|
|
135
|
+
planCredits: number | null;
|
|
136
|
+
extraCredits: number | null;
|
|
137
|
+
demoCredits: number | null;
|
|
138
|
+
totalCredits: number | null;
|
|
139
|
+
periodStart: string | null;
|
|
140
|
+
periodEnd: string | null;
|
|
141
|
+
graceDeadline: string | null;
|
|
142
|
+
price: number | null;
|
|
143
|
+
includedConversations: number | null;
|
|
144
|
+
totalThreads: number;
|
|
145
|
+
recentThreads: number;
|
|
146
|
+
}
|