Complete Email Sortierer implementation with Appwrite and Stripe integration
This commit is contained in:
24
server/node_modules/stripe/esm/resources/Checkout/Sessions.js
generated
vendored
Normal file
24
server/node_modules/stripe/esm/resources/Checkout/Sessions.js
generated
vendored
Normal file
@@ -0,0 +1,24 @@
|
||||
// File generated from our OpenAPI spec
|
||||
import { StripeResource } from '../../StripeResource.js';
|
||||
const stripeMethod = StripeResource.method;
|
||||
export const Sessions = StripeResource.extend({
|
||||
create: stripeMethod({ method: 'POST', fullPath: '/v1/checkout/sessions' }),
|
||||
retrieve: stripeMethod({
|
||||
method: 'GET',
|
||||
fullPath: '/v1/checkout/sessions/{session}',
|
||||
}),
|
||||
list: stripeMethod({
|
||||
method: 'GET',
|
||||
fullPath: '/v1/checkout/sessions',
|
||||
methodType: 'list',
|
||||
}),
|
||||
expire: stripeMethod({
|
||||
method: 'POST',
|
||||
fullPath: '/v1/checkout/sessions/{session}/expire',
|
||||
}),
|
||||
listLineItems: stripeMethod({
|
||||
method: 'GET',
|
||||
fullPath: '/v1/checkout/sessions/{session}/line_items',
|
||||
methodType: 'list',
|
||||
}),
|
||||
});
|
||||
Reference in New Issue
Block a user