@jsdev_ninja/core 0.14.9 → 0.15.0
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/dist/core.cjs +1 -1
- package/dist/core.cjs.map +1 -1
- package/dist/core.es.js +4 -1
- package/dist/core.es.js.map +1 -1
- package/dist/core.umd.js +1 -1
- package/dist/core.umd.js.map +1 -1
- package/dist/lib/entities/Order.d.ts +5 -0
- package/dist/lib/entities/Order.d.ts.map +1 -1
- package/dist/lib/entities/Profile.d.ts +5 -0
- package/dist/lib/entities/Profile.d.ts.map +1 -1
- package/dist/lib/entities/Profile.js +3 -0
- package/dist/tsconfig.app.tsbuildinfo +1 -1
- package/package.json +1 -1
package/dist/core.es.js
CHANGED
|
@@ -3102,7 +3102,10 @@ const ne = s.object({
|
|
|
3102
3102
|
lastActivityDate: s.number(),
|
|
3103
3103
|
//todo
|
|
3104
3104
|
paymentType: Ie.optional(),
|
|
3105
|
-
|
|
3105
|
+
/** @deprecated Use organizationIds instead */
|
|
3106
|
+
organizationId: s.string().optional().nullable(),
|
|
3107
|
+
/** Array of organization IDs this user belongs to */
|
|
3108
|
+
organizationIds: s.array(s.string()).optional()
|
|
3106
3109
|
}), et = s.object({
|
|
3107
3110
|
_COMMENT: s.string().optional(),
|
|
3108
3111
|
transaction_id: s.string(),
|