randmar-api-client 1.226.0 → 1.228.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.
|
@@ -5879,6 +5879,7 @@ export type CreatePartnerAssistantJobInput = {
|
|
|
5879
5879
|
OwnerEmail?: string | null;
|
|
5880
5880
|
Files?: string[] | null;
|
|
5881
5881
|
SopIds?: string[] | null;
|
|
5882
|
+
WithAwaitingApproval?: boolean;
|
|
5882
5883
|
};
|
|
5883
5884
|
export type ConvertToShortModel = {
|
|
5884
5885
|
Title?: string | null;
|
|
@@ -6046,10 +6047,14 @@ export type SceneInformation = {
|
|
|
6046
6047
|
Preview?: SceneAsset;
|
|
6047
6048
|
AmbientSound?: SceneAsset;
|
|
6048
6049
|
};
|
|
6050
|
+
export type RequisitionPartNumber = {
|
|
6051
|
+
RandmarSKU?: string | null;
|
|
6052
|
+
Quantity?: number;
|
|
6053
|
+
};
|
|
6049
6054
|
export type CreateRequisitionInput = {
|
|
6050
6055
|
Location?: string | null;
|
|
6051
6056
|
Reference?: string | null;
|
|
6052
|
-
PartNumbers?:
|
|
6057
|
+
PartNumbers?: RequisitionPartNumber[] | null;
|
|
6053
6058
|
};
|
|
6054
6059
|
export type ReturnPartNumbers = {
|
|
6055
6060
|
RandmarSKU?: string | null;
|