attlaz-client 1.38.1 → 1.38.2
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.
|
@@ -39,7 +39,8 @@ export class WorkspaceMemberEndpoint extends Endpoint {
|
|
|
39
39
|
}
|
|
40
40
|
}
|
|
41
41
|
async getWorkspaceInviteByCode(inviteCode) {
|
|
42
|
-
const cmd = '/workspaces/invites
|
|
42
|
+
const cmd = new QueryString('/workspaces/invites');
|
|
43
|
+
cmd.set('inviteCode', inviteCode);
|
|
43
44
|
const rawInvite = await this.requestObject(cmd, null, WorkspaceMemberInvite2.parse, 'GET', false);
|
|
44
45
|
if (rawInvite !== null) {
|
|
45
46
|
return rawInvite.getData();
|
package/dist/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const VERSION = "1.38.
|
|
1
|
+
export declare const VERSION = "1.38.1";
|
package/dist/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = "1.38.
|
|
1
|
+
export const VERSION = "1.38.1";
|