@digiteers/uloba3-sdk 2.0.0 → 2.1.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.
package/dist/types.d.ts CHANGED
@@ -19441,9 +19441,9 @@ export interface paths {
19441
19441
  worker_address_country?: string;
19442
19442
  /** @description Norwegian bank account number */
19443
19443
  worker_bank_account: string;
19444
- worker_emergency_contact_name: string;
19445
- worker_emergency_contact_phone: string;
19446
- worker_emergency_contact_relation: string;
19444
+ worker_emergency_contact_name?: string;
19445
+ worker_emergency_contact_phone?: string;
19446
+ worker_emergency_contact_relation?: string;
19447
19447
  worker_has_previous_employment: boolean;
19448
19448
  worker_previous_employment_details?: string;
19449
19449
  worker_has_prior_assistant_experience: boolean;
@@ -20827,11 +20827,11 @@ export interface paths {
20827
20827
  };
20828
20828
  cookie?: never;
20829
20829
  };
20830
- requestBody: {
20830
+ requestBody?: {
20831
20831
  content: {
20832
20832
  'application/json': {
20833
- /** @description Reason for rejection */
20834
- reason: string;
20833
+ /** @description Optional message explaining why the contract is being rejected */
20834
+ message?: string;
20835
20835
  };
20836
20836
  };
20837
20837
  };
@@ -21104,11 +21104,11 @@ export interface paths {
21104
21104
  };
21105
21105
  cookie?: never;
21106
21106
  };
21107
- requestBody: {
21107
+ requestBody?: {
21108
21108
  content: {
21109
21109
  'application/json': {
21110
- /** @description Reason for cancellation */
21111
- reason: string;
21110
+ /** @description Optional message explaining why the contract is being cancelled */
21111
+ message?: string;
21112
21112
  };
21113
21113
  };
21114
21114
  };