randmar-api-client 1.83.0 → 1.84.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.
@@ -1108,6 +1108,7 @@ export type PostV4PartnerByApplicationIdGenerationRandmarAssistantApiResponse =
1108
1108
  /** status 200 OK */ ContentSubset;
1109
1109
  export type PostV4PartnerByApplicationIdGenerationRandmarAssistantApiArg = {
1110
1110
  applicationId: string;
1111
+ isNewbie?: boolean;
1111
1112
  body: ContentSubset[];
1112
1113
  };
1113
1114
  export type PostV4PartnerByApplicationIdGenerationUploadApiResponse =
@@ -4274,7 +4275,7 @@ export type ConvertToShortModel = {
4274
4275
  Title?: string | null;
4275
4276
  /** The script or text for the voiceover narration. */
4276
4277
  Text?: string | null;
4277
- /** The speed of the camera movement in the animation. */
4278
+ /** The speed of the camera movement in the animation. Default is 1 */
4278
4279
  CameraSpeed?: number;
4279
4280
  /** Whether to include Randmar branding in the video. */
4280
4281
  WithRandmarBranding?: boolean;
@@ -4354,7 +4355,7 @@ export type ProductConvertToShortModel = {
4354
4355
  Title?: string | null;
4355
4356
  /** The script or text for the voiceover narration. */
4356
4357
  Text?: string | null;
4357
- /** The speed of the camera movement in the animation. */
4358
+ /** The speed of the camera movement in the animation. Default is 1 */
4358
4359
  CameraSpeed?: number;
4359
4360
  /** The name of the text-to-speech voice to use. */
4360
4361
  VoiceName?: string | null;
@@ -4450,7 +4451,7 @@ export type ReturnPartNumbers = {
4450
4451
  Quantity?: number;
4451
4452
  /** Gets or sets the reason for returning the item.
4452
4453
  Required
4453
- The only options are: Shipping Error, Defective, Lost Shipment, Ordering Error (20% restocking fee applies) */
4454
+ The only options are: Picking Error, Defective, Lost with Carrier, Ordering Error (20% restocking fee applies) */
4454
4455
  Reason?: string | null;
4455
4456
  /** Gets or sets the serial numbers of the items being returned, if applicable.
4456
4457
  Not required */
@@ -688,6 +688,9 @@ const injectedRtkApi = api.injectEndpoints({
688
688
  url: `/V4/Partner/${queryArg.applicationId}/Generation/RandmarAssistant`,
689
689
  method: "POST",
690
690
  body: queryArg.body,
691
+ params: {
692
+ isNewbie: queryArg.isNewbie,
693
+ },
691
694
  }),
692
695
  }),
693
696
  postV4PartnerByApplicationIdGenerationUpload: build.mutation({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "randmar-api-client",
3
- "version": "1.83.0",
3
+ "version": "1.84.0",
4
4
  "type": "module",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.js",