@devopness/sdk-js 3.1.1 → 3.1.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.
@@ -32,12 +32,6 @@ export interface InvitationRelation {
32
32
  * @memberof InvitationRelation
33
33
  */
34
34
  type: TeamInvitationType;
35
- /**
36
- * The token used to accept the public invitation
37
- * @type {string}
38
- * @memberof InvitationRelation
39
- */
40
- token: string | null;
41
35
  /**
42
36
  * The email of the user that has been invited to team
43
37
  * @type {string}
@@ -56,6 +50,12 @@ export interface InvitationRelation {
56
50
  * @memberof InvitationRelation
57
51
  */
58
52
  status_human_readable: string;
53
+ /**
54
+ * The URL to accept the public invitation
55
+ * @type {string}
56
+ * @memberof InvitationRelation
57
+ */
58
+ public_accept_url: string | null;
59
59
  /**
60
60
  * The IP of the user who accepted the invitation
61
61
  * @type {string}
@@ -31,12 +31,6 @@ export interface Invitation {
31
31
  * @memberof Invitation
32
32
  */
33
33
  type: TeamInvitationType;
34
- /**
35
- * The token used to accept the public invitation
36
- * @type {string}
37
- * @memberof Invitation
38
- */
39
- token: string | null;
40
34
  /**
41
35
  * The email of the user that has been invited to team
42
36
  * @type {string}
@@ -55,6 +49,12 @@ export interface Invitation {
55
49
  * @memberof Invitation
56
50
  */
57
51
  status_human_readable: string;
52
+ /**
53
+ * The URL to accept the public invitation
54
+ * @type {string}
55
+ * @memberof Invitation
56
+ */
57
+ public_accept_url: string | null;
58
58
  /**
59
59
  * The IP of the user who accepted the invitation
60
60
  * @type {string}
@@ -46,7 +46,7 @@ export interface OrganizationRelation {
46
46
  * @type {UserRelation}
47
47
  * @memberof OrganizationRelation
48
48
  */
49
- owner: UserRelation;
49
+ owner?: UserRelation;
50
50
  /**
51
51
  * The date and time when the organization was created
52
52
  * @type {string}
@@ -32,12 +32,6 @@ export interface TeamInvitationRelation {
32
32
  * @memberof TeamInvitationRelation
33
33
  */
34
34
  type: TeamInvitationType;
35
- /**
36
- * The token used to accept the public invitation
37
- * @type {string}
38
- * @memberof TeamInvitationRelation
39
- */
40
- token: string | null;
41
35
  /**
42
36
  * The email of the user that has been invited to team
43
37
  * @type {string}
@@ -56,6 +50,12 @@ export interface TeamInvitationRelation {
56
50
  * @memberof TeamInvitationRelation
57
51
  */
58
52
  status_human_readable: string;
53
+ /**
54
+ * The URL to accept the public invitation
55
+ * @type {string}
56
+ * @memberof TeamInvitationRelation
57
+ */
58
+ public_accept_url: string | null;
59
59
  /**
60
60
  * The IP of the user who accepted the invitation
61
61
  * @type {string}
@@ -39,7 +39,7 @@ export interface UserRelation {
39
39
  * @type {string}
40
40
  * @memberof UserRelation
41
41
  */
42
- url_slug?: string;
42
+ url_slug: string;
43
43
  /**
44
44
  *
45
45
  * @type {Language}
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/package.json",
3
3
  "name": "@devopness/sdk-js",
4
- "version": "3.1.1",
4
+ "version": "3.1.3",
5
5
  "publishConfig": {
6
6
  "access": "public"
7
7
  },
@@ -51,7 +51,7 @@
51
51
  },
52
52
  "homepage": "https://github.com/devopness/devopness#readme",
53
53
  "devDependencies": {
54
- "@eslint/js": "^9.37.0",
54
+ "@eslint/js": "^9.39.0",
55
55
  "@openapitools/openapi-generator-cli": "^2.25.0",
56
56
  "@types/jest": "^30.0.0",
57
57
  "@typescript-eslint/parser": "^8.46.2",
@@ -70,7 +70,7 @@
70
70
  },
71
71
  "dependencies": {
72
72
  "@types/parse-link-header": "^2.0.3",
73
- "axios": "^1.13.0",
73
+ "axios": "^1.13.1",
74
74
  "parse-link-header": "^2.0.0"
75
75
  }
76
76
  }