@archildata/client 0.8.3 → 0.8.6
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.
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/dist/api/index.d.mts
CHANGED
|
@@ -168,8 +168,8 @@ interface components {
|
|
|
168
168
|
* @example my-data-disk
|
|
169
169
|
*/
|
|
170
170
|
name: string;
|
|
171
|
-
/** @description Storage mount to attach
|
|
172
|
-
mounts
|
|
171
|
+
/** @description Storage mount to attach. Omit for archil-managed storage. */
|
|
172
|
+
mounts?: components["schemas"]["MountConfig"][];
|
|
173
173
|
/** @description Authentication methods for disk access */
|
|
174
174
|
authMethods?: components["schemas"]["DiskUser"][];
|
|
175
175
|
};
|
|
@@ -441,6 +441,8 @@ interface components {
|
|
|
441
441
|
bucketEndpoint?: string;
|
|
442
442
|
/** @description Prefix within the bucket */
|
|
443
443
|
bucketPrefix?: string;
|
|
444
|
+
/** @description Session identifier for IAM-authorized mounts */
|
|
445
|
+
sessionId?: string;
|
|
444
446
|
};
|
|
445
447
|
DiskMetrics: {
|
|
446
448
|
/** @description Data transfer amount with unit (e.g., "1.5 GB") */
|
|
@@ -459,6 +461,7 @@ interface components {
|
|
|
459
461
|
AuthorizedUser: {
|
|
460
462
|
/** @enum {string} */
|
|
461
463
|
type?: "token" | "awssts";
|
|
464
|
+
/** @description The user's principal identifier. Only populated for awssts type (the IAM ARN). Omitted for token type users to avoid exposing sensitive hashes. */
|
|
462
465
|
principal?: string;
|
|
463
466
|
nickname?: string;
|
|
464
467
|
tokenSuffix?: string;
|
package/dist/api/index.d.ts
CHANGED
|
@@ -168,8 +168,8 @@ interface components {
|
|
|
168
168
|
* @example my-data-disk
|
|
169
169
|
*/
|
|
170
170
|
name: string;
|
|
171
|
-
/** @description Storage mount to attach
|
|
172
|
-
mounts
|
|
171
|
+
/** @description Storage mount to attach. Omit for archil-managed storage. */
|
|
172
|
+
mounts?: components["schemas"]["MountConfig"][];
|
|
173
173
|
/** @description Authentication methods for disk access */
|
|
174
174
|
authMethods?: components["schemas"]["DiskUser"][];
|
|
175
175
|
};
|
|
@@ -441,6 +441,8 @@ interface components {
|
|
|
441
441
|
bucketEndpoint?: string;
|
|
442
442
|
/** @description Prefix within the bucket */
|
|
443
443
|
bucketPrefix?: string;
|
|
444
|
+
/** @description Session identifier for IAM-authorized mounts */
|
|
445
|
+
sessionId?: string;
|
|
444
446
|
};
|
|
445
447
|
DiskMetrics: {
|
|
446
448
|
/** @description Data transfer amount with unit (e.g., "1.5 GB") */
|
|
@@ -459,6 +461,7 @@ interface components {
|
|
|
459
461
|
AuthorizedUser: {
|
|
460
462
|
/** @enum {string} */
|
|
461
463
|
type?: "token" | "awssts";
|
|
464
|
+
/** @description The user's principal identifier. Only populated for awssts type (the IAM ARN). Omitted for token type users to avoid exposing sensitive hashes. */
|
|
462
465
|
principal?: string;
|
|
463
466
|
nickname?: string;
|
|
464
467
|
tokenSuffix?: string;
|