@sniipwebmaster/payment-methods-client-grpcweb-ts 24.12.5776 → 24.12.5793
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.
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as jspb from 'google-protobuf'
|
|
2
2
|
|
|
3
|
-
import * as google_api_annotations_pb from './google/api/annotations_pb';
|
|
4
|
-
import * as google_protobuf_empty_pb from 'google-protobuf/google/protobuf/empty_pb';
|
|
3
|
+
import * as google_api_annotations_pb from './google/api/annotations_pb'; // proto import: "google/api/annotations.proto"
|
|
4
|
+
import * as google_protobuf_empty_pb from 'google-protobuf/google/protobuf/empty_pb'; // proto import: "google/protobuf/empty.proto"
|
|
5
5
|
|
|
6
6
|
|
|
7
7
|
export class FileUploadRequest extends jspb.Message {
|
|
@@ -222,6 +222,24 @@ export namespace Activation {
|
|
|
222
222
|
}
|
|
223
223
|
}
|
|
224
224
|
|
|
225
|
+
export class WexCard extends jspb.Message {
|
|
226
|
+
getNickname(): string;
|
|
227
|
+
setNickname(value: string): WexCard;
|
|
228
|
+
|
|
229
|
+
serializeBinary(): Uint8Array;
|
|
230
|
+
toObject(includeInstance?: boolean): WexCard.AsObject;
|
|
231
|
+
static toObject(includeInstance: boolean, msg: WexCard): WexCard.AsObject;
|
|
232
|
+
static serializeBinaryToWriter(message: WexCard, writer: jspb.BinaryWriter): void;
|
|
233
|
+
static deserializeBinary(bytes: Uint8Array): WexCard;
|
|
234
|
+
static deserializeBinaryFromReader(message: WexCard, reader: jspb.BinaryReader): WexCard;
|
|
235
|
+
}
|
|
236
|
+
|
|
237
|
+
export namespace WexCard {
|
|
238
|
+
export type AsObject = {
|
|
239
|
+
nickname: string,
|
|
240
|
+
}
|
|
241
|
+
}
|
|
242
|
+
|
|
225
243
|
export class AddPaymentMethod extends jspb.Message {
|
|
226
244
|
getPaymenttype(): string;
|
|
227
245
|
setPaymenttype(value: string): AddPaymentMethod;
|
|
@@ -249,6 +267,11 @@ export class AddPaymentMethod extends jspb.Message {
|
|
|
249
267
|
hasGooglepay(): boolean;
|
|
250
268
|
clearGooglepay(): AddPaymentMethod;
|
|
251
269
|
|
|
270
|
+
getWexcard(): WexCard | undefined;
|
|
271
|
+
setWexcard(value?: WexCard): AddPaymentMethod;
|
|
272
|
+
hasWexcard(): boolean;
|
|
273
|
+
clearWexcard(): AddPaymentMethod;
|
|
274
|
+
|
|
252
275
|
serializeBinary(): Uint8Array;
|
|
253
276
|
toObject(includeInstance?: boolean): AddPaymentMethod.AsObject;
|
|
254
277
|
static toObject(includeInstance: boolean, msg: AddPaymentMethod): AddPaymentMethod.AsObject;
|
|
@@ -265,6 +288,7 @@ export namespace AddPaymentMethod {
|
|
|
265
288
|
accesstoken: string,
|
|
266
289
|
applepay?: ApplePay.AsObject,
|
|
267
290
|
googlepay?: GooglePay.AsObject,
|
|
291
|
+
wexcard?: WexCard.AsObject,
|
|
268
292
|
}
|
|
269
293
|
}
|
|
270
294
|
|
|
@@ -2112,6 +2136,11 @@ export class PaymentMethodUpdateRequest extends jspb.Message {
|
|
|
2112
2136
|
getAccesstoken(): string;
|
|
2113
2137
|
setAccesstoken(value: string): PaymentMethodUpdateRequest;
|
|
2114
2138
|
|
|
2139
|
+
getWexcard(): UpdateWexCard | undefined;
|
|
2140
|
+
setWexcard(value?: UpdateWexCard): PaymentMethodUpdateRequest;
|
|
2141
|
+
hasWexcard(): boolean;
|
|
2142
|
+
clearWexcard(): PaymentMethodUpdateRequest;
|
|
2143
|
+
|
|
2115
2144
|
serializeBinary(): Uint8Array;
|
|
2116
2145
|
toObject(includeInstance?: boolean): PaymentMethodUpdateRequest.AsObject;
|
|
2117
2146
|
static toObject(includeInstance: boolean, msg: PaymentMethodUpdateRequest): PaymentMethodUpdateRequest.AsObject;
|
|
@@ -2127,6 +2156,29 @@ export namespace PaymentMethodUpdateRequest {
|
|
|
2127
2156
|
creditcard?: UpdateCreditCard.AsObject,
|
|
2128
2157
|
bankaccount?: UpdateBankAccount.AsObject,
|
|
2129
2158
|
accesstoken: string,
|
|
2159
|
+
wexcard?: UpdateWexCard.AsObject,
|
|
2160
|
+
}
|
|
2161
|
+
}
|
|
2162
|
+
|
|
2163
|
+
export class UpdateWexCard extends jspb.Message {
|
|
2164
|
+
getNickname(): string;
|
|
2165
|
+
setNickname(value: string): UpdateWexCard;
|
|
2166
|
+
|
|
2167
|
+
getColourscheme(): number;
|
|
2168
|
+
setColourscheme(value: number): UpdateWexCard;
|
|
2169
|
+
|
|
2170
|
+
serializeBinary(): Uint8Array;
|
|
2171
|
+
toObject(includeInstance?: boolean): UpdateWexCard.AsObject;
|
|
2172
|
+
static toObject(includeInstance: boolean, msg: UpdateWexCard): UpdateWexCard.AsObject;
|
|
2173
|
+
static serializeBinaryToWriter(message: UpdateWexCard, writer: jspb.BinaryWriter): void;
|
|
2174
|
+
static deserializeBinary(bytes: Uint8Array): UpdateWexCard;
|
|
2175
|
+
static deserializeBinaryFromReader(message: UpdateWexCard, reader: jspb.BinaryReader): UpdateWexCard;
|
|
2176
|
+
}
|
|
2177
|
+
|
|
2178
|
+
export namespace UpdateWexCard {
|
|
2179
|
+
export type AsObject = {
|
|
2180
|
+
nickname: string,
|
|
2181
|
+
colourscheme: number,
|
|
2130
2182
|
}
|
|
2131
2183
|
}
|
|
2132
2184
|
|
|
@@ -2686,6 +2738,9 @@ export class WexCardDetail extends jspb.Message {
|
|
|
2686
2738
|
getCardname(): string;
|
|
2687
2739
|
setCardname(value: string): WexCardDetail;
|
|
2688
2740
|
|
|
2741
|
+
getNickname(): string;
|
|
2742
|
+
setNickname(value: string): WexCardDetail;
|
|
2743
|
+
|
|
2689
2744
|
serializeBinary(): Uint8Array;
|
|
2690
2745
|
toObject(includeInstance?: boolean): WexCardDetail.AsObject;
|
|
2691
2746
|
static toObject(includeInstance: boolean, msg: WexCardDetail): WexCardDetail.AsObject;
|
|
@@ -2703,6 +2758,7 @@ export namespace WexCardDetail {
|
|
|
2703
2758
|
cardvariant: string,
|
|
2704
2759
|
colourscheme?: ColourScheme.AsObject,
|
|
2705
2760
|
cardname: string,
|
|
2761
|
+
nickname: string,
|
|
2706
2762
|
}
|
|
2707
2763
|
}
|
|
2708
2764
|
|