@efaj/pulumi-dynamic-stripe 0.0.2-bf2823e → 0.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +4 -4
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -1,7 +1,7 @@
1
1
  # pulumi-dynamic-stripe
2
2
 
3
- ![NPM Version](https://img.shields.io/npm/v/@efaj/pulumi-dynamic-stripe)
4
- ![License](https://img.shields.io/npm/l/@efaj/pulumi-dynamic-stripe)
3
+ ![NPM Version](https://img.shields.io/npm/v/pulumi-dynamic-stripe)
4
+ ![License](https://img.shields.io/npm/l/pulumi-dynamic-stripe)
5
5
  [![FOSSA Status](https://app.fossa.com/api/projects/git%2Bgithub.com%2Fefaj%2Fpulumi-dynamic-stripe.svg?type=shield)](https://app.fossa.com/projects/git%2Bgithub.com%2Fefaj%2Fpulumi-dynamic-stripe?ref=badge_shield)
6
6
 
7
7
  A native Pulumi Dynamic Provider for Stripe.
@@ -28,7 +28,7 @@ Contributions to add more dynamic providers for other Stripe resources are highl
28
28
  ## Installation
29
29
 
30
30
  ```bash
31
- npm install @efaj/pulumi-dynamic-stripe
31
+ npm install pulumi-dynamic-stripe
32
32
  ```
33
33
 
34
34
  ## Usage
@@ -37,7 +37,7 @@ Here is a full example of provisioning a Product, attaching a Price to it, and g
37
37
 
38
38
  ```typescript
39
39
  import * as pulumi from "@pulumi/pulumi";
40
- import { Product, Price, PaymentLink } from "@efaj/pulumi-dynamic-stripe";
40
+ import { Product, Price, PaymentLink } from "pulumi-dynamic-stripe";
41
41
 
42
42
  const config = new pulumi.Config();
43
43
  const stripeApiKey = config.requireSecret("stripeApiKey");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@efaj/pulumi-dynamic-stripe",
3
- "version": "0.0.2-bf2823e",
3
+ "version": "0.0.2",
4
4
  "description": "A Pulumi Dynamic Provider for Stripe, supporting modern features like Payment Links.",
5
5
  "keywords": [
6
6
  "pulumi",
@@ -35,4 +35,4 @@
35
35
  "ts-jest": "^29.4.12",
36
36
  "typescript": "^6.0.3"
37
37
  }
38
- }
38
+ }