@oppulence/stripe-sync-engine-sdk 1.10.9 → 1.14.15
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.
- package/README.md +43 -146
- package/dist/index.d.mts +4586 -2295
- package/dist/index.d.ts +4586 -2295
- package/dist/index.js +2740 -937
- package/dist/index.mjs +2542 -886
- package/package.json +30 -14
package/package.json
CHANGED
|
@@ -1,15 +1,20 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@oppulence/stripe-sync-engine-sdk",
|
|
3
|
-
"version": "1.
|
|
4
|
-
"description": "TypeScript SDK for
|
|
5
|
-
"main": "
|
|
6
|
-
"
|
|
7
|
-
"
|
|
3
|
+
"version": "1.14.15",
|
|
4
|
+
"description": "TypeScript SDK for Stripe Sync Engine - REST API for managing Stripe data synchronization and tenant operations",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"module": "dist/index.mjs",
|
|
7
|
+
"types": "dist/index.d.ts",
|
|
8
8
|
"exports": {
|
|
9
9
|
".": {
|
|
10
|
-
"
|
|
11
|
-
|
|
12
|
-
|
|
10
|
+
"import": {
|
|
11
|
+
"types": "./dist/index.d.ts",
|
|
12
|
+
"default": "./dist/index.mjs"
|
|
13
|
+
},
|
|
14
|
+
"require": {
|
|
15
|
+
"types": "./dist/index.d.ts",
|
|
16
|
+
"default": "./dist/index.js"
|
|
17
|
+
}
|
|
13
18
|
}
|
|
14
19
|
},
|
|
15
20
|
"files": [
|
|
@@ -18,24 +23,35 @@
|
|
|
18
23
|
],
|
|
19
24
|
"scripts": {
|
|
20
25
|
"build": "tsup index.ts --format cjs,esm --dts --clean",
|
|
26
|
+
"test": "echo 'No tests for generated SDK'",
|
|
27
|
+
"typecheck": "tsc --noEmit",
|
|
21
28
|
"prepublishOnly": "npm run build"
|
|
22
29
|
},
|
|
23
30
|
"keywords": [
|
|
24
31
|
"stripe",
|
|
25
32
|
"sync",
|
|
33
|
+
"api",
|
|
26
34
|
"sdk",
|
|
27
|
-
"
|
|
28
|
-
"
|
|
35
|
+
"typescript",
|
|
36
|
+
"billing",
|
|
37
|
+
"payments"
|
|
29
38
|
],
|
|
39
|
+
"author": "Oppulence Engineering",
|
|
40
|
+
"license": "MIT",
|
|
30
41
|
"repository": {
|
|
31
42
|
"type": "git",
|
|
32
43
|
"url": "https://github.com/Oppulence-Engineering/oppulence-sync-engine.git",
|
|
33
44
|
"directory": "libraries/stripe-sync-typescript-sdk"
|
|
34
45
|
},
|
|
35
|
-
"
|
|
36
|
-
|
|
46
|
+
"bugs": {
|
|
47
|
+
"url": "https://github.com/Oppulence-Engineering/oppulence-sync-engine/issues"
|
|
48
|
+
},
|
|
49
|
+
"homepage": "https://github.com/Oppulence-Engineering/oppulence-sync-engine#readme",
|
|
37
50
|
"devDependencies": {
|
|
38
|
-
"tsup": "^8.
|
|
39
|
-
"typescript": "^5.
|
|
51
|
+
"tsup": "^8.0.0",
|
|
52
|
+
"typescript": "^5.0.0"
|
|
53
|
+
},
|
|
54
|
+
"engines": {
|
|
55
|
+
"node": ">=18.0.0"
|
|
40
56
|
}
|
|
41
57
|
}
|