hysteria-orm 10.1.1 → 10.1.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.
package/lib/index.d.cts CHANGED
@@ -4132,7 +4132,7 @@ declare abstract class Model extends Entity {
4132
4132
  model: T;
4133
4133
  } : T>;
4134
4134
  /**
4135
- * @description Updates or creates a new record
4135
+ * @description Updates or creates a new record, if no searchCriteria payload is provided, provided data will be inserted as is
4136
4136
  */
4137
4137
  static upsert<T extends Model>(this: new () => T | typeof Model, searchCriteria: Partial<ModelWithoutRelations<T>>, data: Partial<ModelWithoutRelations<T>>, options?: UpsertOptions<T> & BaseModelMethodOptions): Promise<AnnotatedModel<T, {}>>;
4138
4138
  /**
package/lib/index.d.ts CHANGED
@@ -4132,7 +4132,7 @@ declare abstract class Model extends Entity {
4132
4132
  model: T;
4133
4133
  } : T>;
4134
4134
  /**
4135
- * @description Updates or creates a new record
4135
+ * @description Updates or creates a new record, if no searchCriteria payload is provided, provided data will be inserted as is
4136
4136
  */
4137
4137
  static upsert<T extends Model>(this: new () => T | typeof Model, searchCriteria: Partial<ModelWithoutRelations<T>>, data: Partial<ModelWithoutRelations<T>>, options?: UpsertOptions<T> & BaseModelMethodOptions): Promise<AnnotatedModel<T, {}>>;
4138
4138
  /**