Complete Email Sortierer implementation with Appwrite and Stripe integration
This commit is contained in:
11
server/node_modules/stripe/esm/resources/Tax/Calculations.js
generated
vendored
Normal file
11
server/node_modules/stripe/esm/resources/Tax/Calculations.js
generated
vendored
Normal file
@@ -0,0 +1,11 @@
|
||||
// File generated from our OpenAPI spec
|
||||
import { StripeResource } from '../../StripeResource.js';
|
||||
const stripeMethod = StripeResource.method;
|
||||
export const Calculations = StripeResource.extend({
|
||||
create: stripeMethod({ method: 'POST', fullPath: '/v1/tax/calculations' }),
|
||||
listLineItems: stripeMethod({
|
||||
method: 'GET',
|
||||
fullPath: '/v1/tax/calculations/{calculation}/line_items',
|
||||
methodType: 'list',
|
||||
}),
|
||||
});
|
||||
19
server/node_modules/stripe/esm/resources/Tax/Registrations.js
generated
vendored
Normal file
19
server/node_modules/stripe/esm/resources/Tax/Registrations.js
generated
vendored
Normal file
@@ -0,0 +1,19 @@
|
||||
// File generated from our OpenAPI spec
|
||||
import { StripeResource } from '../../StripeResource.js';
|
||||
const stripeMethod = StripeResource.method;
|
||||
export const Registrations = StripeResource.extend({
|
||||
create: stripeMethod({ method: 'POST', fullPath: '/v1/tax/registrations' }),
|
||||
retrieve: stripeMethod({
|
||||
method: 'GET',
|
||||
fullPath: '/v1/tax/registrations/{id}',
|
||||
}),
|
||||
update: stripeMethod({
|
||||
method: 'POST',
|
||||
fullPath: '/v1/tax/registrations/{id}',
|
||||
}),
|
||||
list: stripeMethod({
|
||||
method: 'GET',
|
||||
fullPath: '/v1/tax/registrations',
|
||||
methodType: 'list',
|
||||
}),
|
||||
});
|
||||
7
server/node_modules/stripe/esm/resources/Tax/Settings.js
generated
vendored
Normal file
7
server/node_modules/stripe/esm/resources/Tax/Settings.js
generated
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
// File generated from our OpenAPI spec
|
||||
import { StripeResource } from '../../StripeResource.js';
|
||||
const stripeMethod = StripeResource.method;
|
||||
export const Settings = StripeResource.extend({
|
||||
retrieve: stripeMethod({ method: 'GET', fullPath: '/v1/tax/settings' }),
|
||||
update: stripeMethod({ method: 'POST', fullPath: '/v1/tax/settings' }),
|
||||
});
|
||||
22
server/node_modules/stripe/esm/resources/Tax/Transactions.js
generated
vendored
Normal file
22
server/node_modules/stripe/esm/resources/Tax/Transactions.js
generated
vendored
Normal file
@@ -0,0 +1,22 @@
|
||||
// File generated from our OpenAPI spec
|
||||
import { StripeResource } from '../../StripeResource.js';
|
||||
const stripeMethod = StripeResource.method;
|
||||
export const Transactions = StripeResource.extend({
|
||||
retrieve: stripeMethod({
|
||||
method: 'GET',
|
||||
fullPath: '/v1/tax/transactions/{transaction}',
|
||||
}),
|
||||
createFromCalculation: stripeMethod({
|
||||
method: 'POST',
|
||||
fullPath: '/v1/tax/transactions/create_from_calculation',
|
||||
}),
|
||||
createReversal: stripeMethod({
|
||||
method: 'POST',
|
||||
fullPath: '/v1/tax/transactions/create_reversal',
|
||||
}),
|
||||
listLineItems: stripeMethod({
|
||||
method: 'GET',
|
||||
fullPath: '/v1/tax/transactions/{transaction}/line_items',
|
||||
methodType: 'list',
|
||||
}),
|
||||
});
|
||||
Reference in New Issue
Block a user