waldur-js-client 7.9.4 → 7.9.5-dev.1

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.
Files changed (2) hide show
  1. package/dist/types.gen.d.ts +56 -10
  2. package/package.json +1 -1
@@ -5173,6 +5173,10 @@ export type MergedPluginOptions = {
5173
5173
  * Slurm account name generation policy
5174
5174
  */
5175
5175
  account_name_generation_policy?: AccountNameGenerationPolicyEnum | NullEnum | null;
5176
+ /**
5177
+ * Enable display of order actions for service provider
5178
+ */
5179
+ enable_display_of_order_actions_for_service_provider?: boolean;
5176
5180
  /**
5177
5181
  * If set to False, an order requires manual provider approval
5178
5182
  */
@@ -5407,6 +5411,10 @@ export type MergedPluginOptionsRequest = {
5407
5411
  * Slurm account name generation policy
5408
5412
  */
5409
5413
  account_name_generation_policy?: AccountNameGenerationPolicyEnum | NullEnum | null;
5414
+ /**
5415
+ * Enable display of order actions for service provider
5416
+ */
5417
+ enable_display_of_order_actions_for_service_provider?: boolean;
5410
5418
  /**
5411
5419
  * If set to False, an order requires manual provider approval
5412
5420
  */
@@ -7675,6 +7683,7 @@ export type OnboardingJustification = {
7675
7683
  readonly verification_uuid: string;
7676
7684
  readonly country: string;
7677
7685
  readonly user: string;
7686
+ readonly user_full_name: string;
7678
7687
  readonly legal_person_identifier: string;
7679
7688
  readonly legal_name: string;
7680
7689
  readonly error_message: string;
@@ -7691,6 +7700,18 @@ export type OnboardingJustification = {
7691
7700
  */
7692
7701
  readonly staff_notes: string;
7693
7702
  readonly supporting_documentation: Array<OnboardingJustificationDocumentation>;
7703
+ /**
7704
+ * Onboarding-specific data like intents, purposes extracted from checklist answers
7705
+ */
7706
+ readonly onboarding_metadata: {
7707
+ [key: string]: unknown;
7708
+ };
7709
+ /**
7710
+ * Customer-related data submitted by the user via checklist answers
7711
+ */
7712
+ readonly user_submitted_customer_data: {
7713
+ [key: string]: unknown;
7714
+ };
7694
7715
  readonly created: string;
7695
7716
  readonly modified: string;
7696
7717
  };
@@ -7785,7 +7806,8 @@ export type OnboardingVerification = {
7785
7806
  /**
7786
7807
  * User requesting company onboarding
7787
7808
  */
7788
- user: number;
7809
+ readonly user: string;
7810
+ readonly user_full_name: string;
7789
7811
  /**
7790
7812
  * ISO country code (e.g., 'EE' for Estonia)
7791
7813
  */
@@ -7828,7 +7850,7 @@ export type OnboardingVerification = {
7828
7850
  /**
7829
7851
  * Customer created after successful validation
7830
7852
  */
7831
- readonly customer: number | null;
7853
+ readonly customer: string | null;
7832
7854
  /**
7833
7855
  * Onboarding-specific data like intents, purposes extracted from checklist answers
7834
7856
  */
@@ -7853,10 +7875,6 @@ export type OnboardingVerification = {
7853
7875
  readonly modified: string;
7854
7876
  };
7855
7877
  export type OnboardingVerificationRequest = {
7856
- /**
7857
- * User requesting company onboarding
7858
- */
7859
- user: number;
7860
7878
  /**
7861
7879
  * ISO country code (e.g., 'EE' for Estonia)
7862
7880
  */
@@ -10363,10 +10381,6 @@ export type PatchedOnboardingQuestionMetadataRequest = {
10363
10381
  intent_field?: string;
10364
10382
  };
10365
10383
  export type PatchedOnboardingVerificationRequest = {
10366
- /**
10367
- * User requesting company onboarding
10368
- */
10369
- user?: number;
10370
10384
  /**
10371
10385
  * ISO country code (e.g., 'EE' for Estonia)
10372
10386
  */
@@ -41112,6 +41126,14 @@ export type OnboardingJustificationsListData = {
41112
41126
  * Number of results to return per page.
41113
41127
  */
41114
41128
  page_size?: number;
41129
+ /**
41130
+ * User UUID
41131
+ */
41132
+ user_uuid?: string;
41133
+ /**
41134
+ * Verification UUID
41135
+ */
41136
+ verification_uuid?: string;
41115
41137
  };
41116
41138
  url: '/api/onboarding-justifications/';
41117
41139
  };
@@ -41131,6 +41153,14 @@ export type OnboardingJustificationsCountData = {
41131
41153
  * Number of results to return per page.
41132
41154
  */
41133
41155
  page_size?: number;
41156
+ /**
41157
+ * User UUID
41158
+ */
41159
+ user_uuid?: string;
41160
+ /**
41161
+ * Verification UUID
41162
+ */
41163
+ verification_uuid?: string;
41134
41164
  };
41135
41165
  url: '/api/onboarding-justifications/';
41136
41166
  };
@@ -41368,6 +41398,9 @@ export type OnboardingVerificationsListData = {
41368
41398
  body?: never;
41369
41399
  path?: never;
41370
41400
  query?: {
41401
+ country?: string;
41402
+ legal_name?: string;
41403
+ legal_person_identifier?: string;
41371
41404
  /**
41372
41405
  * A page number within the paginated result set.
41373
41406
  */
@@ -41376,6 +41409,11 @@ export type OnboardingVerificationsListData = {
41376
41409
  * Number of results to return per page.
41377
41410
  */
41378
41411
  page_size?: number;
41412
+ status?: string;
41413
+ /**
41414
+ * User UUID
41415
+ */
41416
+ user_uuid?: string;
41379
41417
  };
41380
41418
  url: '/api/onboarding-verifications/';
41381
41419
  };
@@ -41387,6 +41425,9 @@ export type OnboardingVerificationsCountData = {
41387
41425
  body?: never;
41388
41426
  path?: never;
41389
41427
  query?: {
41428
+ country?: string;
41429
+ legal_name?: string;
41430
+ legal_person_identifier?: string;
41390
41431
  /**
41391
41432
  * A page number within the paginated result set.
41392
41433
  */
@@ -41395,6 +41436,11 @@ export type OnboardingVerificationsCountData = {
41395
41436
  * Number of results to return per page.
41396
41437
  */
41397
41438
  page_size?: number;
41439
+ status?: string;
41440
+ /**
41441
+ * User UUID
41442
+ */
41443
+ user_uuid?: string;
41398
41444
  };
41399
41445
  url: '/api/onboarding-verifications/';
41400
41446
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "waldur-js-client",
3
- "version": "7.9.4",
3
+ "version": "7.9.5-dev.1",
4
4
  "description": "JavaScript client for Waldur MasterMind generated from OpenAPI schema",
5
5
  "author": "Waldur Platform",
6
6
  "license": "MIT",