@@ -17,7 +17,7 @@ import * as usage_v1_usage_pb from "../../usage/v1/usage_pb";
17
17
18
18
interface IBillingServiceService extends grpc . ServiceDefinition < grpc . UntypedServiceImplementation > {
19
19
updateInvoices : IBillingServiceService_IUpdateInvoices ;
20
- getLatestInvoice : IBillingServiceService_IGetLatestInvoice ;
20
+ getUpcomingInvoice : IBillingServiceService_IGetUpcomingInvoice ;
21
21
finalizeInvoice : IBillingServiceService_IFinalizeInvoice ;
22
22
setBilledSession : IBillingServiceService_ISetBilledSession ;
23
23
}
@@ -31,14 +31,14 @@ interface IBillingServiceService_IUpdateInvoices extends grpc.MethodDefinition<u
31
31
responseSerialize : grpc . serialize < usage_v1_billing_pb . UpdateInvoicesResponse > ;
32
32
responseDeserialize : grpc . deserialize < usage_v1_billing_pb . UpdateInvoicesResponse > ;
33
33
}
34
- interface IBillingServiceService_IGetLatestInvoice extends grpc . MethodDefinition < usage_v1_billing_pb . GetLatestInvoiceRequest , usage_v1_billing_pb . GetLatestInvoiceResponse > {
35
- path : "/usage.v1.BillingService/GetLatestInvoice " ;
34
+ interface IBillingServiceService_IGetUpcomingInvoice extends grpc . MethodDefinition < usage_v1_billing_pb . GetUpcomingInvoiceRequest , usage_v1_billing_pb . GetUpcomingInvoiceResponse > {
35
+ path : "/usage.v1.BillingService/GetUpcomingInvoice " ;
36
36
requestStream : false ;
37
37
responseStream : false ;
38
- requestSerialize : grpc . serialize < usage_v1_billing_pb . GetLatestInvoiceRequest > ;
39
- requestDeserialize : grpc . deserialize < usage_v1_billing_pb . GetLatestInvoiceRequest > ;
40
- responseSerialize : grpc . serialize < usage_v1_billing_pb . GetLatestInvoiceResponse > ;
41
- responseDeserialize : grpc . deserialize < usage_v1_billing_pb . GetLatestInvoiceResponse > ;
38
+ requestSerialize : grpc . serialize < usage_v1_billing_pb . GetUpcomingInvoiceRequest > ;
39
+ requestDeserialize : grpc . deserialize < usage_v1_billing_pb . GetUpcomingInvoiceRequest > ;
40
+ responseSerialize : grpc . serialize < usage_v1_billing_pb . GetUpcomingInvoiceResponse > ;
41
+ responseDeserialize : grpc . deserialize < usage_v1_billing_pb . GetUpcomingInvoiceResponse > ;
42
42
}
43
43
interface IBillingServiceService_IFinalizeInvoice extends grpc . MethodDefinition < usage_v1_billing_pb . FinalizeInvoiceRequest , usage_v1_billing_pb . FinalizeInvoiceResponse > {
44
44
path : "/usage.v1.BillingService/FinalizeInvoice" ;
@@ -63,7 +63,7 @@ export const BillingServiceService: IBillingServiceService;
63
63
64
64
export interface IBillingServiceServer extends grpc . UntypedServiceImplementation {
65
65
updateInvoices : grpc . handleUnaryCall < usage_v1_billing_pb . UpdateInvoicesRequest , usage_v1_billing_pb . UpdateInvoicesResponse > ;
66
- getLatestInvoice : grpc . handleUnaryCall < usage_v1_billing_pb . GetLatestInvoiceRequest , usage_v1_billing_pb . GetLatestInvoiceResponse > ;
66
+ getUpcomingInvoice : grpc . handleUnaryCall < usage_v1_billing_pb . GetUpcomingInvoiceRequest , usage_v1_billing_pb . GetUpcomingInvoiceResponse > ;
67
67
finalizeInvoice : grpc . handleUnaryCall < usage_v1_billing_pb . FinalizeInvoiceRequest , usage_v1_billing_pb . FinalizeInvoiceResponse > ;
68
68
setBilledSession : grpc . handleUnaryCall < usage_v1_billing_pb . SetBilledSessionRequest , usage_v1_billing_pb . SetBilledSessionResponse > ;
69
69
}
@@ -72,9 +72,9 @@ export interface IBillingServiceClient {
72
72
updateInvoices ( request : usage_v1_billing_pb . UpdateInvoicesRequest , callback : ( error : grpc . ServiceError | null , response : usage_v1_billing_pb . UpdateInvoicesResponse ) => void ) : grpc . ClientUnaryCall ;
73
73
updateInvoices ( request : usage_v1_billing_pb . UpdateInvoicesRequest , metadata : grpc . Metadata , callback : ( error : grpc . ServiceError | null , response : usage_v1_billing_pb . UpdateInvoicesResponse ) => void ) : grpc . ClientUnaryCall ;
74
74
updateInvoices ( request : usage_v1_billing_pb . UpdateInvoicesRequest , metadata : grpc . Metadata , options : Partial < grpc . CallOptions > , callback : ( error : grpc . ServiceError | null , response : usage_v1_billing_pb . UpdateInvoicesResponse ) => void ) : grpc . ClientUnaryCall ;
75
- getLatestInvoice ( request : usage_v1_billing_pb . GetLatestInvoiceRequest , callback : ( error : grpc . ServiceError | null , response : usage_v1_billing_pb . GetLatestInvoiceResponse ) => void ) : grpc . ClientUnaryCall ;
76
- getLatestInvoice ( request : usage_v1_billing_pb . GetLatestInvoiceRequest , metadata : grpc . Metadata , callback : ( error : grpc . ServiceError | null , response : usage_v1_billing_pb . GetLatestInvoiceResponse ) => void ) : grpc . ClientUnaryCall ;
77
- getLatestInvoice ( request : usage_v1_billing_pb . GetLatestInvoiceRequest , metadata : grpc . Metadata , options : Partial < grpc . CallOptions > , callback : ( error : grpc . ServiceError | null , response : usage_v1_billing_pb . GetLatestInvoiceResponse ) => void ) : grpc . ClientUnaryCall ;
75
+ getUpcomingInvoice ( request : usage_v1_billing_pb . GetUpcomingInvoiceRequest , callback : ( error : grpc . ServiceError | null , response : usage_v1_billing_pb . GetUpcomingInvoiceResponse ) => void ) : grpc . ClientUnaryCall ;
76
+ getUpcomingInvoice ( request : usage_v1_billing_pb . GetUpcomingInvoiceRequest , metadata : grpc . Metadata , callback : ( error : grpc . ServiceError | null , response : usage_v1_billing_pb . GetUpcomingInvoiceResponse ) => void ) : grpc . ClientUnaryCall ;
77
+ getUpcomingInvoice ( request : usage_v1_billing_pb . GetUpcomingInvoiceRequest , metadata : grpc . Metadata , options : Partial < grpc . CallOptions > , callback : ( error : grpc . ServiceError | null , response : usage_v1_billing_pb . GetUpcomingInvoiceResponse ) => void ) : grpc . ClientUnaryCall ;
78
78
finalizeInvoice ( request : usage_v1_billing_pb . FinalizeInvoiceRequest , callback : ( error : grpc . ServiceError | null , response : usage_v1_billing_pb . FinalizeInvoiceResponse ) => void ) : grpc . ClientUnaryCall ;
79
79
finalizeInvoice ( request : usage_v1_billing_pb . FinalizeInvoiceRequest , metadata : grpc . Metadata , callback : ( error : grpc . ServiceError | null , response : usage_v1_billing_pb . FinalizeInvoiceResponse ) => void ) : grpc . ClientUnaryCall ;
80
80
finalizeInvoice ( request : usage_v1_billing_pb . FinalizeInvoiceRequest , metadata : grpc . Metadata , options : Partial < grpc . CallOptions > , callback : ( error : grpc . ServiceError | null , response : usage_v1_billing_pb . FinalizeInvoiceResponse ) => void ) : grpc . ClientUnaryCall ;
@@ -88,9 +88,9 @@ export class BillingServiceClient extends grpc.Client implements IBillingService
88
88
public updateInvoices ( request : usage_v1_billing_pb . UpdateInvoicesRequest , callback : ( error : grpc . ServiceError | null , response : usage_v1_billing_pb . UpdateInvoicesResponse ) => void ) : grpc . ClientUnaryCall ;
89
89
public updateInvoices ( request : usage_v1_billing_pb . UpdateInvoicesRequest , metadata : grpc . Metadata , callback : ( error : grpc . ServiceError | null , response : usage_v1_billing_pb . UpdateInvoicesResponse ) => void ) : grpc . ClientUnaryCall ;
90
90
public updateInvoices ( request : usage_v1_billing_pb . UpdateInvoicesRequest , metadata : grpc . Metadata , options : Partial < grpc . CallOptions > , callback : ( error : grpc . ServiceError | null , response : usage_v1_billing_pb . UpdateInvoicesResponse ) => void ) : grpc . ClientUnaryCall ;
91
- public getLatestInvoice ( request : usage_v1_billing_pb . GetLatestInvoiceRequest , callback : ( error : grpc . ServiceError | null , response : usage_v1_billing_pb . GetLatestInvoiceResponse ) => void ) : grpc . ClientUnaryCall ;
92
- public getLatestInvoice ( request : usage_v1_billing_pb . GetLatestInvoiceRequest , metadata : grpc . Metadata , callback : ( error : grpc . ServiceError | null , response : usage_v1_billing_pb . GetLatestInvoiceResponse ) => void ) : grpc . ClientUnaryCall ;
93
- public getLatestInvoice ( request : usage_v1_billing_pb . GetLatestInvoiceRequest , metadata : grpc . Metadata , options : Partial < grpc . CallOptions > , callback : ( error : grpc . ServiceError | null , response : usage_v1_billing_pb . GetLatestInvoiceResponse ) => void ) : grpc . ClientUnaryCall ;
91
+ public getUpcomingInvoice ( request : usage_v1_billing_pb . GetUpcomingInvoiceRequest , callback : ( error : grpc . ServiceError | null , response : usage_v1_billing_pb . GetUpcomingInvoiceResponse ) => void ) : grpc . ClientUnaryCall ;
92
+ public getUpcomingInvoice ( request : usage_v1_billing_pb . GetUpcomingInvoiceRequest , metadata : grpc . Metadata , callback : ( error : grpc . ServiceError | null , response : usage_v1_billing_pb . GetUpcomingInvoiceResponse ) => void ) : grpc . ClientUnaryCall ;
93
+ public getUpcomingInvoice ( request : usage_v1_billing_pb . GetUpcomingInvoiceRequest , metadata : grpc . Metadata , options : Partial < grpc . CallOptions > , callback : ( error : grpc . ServiceError | null , response : usage_v1_billing_pb . GetUpcomingInvoiceResponse ) => void ) : grpc . ClientUnaryCall ;
94
94
public finalizeInvoice ( request : usage_v1_billing_pb . FinalizeInvoiceRequest , callback : ( error : grpc . ServiceError | null , response : usage_v1_billing_pb . FinalizeInvoiceResponse ) => void ) : grpc . ClientUnaryCall ;
95
95
public finalizeInvoice ( request : usage_v1_billing_pb . FinalizeInvoiceRequest , metadata : grpc . Metadata , callback : ( error : grpc . ServiceError | null , response : usage_v1_billing_pb . FinalizeInvoiceResponse ) => void ) : grpc . ClientUnaryCall ;
96
96
public finalizeInvoice ( request : usage_v1_billing_pb . FinalizeInvoiceRequest , metadata : grpc . Metadata , options : Partial < grpc . CallOptions > , callback : ( error : grpc . ServiceError | null , response : usage_v1_billing_pb . FinalizeInvoiceResponse ) => void ) : grpc . ClientUnaryCall ;
0 commit comments