@medusajs/types
Advanced tools
Comparing version 1.11.8-snapshot-20231123162346 to 1.11.8-snapshot-20231127120544
@@ -38,7 +38,7 @@ import { FindManyOptions, FindOneOptions, FindOperator, FindOptionsSelect, FindOptionsWhere, OrderByCondition } from "typeorm"; | ||
*/ | ||
skip?: number; | ||
skip?: number | null | undefined; | ||
/** | ||
* A number indicating the number of records to return in the result. | ||
*/ | ||
take?: number; | ||
take?: number | null | undefined; | ||
/** | ||
@@ -45,0 +45,0 @@ * An array of strings, each being relation names of the entity to retrieve in the result. |
@@ -114,3 +114,3 @@ import { CreateMoneyAmountDTO, MoneyAmountDTO } from "./money-amount"; | ||
* The price list's rules to be set. Each key of the object is a rule type's `rule_attribute`, and its value | ||
* is the values of the rule. | ||
* is the values of the rule. | ||
*/ | ||
@@ -179,7 +179,7 @@ export interface CreatePriceListRules extends Record<string, string[]> { | ||
*/ | ||
starts_at?: string; | ||
starts_at?: string | null; | ||
/** | ||
* The price list expires after this date. | ||
*/ | ||
ends_at?: string; | ||
ends_at?: string | null; | ||
/** | ||
@@ -186,0 +186,0 @@ * The price list's status. |
{ | ||
"name": "@medusajs/types", | ||
"version": "1.11.8-snapshot-20231123162346", | ||
"version": "1.11.8-snapshot-20231127120544", | ||
"description": "Medusa Types definition", | ||
@@ -5,0 +5,0 @@ "main": "dist/index.js", |
Sorry, the diff of this file is too big to display
439113