waldur-js-client 7.8.8-dev.13 → 7.8.8-dev.14

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/sdk.gen.js CHANGED
@@ -20325,7 +20325,11 @@ export const onboardingVerificationsRunValidation = (options) => {
20325
20325
  }
20326
20326
  ],
20327
20327
  url: '/api/onboarding-verifications/{uuid}/run_validation/',
20328
- ...options
20328
+ ...options,
20329
+ headers: {
20330
+ 'Content-Type': 'application/json',
20331
+ ...options.headers
20332
+ }
20329
20333
  });
20330
20334
  };
20331
20335
  /**
@@ -6408,22 +6408,6 @@ export type OnboardingCompanyValidationRequestRequest = {
6408
6408
  * Indicates if the validation is to be performed manually
6409
6409
  */
6410
6410
  is_manual_validation?: boolean;
6411
- /**
6412
- * Personal identifier (temporary workaround for Estonian civil_number)
6413
- */
6414
- person_identifier?: string;
6415
- /**
6416
- * User's first name (temporary workaround for Austrian validation)
6417
- */
6418
- first_name?: string;
6419
- /**
6420
- * User's last name (temporary workaround for Austrian validation)
6421
- */
6422
- last_name?: string;
6423
- /**
6424
- * User's birth date (temporary workaround for Austrian validation)
6425
- */
6426
- birth_date?: string | null;
6427
6411
  };
6428
6412
  export type OnboardingCountryChecklistConfiguration = {
6429
6413
  readonly url: string;
@@ -6553,6 +6537,24 @@ export type OnboardingQuestionMetadataRequest = {
6553
6537
  */
6554
6538
  intent_field?: string;
6555
6539
  };
6540
+ export type OnboardingRunValidationRequestRequest = {
6541
+ /**
6542
+ * Personal identifier (temporary workaround for Estonian civil_number)
6543
+ */
6544
+ person_identifier?: string;
6545
+ /**
6546
+ * User's first name (temporary workaround for Austrian validation)
6547
+ */
6548
+ first_name?: string;
6549
+ /**
6550
+ * User's last name (temporary workaround for Austrian validation)
6551
+ */
6552
+ last_name?: string;
6553
+ /**
6554
+ * User's birth date (temporary workaround for Austrian validation)
6555
+ */
6556
+ birth_date?: string | null;
6557
+ };
6556
6558
  export type OnboardingVerification = {
6557
6559
  readonly uuid: string;
6558
6560
  /**
@@ -36467,7 +36469,7 @@ export type OnboardingVerificationsCreateCustomerResponses = {
36467
36469
  };
36468
36470
  export type OnboardingVerificationsCreateCustomerResponse = OnboardingVerificationsCreateCustomerResponses[keyof OnboardingVerificationsCreateCustomerResponses];
36469
36471
  export type OnboardingVerificationsRunValidationData = {
36470
- body?: never;
36472
+ body?: OnboardingRunValidationRequestRequest;
36471
36473
  path: {
36472
36474
  uuid: string;
36473
36475
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "waldur-js-client",
3
- "version": "7.8.8-dev.13",
3
+ "version": "7.8.8-dev.14",
4
4
  "description": "JavaScript client for Waldur MasterMind generated from OpenAPI schema",
5
5
  "author": "Waldur Platform",
6
6
  "license": "MIT",