Post test helpers issuing transactions create unlinked refund

Allows the user to refund an arbitrary amount, also known as a unlinked refund.

Script stripe Verified

by hugo697 ยท 10/30/2023

The script

Submitted by hugo697 Typescript (fetch-only)
Verified 368 days ago
1
type Stripe = {
2
  token: string;
3
};
4
/**
5
 * Post test helpers issuing transactions create unlinked refund
6
 * Allows the user to refund an arbitrary amount, also known as a unlinked refund.
7
 */
8
export async function main(
9
  auth: Stripe,
10
  body: {
11
    amount: number;
12
    card: string;
13
    currency?: string;
14
    expand?: string[];
15
    merchant_data?: {
16
      category?:
17
        | "ac_refrigeration_repair"
18
        | "accounting_bookkeeping_services"
19
        | "advertising_services"
20
        | "agricultural_cooperative"
21
        | "airlines_air_carriers"
22
        | "airports_flying_fields"
23
        | "ambulance_services"
24
        | "amusement_parks_carnivals"
25
        | "antique_reproductions"
26
        | "antique_shops"
27
        | "aquariums"
28
        | "architectural_surveying_services"
29
        | "art_dealers_and_galleries"
30
        | "artists_supply_and_craft_shops"
31
        | "auto_and_home_supply_stores"
32
        | "auto_body_repair_shops"
33
        | "auto_paint_shops"
34
        | "auto_service_shops"
35
        | "automated_cash_disburse"
36
        | "automated_fuel_dispensers"
37
        | "automobile_associations"
38
        | "automotive_parts_and_accessories_stores"
39
        | "automotive_tire_stores"
40
        | "bail_and_bond_payments"
41
        | "bakeries"
42
        | "bands_orchestras"
43
        | "barber_and_beauty_shops"
44
        | "betting_casino_gambling"
45
        | "bicycle_shops"
46
        | "billiard_pool_establishments"
47
        | "boat_dealers"
48
        | "boat_rentals_and_leases"
49
        | "book_stores"
50
        | "books_periodicals_and_newspapers"
51
        | "bowling_alleys"
52
        | "bus_lines"
53
        | "business_secretarial_schools"
54
        | "buying_shopping_services"
55
        | "cable_satellite_and_other_pay_television_and_radio"
56
        | "camera_and_photographic_supply_stores"
57
        | "candy_nut_and_confectionery_stores"
58
        | "car_and_truck_dealers_new_used"
59
        | "car_and_truck_dealers_used_only"
60
        | "car_rental_agencies"
61
        | "car_washes"
62
        | "carpentry_services"
63
        | "carpet_upholstery_cleaning"
64
        | "caterers"
65
        | "charitable_and_social_service_organizations_fundraising"
66
        | "chemicals_and_allied_products"
67
        | "child_care_services"
68
        | "childrens_and_infants_wear_stores"
69
        | "chiropodists_podiatrists"
70
        | "chiropractors"
71
        | "cigar_stores_and_stands"
72
        | "civic_social_fraternal_associations"
73
        | "cleaning_and_maintenance"
74
        | "clothing_rental"
75
        | "colleges_universities"
76
        | "commercial_equipment"
77
        | "commercial_footwear"
78
        | "commercial_photography_art_and_graphics"
79
        | "commuter_transport_and_ferries"
80
        | "computer_network_services"
81
        | "computer_programming"
82
        | "computer_repair"
83
        | "computer_software_stores"
84
        | "computers_peripherals_and_software"
85
        | "concrete_work_services"
86
        | "construction_materials"
87
        | "consulting_public_relations"
88
        | "correspondence_schools"
89
        | "cosmetic_stores"
90
        | "counseling_services"
91
        | "country_clubs"
92
        | "courier_services"
93
        | "court_costs"
94
        | "credit_reporting_agencies"
95
        | "cruise_lines"
96
        | "dairy_products_stores"
97
        | "dance_hall_studios_schools"
98
        | "dating_escort_services"
99
        | "dentists_orthodontists"
100
        | "department_stores"
101
        | "detective_agencies"
102
        | "digital_goods_applications"
103
        | "digital_goods_games"
104
        | "digital_goods_large_volume"
105
        | "digital_goods_media"
106
        | "direct_marketing_catalog_merchant"
107
        | "direct_marketing_combination_catalog_and_retail_merchant"
108
        | "direct_marketing_inbound_telemarketing"
109
        | "direct_marketing_insurance_services"
110
        | "direct_marketing_other"
111
        | "direct_marketing_outbound_telemarketing"
112
        | "direct_marketing_subscription"
113
        | "direct_marketing_travel"
114
        | "discount_stores"
115
        | "doctors"
116
        | "door_to_door_sales"
117
        | "drapery_window_covering_and_upholstery_stores"
118
        | "drinking_places"
119
        | "drug_stores_and_pharmacies"
120
        | "drugs_drug_proprietaries_and_druggist_sundries"
121
        | "dry_cleaners"
122
        | "durable_goods"
123
        | "duty_free_stores"
124
        | "eating_places_restaurants"
125
        | "educational_services"
126
        | "electric_razor_stores"
127
        | "electric_vehicle_charging"
128
        | "electrical_parts_and_equipment"
129
        | "electrical_services"
130
        | "electronics_repair_shops"
131
        | "electronics_stores"
132
        | "elementary_secondary_schools"
133
        | "emergency_services_gcas_visa_use_only"
134
        | "employment_temp_agencies"
135
        | "equipment_rental"
136
        | "exterminating_services"
137
        | "family_clothing_stores"
138
        | "fast_food_restaurants"
139
        | "financial_institutions"
140
        | "fines_government_administrative_entities"
141
        | "fireplace_fireplace_screens_and_accessories_stores"
142
        | "floor_covering_stores"
143
        | "florists"
144
        | "florists_supplies_nursery_stock_and_flowers"
145
        | "freezer_and_locker_meat_provisioners"
146
        | "fuel_dealers_non_automotive"
147
        | "funeral_services_crematories"
148
        | "furniture_home_furnishings_and_equipment_stores_except_appliances"
149
        | "furniture_repair_refinishing"
150
        | "furriers_and_fur_shops"
151
        | "general_services"
152
        | "gift_card_novelty_and_souvenir_shops"
153
        | "glass_paint_and_wallpaper_stores"
154
        | "glassware_crystal_stores"
155
        | "golf_courses_public"
156
        | "government_licensed_horse_dog_racing_us_region_only"
157
        | "government_licensed_online_casions_online_gambling_us_region_only"
158
        | "government_owned_lotteries_non_us_region"
159
        | "government_owned_lotteries_us_region_only"
160
        | "government_services"
161
        | "grocery_stores_supermarkets"
162
        | "hardware_equipment_and_supplies"
163
        | "hardware_stores"
164
        | "health_and_beauty_spas"
165
        | "hearing_aids_sales_and_supplies"
166
        | "heating_plumbing_a_c"
167
        | "hobby_toy_and_game_shops"
168
        | "home_supply_warehouse_stores"
169
        | "hospitals"
170
        | "hotels_motels_and_resorts"
171
        | "household_appliance_stores"
172
        | "industrial_supplies"
173
        | "information_retrieval_services"
174
        | "insurance_default"
175
        | "insurance_underwriting_premiums"
176
        | "intra_company_purchases"
177
        | "jewelry_stores_watches_clocks_and_silverware_stores"
178
        | "landscaping_services"
179
        | "laundries"
180
        | "laundry_cleaning_services"
181
        | "legal_services_attorneys"
182
        | "luggage_and_leather_goods_stores"
183
        | "lumber_building_materials_stores"
184
        | "manual_cash_disburse"
185
        | "marinas_service_and_supplies"
186
        | "marketplaces"
187
        | "masonry_stonework_and_plaster"
188
        | "massage_parlors"
189
        | "medical_and_dental_labs"
190
        | "medical_dental_ophthalmic_and_hospital_equipment_and_supplies"
191
        | "medical_services"
192
        | "membership_organizations"
193
        | "mens_and_boys_clothing_and_accessories_stores"
194
        | "mens_womens_clothing_stores"
195
        | "metal_service_centers"
196
        | "miscellaneous_apparel_and_accessory_shops"
197
        | "miscellaneous_auto_dealers"
198
        | "miscellaneous_business_services"
199
        | "miscellaneous_food_stores"
200
        | "miscellaneous_general_merchandise"
201
        | "miscellaneous_general_services"
202
        | "miscellaneous_home_furnishing_specialty_stores"
203
        | "miscellaneous_publishing_and_printing"
204
        | "miscellaneous_recreation_services"
205
        | "miscellaneous_repair_shops"
206
        | "miscellaneous_specialty_retail"
207
        | "mobile_home_dealers"
208
        | "motion_picture_theaters"
209
        | "motor_freight_carriers_and_trucking"
210
        | "motor_homes_dealers"
211
        | "motor_vehicle_supplies_and_new_parts"
212
        | "motorcycle_shops_and_dealers"
213
        | "motorcycle_shops_dealers"
214
        | "music_stores_musical_instruments_pianos_and_sheet_music"
215
        | "news_dealers_and_newsstands"
216
        | "non_fi_money_orders"
217
        | "non_fi_stored_value_card_purchase_load"
218
        | "nondurable_goods"
219
        | "nurseries_lawn_and_garden_supply_stores"
220
        | "nursing_personal_care"
221
        | "office_and_commercial_furniture"
222
        | "opticians_eyeglasses"
223
        | "optometrists_ophthalmologist"
224
        | "orthopedic_goods_prosthetic_devices"
225
        | "osteopaths"
226
        | "package_stores_beer_wine_and_liquor"
227
        | "paints_varnishes_and_supplies"
228
        | "parking_lots_garages"
229
        | "passenger_railways"
230
        | "pawn_shops"
231
        | "pet_shops_pet_food_and_supplies"
232
        | "petroleum_and_petroleum_products"
233
        | "photo_developing"
234
        | "photographic_photocopy_microfilm_equipment_and_supplies"
235
        | "photographic_studios"
236
        | "picture_video_production"
237
        | "piece_goods_notions_and_other_dry_goods"
238
        | "plumbing_heating_equipment_and_supplies"
239
        | "political_organizations"
240
        | "postal_services_government_only"
241
        | "precious_stones_and_metals_watches_and_jewelry"
242
        | "professional_services"
243
        | "public_warehousing_and_storage"
244
        | "quick_copy_repro_and_blueprint"
245
        | "railroads"
246
        | "real_estate_agents_and_managers_rentals"
247
        | "record_stores"
248
        | "recreational_vehicle_rentals"
249
        | "religious_goods_stores"
250
        | "religious_organizations"
251
        | "roofing_siding_sheet_metal"
252
        | "secretarial_support_services"
253
        | "security_brokers_dealers"
254
        | "service_stations"
255
        | "sewing_needlework_fabric_and_piece_goods_stores"
256
        | "shoe_repair_hat_cleaning"
257
        | "shoe_stores"
258
        | "small_appliance_repair"
259
        | "snowmobile_dealers"
260
        | "special_trade_services"
261
        | "specialty_cleaning"
262
        | "sporting_goods_stores"
263
        | "sporting_recreation_camps"
264
        | "sports_and_riding_apparel_stores"
265
        | "sports_clubs_fields"
266
        | "stamp_and_coin_stores"
267
        | "stationary_office_supplies_printing_and_writing_paper"
268
        | "stationery_stores_office_and_school_supply_stores"
269
        | "swimming_pools_sales"
270
        | "t_ui_travel_germany"
271
        | "tailors_alterations"
272
        | "tax_payments_government_agencies"
273
        | "tax_preparation_services"
274
        | "taxicabs_limousines"
275
        | "telecommunication_equipment_and_telephone_sales"
276
        | "telecommunication_services"
277
        | "telegraph_services"
278
        | "tent_and_awning_shops"
279
        | "testing_laboratories"
280
        | "theatrical_ticket_agencies"
281
        | "timeshares"
282
        | "tire_retreading_and_repair"
283
        | "tolls_bridge_fees"
284
        | "tourist_attractions_and_exhibits"
285
        | "towing_services"
286
        | "trailer_parks_campgrounds"
287
        | "transportation_services"
288
        | "travel_agencies_tour_operators"
289
        | "truck_stop_iteration"
290
        | "truck_utility_trailer_rentals"
291
        | "typesetting_plate_making_and_related_services"
292
        | "typewriter_stores"
293
        | "u_s_federal_government_agencies_or_departments"
294
        | "uniforms_commercial_clothing"
295
        | "used_merchandise_and_secondhand_stores"
296
        | "utilities"
297
        | "variety_stores"
298
        | "veterinary_services"
299
        | "video_amusement_game_supplies"
300
        | "video_game_arcades"
301
        | "video_tape_rental_stores"
302
        | "vocational_trade_schools"
303
        | "watch_jewelry_repair"
304
        | "welding_repair"
305
        | "wholesale_clubs"
306
        | "wig_and_toupee_stores"
307
        | "wires_money_orders"
308
        | "womens_accessory_and_specialty_shops"
309
        | "womens_ready_to_wear_stores"
310
        | "wrecking_and_salvage_yards";
311
      city?: string;
312
      country?: string;
313
      name?: string;
314
      network_id?: string;
315
      postal_code?: string;
316
      state?: string;
317
      terminal_id?: string;
318
      url?: string;
319
      [k: string]: unknown;
320
    };
321
    purchase_details?: {
322
      flight?: {
323
        departure_at?: number;
324
        passenger_name?: string;
325
        refundable?: boolean;
326
        segments?: {
327
          arrival_airport_code?: string;
328
          carrier?: string;
329
          departure_airport_code?: string;
330
          flight_number?: string;
331
          service_class?: string;
332
          stopover_allowed?: boolean;
333
          [k: string]: unknown;
334
        }[];
335
        travel_agency?: string;
336
        [k: string]: unknown;
337
      };
338
      fuel?: {
339
        type?:
340
          | "diesel"
341
          | "other"
342
          | "unleaded_plus"
343
          | "unleaded_regular"
344
          | "unleaded_super";
345
        unit?: "liter" | "us_gallon";
346
        unit_cost_decimal?: string;
347
        volume_decimal?: string;
348
        [k: string]: unknown;
349
      };
350
      lodging?: { check_in_at?: number; nights?: number; [k: string]: unknown };
351
      receipt?: {
352
        description?: string;
353
        quantity?: string;
354
        total?: number;
355
        unit_cost?: number;
356
        [k: string]: unknown;
357
      }[];
358
      reference?: string;
359
      [k: string]: unknown;
360
    };
361
  }
362
) {
363
  const url = new URL(
364
    `https://api.stripe.com/v1/test_helpers/issuing/transactions/create_unlinked_refund`
365
  );
366

367
  const response = await fetch(url, {
368
    method: "POST",
369
    headers: {
370
      "Content-Type": "application/x-www-form-urlencoded",
371
      Authorization: "Bearer " + auth.token,
372
    },
373
    body: encodeParams(body),
374
  });
375
  if (!response.ok) {
376
    const text = await response.text();
377
    throw new Error(`${response.status} ${text}`);
378
  }
379
  return await response.json();
380
}
381

382
function encodeParams(o: any) {
383
  function iter(o: any, path: string) {
384
    if (Array.isArray(o)) {
385
      o.forEach(function (a) {
386
        iter(a, path + "[]");
387
      });
388
      return;
389
    }
390
    if (o !== null && typeof o === "object") {
391
      Object.keys(o).forEach(function (k) {
392
        iter(o[k], path + "[" + k + "]");
393
      });
394
      return;
395
    }
396
    data.push(path + "=" + o);
397
  }
398
  const data: string[] = [];
399
  Object.keys(o).forEach(function (k) {
400
    if (o[k] !== undefined) {
401
      iter(o[k], k);
402
    }
403
  });
404
  return new URLSearchParams(data.join("&"));
405
}
406