sowhat-types 2.0.249 → 2.0.251

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/index.d.mts CHANGED
@@ -435,6 +435,7 @@ interface UpdateCommercialOfferInput {
435
435
  id: string;
436
436
  message?: string;
437
437
  status?: OfferStatusEnum;
438
+ rejectedReason?: string;
438
439
  seenByUser?: Date;
439
440
  }
440
441
 
@@ -824,6 +825,7 @@ interface ProCommercialOfferResponse {
824
825
  message: string;
825
826
  status: OfferStatusEnum;
826
827
  seenByUser: Date | null;
828
+ rejectedReason: string | null;
827
829
  sentAt: Date;
828
830
  updatedAt: Date;
829
831
  }
@@ -936,7 +938,7 @@ interface ProResponse {
936
938
  companyDescription: string | null;
937
939
  sirenId: string | null;
938
940
  oriasId: string | null;
939
- certifications: ProCertificationEnum[] | null;
941
+ certifications: ProCertificationEnum[];
940
942
  updatedAt: Date;
941
943
  createdAt: Date;
942
944
  }
@@ -951,6 +953,7 @@ interface UserCommercialOfferResponse {
951
953
  message: string;
952
954
  status: OfferStatusEnum;
953
955
  seenByUser: Date | null;
956
+ rejectedReason: string | null;
954
957
  sentAt: Date;
955
958
  updatedAt: Date;
956
959
  }
package/dist/index.d.ts CHANGED
@@ -435,6 +435,7 @@ interface UpdateCommercialOfferInput {
435
435
  id: string;
436
436
  message?: string;
437
437
  status?: OfferStatusEnum;
438
+ rejectedReason?: string;
438
439
  seenByUser?: Date;
439
440
  }
440
441
 
@@ -824,6 +825,7 @@ interface ProCommercialOfferResponse {
824
825
  message: string;
825
826
  status: OfferStatusEnum;
826
827
  seenByUser: Date | null;
828
+ rejectedReason: string | null;
827
829
  sentAt: Date;
828
830
  updatedAt: Date;
829
831
  }
@@ -936,7 +938,7 @@ interface ProResponse {
936
938
  companyDescription: string | null;
937
939
  sirenId: string | null;
938
940
  oriasId: string | null;
939
- certifications: ProCertificationEnum[] | null;
941
+ certifications: ProCertificationEnum[];
940
942
  updatedAt: Date;
941
943
  createdAt: Date;
942
944
  }
@@ -951,6 +953,7 @@ interface UserCommercialOfferResponse {
951
953
  message: string;
952
954
  status: OfferStatusEnum;
953
955
  seenByUser: Date | null;
956
+ rejectedReason: string | null;
954
957
  sentAt: Date;
955
958
  updatedAt: Date;
956
959
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sowhat-types",
3
- "version": "2.0.249",
3
+ "version": "2.0.251",
4
4
  "description": "Sowhat types",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",