waldur-js-client 8.0.9-dev.32 → 8.0.9-dev.33

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.d.ts CHANGED
@@ -4272,7 +4272,7 @@ export declare const marketplaceProviderResourcesSubmitReport: <ThrowOnError ext
4272
4272
  /**
4273
4273
  * Get resource team
4274
4274
  *
4275
- * Returns a list of users connected to the project of this resource, including their project roles and offering-specific usernames.
4275
+ * Returns project users for this resource from the service provider perspective. When ENFORCE_USER_CONSENT_FOR_OFFERINGS is enabled and the offering has active Terms of Service, only users with active consent are returned (staff and support still see the full team).
4276
4276
  */
4277
4277
  export declare const marketplaceProviderResourcesTeamList: <ThrowOnError extends boolean = false>(options: Options<MarketplaceProviderResourcesTeamListData, ThrowOnError>) => import("./client").RequestResult<MarketplaceProviderResourcesTeamListResponses, unknown, ThrowOnError, "fields">;
4278
4278
  /**
@@ -4606,7 +4606,7 @@ export declare const marketplaceResourcesSwitchPlan: <ThrowOnError extends boole
4606
4606
  /**
4607
4607
  * Get resource team
4608
4608
  *
4609
- * Returns a list of users connected to the project of this resource, including their project roles and offering-specific usernames.
4609
+ * Returns project users for this resource, including project roles and offering-specific usernames. Use has_consent=true to list only users with active Terms of Service consent for the offering.
4610
4610
  */
4611
4611
  export declare const marketplaceResourcesTeamList: <ThrowOnError extends boolean = false>(options: Options<MarketplaceResourcesTeamListData, ThrowOnError>) => import("./client").RequestResult<MarketplaceResourcesTeamListResponses, unknown, ThrowOnError, "fields">;
4612
4612
  /**
package/dist/sdk.gen.js CHANGED
@@ -14320,7 +14320,7 @@ export const marketplaceProviderResourcesSubmitReport = (options) => (options.cl
14320
14320
  /**
14321
14321
  * Get resource team
14322
14322
  *
14323
- * Returns a list of users connected to the project of this resource, including their project roles and offering-specific usernames.
14323
+ * Returns project users for this resource from the service provider perspective. When ENFORCE_USER_CONSENT_FOR_OFFERINGS is enabled and the offering has active Terms of Service, only users with active consent are returned (staff and support still see the full team).
14324
14324
  */
14325
14325
  export const marketplaceProviderResourcesTeamList = (options) => (options.client ?? client).get({
14326
14326
  security: [
@@ -15370,7 +15370,7 @@ export const marketplaceResourcesSwitchPlan = (options) => (options.client ?? cl
15370
15370
  /**
15371
15371
  * Get resource team
15372
15372
  *
15373
- * Returns a list of users connected to the project of this resource, including their project roles and offering-specific usernames.
15373
+ * Returns project users for this resource, including project roles and offering-specific usernames. Use has_consent=true to list only users with active Terms of Service consent for the offering.
15374
15374
  */
15375
15375
  export const marketplaceResourcesTeamList = (options) => (options.client ?? client).get({
15376
15376
  security: [
@@ -4439,6 +4439,10 @@ export type CompleteWorkflowStepRequest = {
4439
4439
  * Explanation for the outcome.
4440
4440
  */
4441
4441
  outcome_reason?: string;
4442
+ /**
4443
+ * Internal notes captured by the call-management team. Stored on the step instance and never returned to applicants.
4444
+ */
4445
+ internal_notes?: string;
4442
4446
  };
4443
4447
  export type CompleteWorkflowStepResponse = {
4444
4448
  detail: string;
@@ -19661,6 +19665,8 @@ export type ProposalWorkflowStepInstance = {
19661
19665
  * Explanation for the outcome (e.g., rejection reason).
19662
19666
  */
19663
19667
  readonly outcome_reason: string;
19668
+ readonly rejection_reason: string | null;
19669
+ readonly internal_notes: string | null;
19664
19670
  /**
19665
19671
  * When this step became active.
19666
19672
  */
@@ -19671,6 +19677,9 @@ export type ProposalWorkflowStepInstance = {
19671
19677
  * Computed from started_at + step duration_in_days.
19672
19678
  */
19673
19679
  readonly deadline: string | null;
19680
+ readonly applicant_visible: boolean;
19681
+ readonly duration_in_days: number | null;
19682
+ readonly is_required: boolean;
19674
19683
  };
19675
19684
  export type ProposalWorkflowStepInstanceStatusEnum = 'pending' | 'active' | 'completed' | 'expired' | 'skipped';
19676
19685
  export type ProposedAssignment = {
@@ -21900,6 +21909,10 @@ export type RejectWorkflowStepRequest = {
21900
21909
  * Reason for rejecting the proposal at this step.
21901
21910
  */
21902
21911
  reason: string;
21912
+ /**
21913
+ * Internal notes captured by the call-management team alongside the rejection. Never returned to applicants.
21914
+ */
21915
+ internal_notes?: string;
21903
21916
  };
21904
21917
  export type RejectWorkflowStepResponse = {
21905
21918
  detail: string;
@@ -53860,7 +53873,7 @@ export type MarketplaceProviderResourcesTeamListData = {
53860
53873
  };
53861
53874
  query?: {
53862
53875
  /**
53863
- * When true, return only users who have active consent for this offering.
53876
+ * When ENFORCE_USER_CONSENT_FOR_OFFERINGS is disabled, passing true returns only users who have active consent for this offering.
53864
53877
  */
53865
53878
  has_consent?: boolean;
53866
53879
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "waldur-js-client",
3
- "version": "8.0.9-dev.32",
3
+ "version": "8.0.9-dev.33",
4
4
  "description": "JavaScript client for Waldur MasterMind generated from OpenAPI schema",
5
5
  "author": "Waldur Platform",
6
6
  "license": "MIT",