Complete Email Sortierer implementation with Appwrite and Stripe integration
This commit is contained in:
23
server/node_modules/stripe/esm/resources/Climate/Orders.js
generated
vendored
Normal file
23
server/node_modules/stripe/esm/resources/Climate/Orders.js
generated
vendored
Normal file
@@ -0,0 +1,23 @@
|
||||
// File generated from our OpenAPI spec
|
||||
import { StripeResource } from '../../StripeResource.js';
|
||||
const stripeMethod = StripeResource.method;
|
||||
export const Orders = StripeResource.extend({
|
||||
create: stripeMethod({ method: 'POST', fullPath: '/v1/climate/orders' }),
|
||||
retrieve: stripeMethod({
|
||||
method: 'GET',
|
||||
fullPath: '/v1/climate/orders/{order}',
|
||||
}),
|
||||
update: stripeMethod({
|
||||
method: 'POST',
|
||||
fullPath: '/v1/climate/orders/{order}',
|
||||
}),
|
||||
list: stripeMethod({
|
||||
method: 'GET',
|
||||
fullPath: '/v1/climate/orders',
|
||||
methodType: 'list',
|
||||
}),
|
||||
cancel: stripeMethod({
|
||||
method: 'POST',
|
||||
fullPath: '/v1/climate/orders/{order}/cancel',
|
||||
}),
|
||||
});
|
||||
14
server/node_modules/stripe/esm/resources/Climate/Products.js
generated
vendored
Normal file
14
server/node_modules/stripe/esm/resources/Climate/Products.js
generated
vendored
Normal file
@@ -0,0 +1,14 @@
|
||||
// File generated from our OpenAPI spec
|
||||
import { StripeResource } from '../../StripeResource.js';
|
||||
const stripeMethod = StripeResource.method;
|
||||
export const Products = StripeResource.extend({
|
||||
retrieve: stripeMethod({
|
||||
method: 'GET',
|
||||
fullPath: '/v1/climate/products/{product}',
|
||||
}),
|
||||
list: stripeMethod({
|
||||
method: 'GET',
|
||||
fullPath: '/v1/climate/products',
|
||||
methodType: 'list',
|
||||
}),
|
||||
});
|
||||
14
server/node_modules/stripe/esm/resources/Climate/Suppliers.js
generated
vendored
Normal file
14
server/node_modules/stripe/esm/resources/Climate/Suppliers.js
generated
vendored
Normal file
@@ -0,0 +1,14 @@
|
||||
// File generated from our OpenAPI spec
|
||||
import { StripeResource } from '../../StripeResource.js';
|
||||
const stripeMethod = StripeResource.method;
|
||||
export const Suppliers = StripeResource.extend({
|
||||
retrieve: stripeMethod({
|
||||
method: 'GET',
|
||||
fullPath: '/v1/climate/suppliers/{supplier}',
|
||||
}),
|
||||
list: stripeMethod({
|
||||
method: 'GET',
|
||||
fullPath: '/v1/climate/suppliers',
|
||||
methodType: 'list',
|
||||
}),
|
||||
});
|
||||
Reference in New Issue
Block a user