@ar.io/sdk 1.2.0-alpha.2 → 1.2.0-alpha.3
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/bundles/web.bundle.min.js +145 -152
- package/lib/cjs/common/io.js +1 -0
- package/lib/cjs/version.js +1 -1
- package/lib/esm/common/io.js +1 -0
- package/lib/esm/version.js +1 -1
- package/lib/types/common/io.d.ts +1 -0
- package/lib/types/io.d.ts +1 -0
- package/lib/types/version.d.ts +1 -1
- package/package.json +1 -1
package/lib/cjs/common/io.js
CHANGED
|
@@ -480,6 +480,7 @@ class IOWriteable extends IOReadable {
|
|
|
480
480
|
{ name: 'Name', value: params.name },
|
|
481
481
|
{ name: 'Type', value: params.type },
|
|
482
482
|
{ name: 'Years', value: params.years?.toString() },
|
|
483
|
+
{ name: 'ProcessId', value: params.processId },
|
|
483
484
|
];
|
|
484
485
|
const prunedTags = allTags.filter((tag) => tag.value !== undefined);
|
|
485
486
|
return this.process.send({
|
package/lib/cjs/version.js
CHANGED
package/lib/esm/common/io.js
CHANGED
|
@@ -472,6 +472,7 @@ export class IOWriteable extends IOReadable {
|
|
|
472
472
|
{ name: 'Name', value: params.name },
|
|
473
473
|
{ name: 'Type', value: params.type },
|
|
474
474
|
{ name: 'Years', value: params.years?.toString() },
|
|
475
|
+
{ name: 'ProcessId', value: params.processId },
|
|
475
476
|
];
|
|
476
477
|
const prunedTags = allTags.filter((tag) => tag.value !== undefined);
|
|
477
478
|
return this.process.send({
|
package/lib/esm/version.js
CHANGED
package/lib/types/common/io.d.ts
CHANGED
|
@@ -107,6 +107,7 @@ export declare class IOWriteable extends IOReadable implements AoIOWrite {
|
|
|
107
107
|
name: string;
|
|
108
108
|
years?: number;
|
|
109
109
|
type: 'lease' | 'permabuy';
|
|
110
|
+
processId: string;
|
|
110
111
|
}, options?: WriteOptions): Promise<AoMessageResult>;
|
|
111
112
|
extendLease(params: {
|
|
112
113
|
name: string;
|
package/lib/types/io.d.ts
CHANGED
package/lib/types/version.d.ts
CHANGED