@hyperscale0/sdk 4.0.0 → 4.0.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/package.json +2 -2
  2. package/portal.d.ts +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hyperscale0/sdk",
3
- "version": "4.0.0",
3
+ "version": "4.0.1",
4
4
  "type": "module",
5
5
  "sideEffects": false,
6
6
  "license": "LicenseRef-Hyperscale-Proprietary",
@@ -22,5 +22,5 @@
22
22
  "publishConfig": {
23
23
  "access": "public"
24
24
  },
25
- "gitHead": "d0f069d51016735292c2770575b94f369bb6e151"
25
+ "gitHead": "8e13de507f47ba25ac23662235302e643fa2267c"
26
26
  }
package/portal.d.ts CHANGED
@@ -349,7 +349,7 @@ export type tenant_safeguarding_retrieveOutput = { readonly "environment": "sand
349
349
  export type tenant_setup_retrieveInput = { readonly "tenantId": string; readonly "cursor"?: string; readonly "limit"?: number; };
350
350
  export type tenant_setup_retrieveOutput = { readonly "asOf": string; readonly "complete": boolean; readonly "unavailable": ReadonlyArray<string>; readonly "requirements": ReadonlyArray<{ readonly "evidenceId": string; readonly "code": string; readonly "status": ("missing" | "pending" | "satisfied" | "refused" | "stale" | null); readonly "required": boolean; readonly "sourceProductId": string; readonly "sourceProductBuildId": string; readonly "actionTarget"?: { readonly "kind": string; readonly "objectId": string; readonly "action": string; }; readonly "settingsPathKey"?: string; }>; readonly "products": ReadonlyArray<{ readonly "productId": string; readonly "productName": string; readonly "productBuildId": string; readonly "readiness": tenant_setup_retrieveOutput_ProductActivationReadiness; readonly "nextStep": string | null; }>; readonly "nextCursor"?: string; };
351
351
  type tenant_setup_retrieveOutput_ProductActivationReadiness = { readonly "live": boolean; readonly "blockers": ReadonlyArray<{ readonly "code": string; readonly "requirementId"?: string; readonly "adapter"?: string; readonly "declarationDigest"?: string; readonly "evidenceState"?: "missing" | "pending" | "satisfied" | "refused" | "stale"; readonly "actionTarget"?: { readonly "kind": string; readonly "objectId": string; readonly "action": string; }; }>; };
352
- export type tenant_statement_export_createInput = { readonly "tenantId": string; readonly "fromPeriod": string; readonly "toPeriod": string; readonly "kind": "account_statement" | "finance_report"; readonly "accountId"?: string; readonly "productId"?: string; readonly "currency"?: string; readonly "format": "csv" | "pdf"; };
352
+ export type tenant_statement_export_createInput = { readonly "tenantId": string; readonly "fromPeriod": string; readonly "toPeriod": string; readonly "kind": "account_statement" | "finance_report"; readonly "accountId"?: string; readonly "productId"?: string; readonly "currency"?: string; readonly "format": "csv"; };
353
353
  export type tenant_statement_export_createOutput = { readonly "tenantId": string; readonly "reportingArtifactId": string; readonly "kind": "account_statement" | "finance_report"; readonly "format": "csv"; readonly "state": "complete"; readonly "fromPeriod": string; readonly "toPeriod": string; readonly "accountId"?: string; readonly "productId"?: string; readonly "currency"?: string; readonly "observationAt": string; readonly "cutoff": string; readonly "inputDigest": string; readonly "contentDigest": string; readonly "manifestDigest": string; readonly "rowCount": number; readonly "filename": string; readonly "sizeBytes": number; readonly "complete": true; };
354
354
  export type tenant_statement_export_downloadInput = { readonly "tenantId": string; readonly "reportingArtifactId": string; };
355
355
  export type tenant_statement_export_downloadOutput = { readonly "metadata": { readonly "tenantId": string; readonly "reportingArtifactId": string; readonly "kind": "account_statement" | "finance_report"; readonly "format": "csv"; readonly "state": "complete"; readonly "fromPeriod": string; readonly "toPeriod": string; readonly "accountId"?: string; readonly "productId"?: string; readonly "currency"?: string; readonly "observationAt": string; readonly "cutoff": string; readonly "inputDigest": string; readonly "contentDigest": string; readonly "manifestDigest": string; readonly "rowCount": number; readonly "filename": string; readonly "sizeBytes": number; readonly "complete": true; }; readonly "contentType": "text/csv"; readonly "filename": string; readonly "content": string; readonly "sha256": string; readonly "sizeBytes": number; };