@bondsports/types 2.4.96 → 2.4.98-a-1
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/LICENSE.md +0 -0
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/dist/types/cart/dto/cart-item.dto.d.ts +0 -1
- package/dist/types/cart/dto/cart-item.dto.js.map +1 -1
- package/dist/types/cart/entities/cart-item.entity.d.ts +0 -4
- package/dist/types/cart/entities/cart-item.entity.js +0 -7
- package/dist/types/cart/entities/cart-item.entity.js.map +1 -1
- package/dist/types/cart/types/consts/cart.consts.d.ts +0 -2
- package/dist/types/cart/types/consts/cart.consts.js +0 -2
- package/dist/types/cart/types/consts/cart.consts.js.map +1 -1
- package/dist/types/cart/types/enums/cart.enums.d.ts +1 -2
- package/dist/types/cart/types/enums/cart.enums.js +0 -1
- package/dist/types/cart/types/enums/cart.enums.js.map +1 -1
- package/dist/types/cart/types/interfaces/cart.interfaces.d.ts +1 -1
- package/dist/types/customers/types/consts/customers.consts.d.ts +2 -1
- package/dist/types/customers/types/consts/customers.consts.js +3 -2
- package/dist/types/customers/types/consts/customers.consts.js.map +1 -1
- package/dist/types/customers/types/interfaces.d.ts +1 -0
- package/dist/types/entity/Invoice.d.ts +1 -0
- package/dist/types/entity/Invoice.js.map +1 -1
- package/dist/types/gl-codes/dto/gl-code.dto.d.ts +11 -4
- package/dist/types/gl-codes/dto/gl-code.dto.js +6 -5
- package/dist/types/gl-codes/dto/gl-code.dto.js.map +1 -1
- package/dist/types/gl-codes/entities/gl-code-to-facility.entity.d.ts +10 -0
- package/dist/types/gl-codes/entities/gl-code-to-facility.entity.js +8 -0
- package/dist/types/gl-codes/entities/gl-code-to-facility.entity.js.map +1 -0
- package/dist/types/gl-codes/entities/gl-code.d.ts +2 -0
- package/dist/types/gl-codes/entities/gl-code.js.map +1 -1
- package/dist/types/gl-codes/entities/index.d.ts +1 -0
- package/dist/types/gl-codes/entities/index.js +1 -0
- package/dist/types/gl-codes/entities/index.js.map +1 -1
- package/dist/types/gl-codes/types/enums/gl-code.enum.d.ts +2 -1
- package/dist/types/gl-codes/types/enums/gl-code.enum.js +1 -0
- package/dist/types/gl-codes/types/enums/gl-code.enum.js.map +1 -1
- package/dist/types/gl-codes/types/interfaces/gl-code.interfaces.d.ts +6 -0
- package/dist/types/invoice/dto/organization-invoice.dto.d.ts +2 -0
- package/dist/types/invoice/dto/organization-invoice.dto.js.map +1 -1
- package/dist/types/product-pricing/types/consts/product-category.consts.d.ts +39 -39
- package/dist/types/product-pricing/types/interfaces/product-creation.interfaces.d.ts +6 -0
- package/dist/types/product-pricing/types/interfaces/product-resource.interfaces.d.ts +0 -1
- package/dist/types/product-pricing/types/interfaces/validate-resources.interfaces.d.ts +1 -1
- package/dist/types/programs-seasons/types/interfaces/program-session.interfaces.d.ts +0 -11
- package/dist/types/purchase/types/interfaces/purchase.interfaces.d.ts +1 -2
- package/package.json +4 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bondsports/types",
|
|
3
|
-
"version": "2.4.
|
|
3
|
+
"version": "2.4.98-a-1",
|
|
4
4
|
"description": "backend types module for Bond-Sports",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -35,12 +35,12 @@
|
|
|
35
35
|
"dependencies": {
|
|
36
36
|
"@bondsports/date-time": "^2.4.53",
|
|
37
37
|
"@bondsports/notifications-sdk": "^0.0.8",
|
|
38
|
+
"@types/lodash": "^4.17.24",
|
|
38
39
|
"moment": "^2.29.1",
|
|
39
40
|
"rimraf": "^3.0.2",
|
|
40
41
|
"stripe": "^18.2.0",
|
|
41
42
|
"typeorm": "^0.2.32",
|
|
42
|
-
"zod": "^3.25.49"
|
|
43
|
-
"@types/lodash": "^4.17.24"
|
|
43
|
+
"zod": "^3.25.49"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
46
|
"@bondsports/eslint-config": "^1.0.2",
|
|
@@ -52,5 +52,5 @@
|
|
|
52
52
|
"ts-node": "^10.8.0",
|
|
53
53
|
"typescript": "^4.4.3"
|
|
54
54
|
},
|
|
55
|
-
"gitHead": "
|
|
55
|
+
"gitHead": "8bedd093719cc4a47e781a315322a1ba94f738bd"
|
|
56
56
|
}
|