repzo 1.0.66 → 1.0.67
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/types/index.d.ts +4 -4
- package/package.json +1 -1
- package/src/types/index.ts +4 -4
package/lib/types/index.d.ts
CHANGED
|
@@ -5694,8 +5694,8 @@ export declare namespace Service {
|
|
|
5694
5694
|
business_day?: string;
|
|
5695
5695
|
document_type?: "receiving-material";
|
|
5696
5696
|
supplier?: string;
|
|
5697
|
-
createdAt:
|
|
5698
|
-
updatedAt:
|
|
5697
|
+
createdAt: string;
|
|
5698
|
+
updatedAt: string;
|
|
5699
5699
|
}
|
|
5700
5700
|
interface CreateBody {
|
|
5701
5701
|
from: string;
|
|
@@ -6094,8 +6094,8 @@ export declare namespace Service {
|
|
|
6094
6094
|
teams: string[];
|
|
6095
6095
|
transaction_processed: boolean;
|
|
6096
6096
|
company_namespace: string[];
|
|
6097
|
-
createdAt:
|
|
6098
|
-
updatedAt:
|
|
6097
|
+
createdAt: string;
|
|
6098
|
+
updatedAt: string;
|
|
6099
6099
|
}
|
|
6100
6100
|
interface CreateBody {
|
|
6101
6101
|
serial_number: SerialNumber;
|
package/package.json
CHANGED
package/src/types/index.ts
CHANGED
|
@@ -5682,8 +5682,8 @@ export namespace Service {
|
|
|
5682
5682
|
business_day?: string;
|
|
5683
5683
|
document_type?: "receiving-material";
|
|
5684
5684
|
supplier?: string;
|
|
5685
|
-
createdAt:
|
|
5686
|
-
updatedAt:
|
|
5685
|
+
createdAt: string;
|
|
5686
|
+
updatedAt: string;
|
|
5687
5687
|
}
|
|
5688
5688
|
export interface CreateBody {
|
|
5689
5689
|
from: string;
|
|
@@ -6078,8 +6078,8 @@ export namespace Service {
|
|
|
6078
6078
|
teams: string[];
|
|
6079
6079
|
transaction_processed: boolean;
|
|
6080
6080
|
company_namespace: string[];
|
|
6081
|
-
createdAt:
|
|
6082
|
-
updatedAt:
|
|
6081
|
+
createdAt: string;
|
|
6082
|
+
updatedAt: string;
|
|
6083
6083
|
}
|
|
6084
6084
|
export interface CreateBody {
|
|
6085
6085
|
serial_number: SerialNumber;
|