Initial project import

This commit is contained in:
drjones
2026-06-13 17:36:44 -07:00
commit ad2a18cc8d
18471 changed files with 4497570 additions and 0 deletions

19
node_modules/stripe/esm/resources/CountrySpecs.js generated vendored Normal file
View File

@@ -0,0 +1,19 @@
// File generated from our OpenAPI spec
import { StripeResource } from '../StripeResource.js';
export class CountrySpecResource extends StripeResource {
/**
* Lists all Country Spec objects available in the API.
*/
list(params, options) {
return this._makeRequest('GET', '/v1/country_specs', params, options, {
methodType: 'list',
});
}
/**
* Returns a Country Spec for a given Country code.
*/
retrieve(id, params, options) {
return this._makeRequest('GET', `/v1/country_specs/${encodeURIComponent(id)}`, params, options);
}
}
//# sourceMappingURL=CountrySpecs.js.map