@sendly/node 3.15.2 → 3.15.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/dist/index.d.mts +9 -0
- package/dist/index.d.ts +9 -0
- package/dist/index.js +10 -0
- package/dist/index.mjs +10 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -2062,6 +2062,15 @@ declare class AccountResource {
|
|
|
2062
2062
|
limit?: number;
|
|
2063
2063
|
offset?: number;
|
|
2064
2064
|
}): Promise<CreditTransaction[]>;
|
|
2065
|
+
transferCredits(options: {
|
|
2066
|
+
targetOrganizationId: string;
|
|
2067
|
+
amount: number;
|
|
2068
|
+
}): Promise<{
|
|
2069
|
+
success: boolean;
|
|
2070
|
+
amount: number;
|
|
2071
|
+
sourceBalance: number;
|
|
2072
|
+
targetBalance: number;
|
|
2073
|
+
}>;
|
|
2065
2074
|
/**
|
|
2066
2075
|
* List API keys for the account
|
|
2067
2076
|
*
|
package/dist/index.d.ts
CHANGED
|
@@ -2062,6 +2062,15 @@ declare class AccountResource {
|
|
|
2062
2062
|
limit?: number;
|
|
2063
2063
|
offset?: number;
|
|
2064
2064
|
}): Promise<CreditTransaction[]>;
|
|
2065
|
+
transferCredits(options: {
|
|
2066
|
+
targetOrganizationId: string;
|
|
2067
|
+
amount: number;
|
|
2068
|
+
}): Promise<{
|
|
2069
|
+
success: boolean;
|
|
2070
|
+
amount: number;
|
|
2071
|
+
sourceBalance: number;
|
|
2072
|
+
targetBalance: number;
|
|
2073
|
+
}>;
|
|
2065
2074
|
/**
|
|
2066
2075
|
* List API keys for the account
|
|
2067
2076
|
*
|
package/dist/index.js
CHANGED
|
@@ -1414,6 +1414,16 @@ var AccountResource = class {
|
|
|
1414
1414
|
});
|
|
1415
1415
|
return transactions;
|
|
1416
1416
|
}
|
|
1417
|
+
async transferCredits(options) {
|
|
1418
|
+
return this.http.request({
|
|
1419
|
+
method: "POST",
|
|
1420
|
+
path: "/credits/transfer",
|
|
1421
|
+
body: {
|
|
1422
|
+
targetOrganizationId: options.targetOrganizationId,
|
|
1423
|
+
amount: options.amount
|
|
1424
|
+
}
|
|
1425
|
+
});
|
|
1426
|
+
}
|
|
1417
1427
|
/**
|
|
1418
1428
|
* List API keys for the account
|
|
1419
1429
|
*
|
package/dist/index.mjs
CHANGED
|
@@ -1354,6 +1354,16 @@ var AccountResource = class {
|
|
|
1354
1354
|
});
|
|
1355
1355
|
return transactions;
|
|
1356
1356
|
}
|
|
1357
|
+
async transferCredits(options) {
|
|
1358
|
+
return this.http.request({
|
|
1359
|
+
method: "POST",
|
|
1360
|
+
path: "/credits/transfer",
|
|
1361
|
+
body: {
|
|
1362
|
+
targetOrganizationId: options.targetOrganizationId,
|
|
1363
|
+
amount: options.amount
|
|
1364
|
+
}
|
|
1365
|
+
});
|
|
1366
|
+
}
|
|
1357
1367
|
/**
|
|
1358
1368
|
* List API keys for the account
|
|
1359
1369
|
*
|