-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpayments.ts
263 lines (205 loc) · 5.95 KB
/
payments.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
import * as Core from '../../core';
import { APIResource } from '../../resource';
import * as PaymentsAPI from './payments';
export class Payments extends APIResource {
/**
* Initialize a Bolt payment token that will be used to reference this payment to
* Bolt when it is updated or finalized for guest shoppers.
*/
guestPaymentsInitialize(
params: PaymentGuestPaymentsInitializeParams,
options?: Core.RequestOptions,
): Core.APIPromise<PaymentGuestPaymentsInitializeResponse> {
const { 'X-Publishable-Key': xPublishableKey, ...body } = params;
return this._client.post('/guest/payments', {
body,
...options,
headers: { 'X-Publishable-Key': xPublishableKey, ...options?.headers },
});
}
}
export interface PaymentGuestPaymentsInitializeResponse {
id?: string;
action?: PaymentGuestPaymentsInitializeResponse.Action;
status?: 'awaiting_user_confirmation' | 'payment_ready' | 'update_payment_method' | 'success';
}
export namespace PaymentGuestPaymentsInitializeResponse {
export interface Action {
method?: 'GET' | 'POST';
type?: 'redirect' | 'finalize';
url?: string;
}
}
export interface PaymentGuestPaymentsInitializeParams {
/**
* Body param:
*/
cart: PaymentGuestPaymentsInitializeParams.Cart;
/**
* Body param:
*/
payment_method: PaymentGuestPaymentsInitializeParams.PaymentMethod;
/**
* Header param: The publicly viewable identifier used to identify a merchant
* division.
*/
'X-Publishable-Key': string;
}
export namespace PaymentGuestPaymentsInitializeParams {
export interface Cart {
amounts: Cart.Amounts;
/**
* This value is used by Bolt as an external reference to a given order. This
* reference must be unique per successful transaction.
*/
order_reference: string;
discounts?: Array<Cart.Discount>;
/**
* This field corresponds to the merchant's order reference associated with this
* Bolt transaction.
*/
display_id?: string;
items?: Array<Cart.Item>;
/**
* Used optionally to pass additional information like order numbers or other IDs
* as needed.
*/
order_description?: string;
shipments?: Array<Cart.Shipment>;
}
export namespace Cart {
export interface Amounts {
currency: string;
/**
* The total amount, in cents, including its items and taxes (if applicable).
*/
total: number;
/**
* The total tax amount, in cents for all of the items associated with the cart.
*/
tax?: number;
}
export interface Discount {
amounts: Discount.Amounts;
/**
* Discount code.
*/
code?: string;
/**
* Used to provide a link to additional details, such as a landing page, associated
* with the discount offering.
*/
details_url?: string;
}
export namespace Discount {
export interface Amounts {
currency: string;
/**
* The total amount, in cents, including its items and taxes (if applicable).
*/
total: number;
/**
* The total tax amount, in cents for all of the items associated with the cart.
*/
tax?: number;
}
}
export interface Item {
/**
* The name of a given item.
*/
name: string;
/**
* The number of units that comprise this cart item.
*/
quantity: number;
/**
* This value is used by Bolt as an external reference to a given item.
*/
reference: string;
/**
* The total amount, in cents, of the item including its taxes if applicable.
*/
total_amount: number;
/**
* The price of one unit of the item; for example, the price of one pack of socks.
*/
unit_price: number;
/**
* A human-readable description of this cart item.
*/
description?: string;
/**
* Used to provide a link to the image associated with the item.
*/
image_url?: string;
}
export interface Shipment {
/**
* The Address object is used for shipping, and physical store address use cases.
*/
address?: Shipment.AddressReferenceID | Shipment.AddressReferenceExplicit;
/**
* The name of the carrier selected.
*/
carrier?: string;
cost?: Shipment.Cost;
}
export namespace Shipment {
export interface AddressReferenceID {
/**
* The address's ID
*/
id: string;
/**
* The type of address reference
*/
'.tag': 'id';
}
export interface AddressReferenceExplicit {
/**
* The type of address reference
*/
'.tag': 'explicit';
country_code: string;
first_name: string;
last_name: string;
locality: string;
postal_code: string;
street_address1: string;
company?: string;
email?: string;
phone?: string;
region?: string;
street_address2?: string;
}
export interface Cost {
currency: string;
/**
* The total amount, in cents, including its items and taxes (if applicable).
*/
total: number;
/**
* The total tax amount, in cents for all of the items associated with the cart.
*/
tax?: number;
}
}
}
export interface PaymentMethod {
'.tag': 'paypal';
/**
* Redirect URL for canceled PayPal transaction.
*/
cancel: string;
/**
* Redirect URL for successful PayPal transaction.
*/
success: string;
}
}
export namespace Payments {
export import PaymentGuestPaymentsInitializeResponse = PaymentsAPI.PaymentGuestPaymentsInitializeResponse;
export import PaymentGuestPaymentsInitializeParams = PaymentsAPI.PaymentGuestPaymentsInitializeParams;
}