@zernio/node 0.2.109 → 0.2.110
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 +4 -0
- package/dist/index.d.ts +4 -0
- package/package.json +1 -1
- package/src/generated/types.gen.ts +4 -0
package/dist/index.d.mts
CHANGED
|
@@ -5052,6 +5052,10 @@ type ListAccountGroupsError = ({
|
|
|
5052
5052
|
type CreateAccountGroupData = {
|
|
5053
5053
|
body: {
|
|
5054
5054
|
name: string;
|
|
5055
|
+
/**
|
|
5056
|
+
* ID of the profile this group belongs to. All accountIds must belong to this profile.
|
|
5057
|
+
*/
|
|
5058
|
+
profileId: string;
|
|
5055
5059
|
accountIds: Array<(string)>;
|
|
5056
5060
|
};
|
|
5057
5061
|
};
|
package/dist/index.d.ts
CHANGED
|
@@ -5052,6 +5052,10 @@ type ListAccountGroupsError = ({
|
|
|
5052
5052
|
type CreateAccountGroupData = {
|
|
5053
5053
|
body: {
|
|
5054
5054
|
name: string;
|
|
5055
|
+
/**
|
|
5056
|
+
* ID of the profile this group belongs to. All accountIds must belong to this profile.
|
|
5057
|
+
*/
|
|
5058
|
+
profileId: string;
|
|
5055
5059
|
accountIds: Array<(string)>;
|
|
5056
5060
|
};
|
|
5057
5061
|
};
|
package/package.json
CHANGED
|
@@ -4686,6 +4686,10 @@ export type ListAccountGroupsError = ({
|
|
|
4686
4686
|
export type CreateAccountGroupData = {
|
|
4687
4687
|
body: {
|
|
4688
4688
|
name: string;
|
|
4689
|
+
/**
|
|
4690
|
+
* ID of the profile this group belongs to. All accountIds must belong to this profile.
|
|
4691
|
+
*/
|
|
4692
|
+
profileId: string;
|
|
4689
4693
|
accountIds: Array<(string)>;
|
|
4690
4694
|
};
|
|
4691
4695
|
};
|