@gymspace/sdk 1.4.3 → 1.4.5
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 +3 -0
- package/dist/index.d.ts +3 -0
- package/package.json +1 -1
- package/src/models/gyms.ts +3 -0
package/dist/index.d.mts
CHANGED
|
@@ -429,6 +429,7 @@ declare class OrganizationsResource extends BaseResource {
|
|
|
429
429
|
|
|
430
430
|
interface CreateGymDto {
|
|
431
431
|
name: string;
|
|
432
|
+
description?: string;
|
|
432
433
|
address?: string;
|
|
433
434
|
city?: string;
|
|
434
435
|
state?: string;
|
|
@@ -442,6 +443,7 @@ interface CreateGymDto {
|
|
|
442
443
|
}
|
|
443
444
|
interface UpdateGymDto {
|
|
444
445
|
name?: string;
|
|
446
|
+
description?: string;
|
|
445
447
|
address?: string;
|
|
446
448
|
city?: string;
|
|
447
449
|
state?: string;
|
|
@@ -503,6 +505,7 @@ interface Gym {
|
|
|
503
505
|
organizationId: string;
|
|
504
506
|
name: string;
|
|
505
507
|
slug: string;
|
|
508
|
+
description?: string;
|
|
506
509
|
address?: string;
|
|
507
510
|
city?: string;
|
|
508
511
|
state?: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -429,6 +429,7 @@ declare class OrganizationsResource extends BaseResource {
|
|
|
429
429
|
|
|
430
430
|
interface CreateGymDto {
|
|
431
431
|
name: string;
|
|
432
|
+
description?: string;
|
|
432
433
|
address?: string;
|
|
433
434
|
city?: string;
|
|
434
435
|
state?: string;
|
|
@@ -442,6 +443,7 @@ interface CreateGymDto {
|
|
|
442
443
|
}
|
|
443
444
|
interface UpdateGymDto {
|
|
444
445
|
name?: string;
|
|
446
|
+
description?: string;
|
|
445
447
|
address?: string;
|
|
446
448
|
city?: string;
|
|
447
449
|
state?: string;
|
|
@@ -503,6 +505,7 @@ interface Gym {
|
|
|
503
505
|
organizationId: string;
|
|
504
506
|
name: string;
|
|
505
507
|
slug: string;
|
|
508
|
+
description?: string;
|
|
506
509
|
address?: string;
|
|
507
510
|
city?: string;
|
|
508
511
|
state?: string;
|
package/package.json
CHANGED
package/src/models/gyms.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
export interface CreateGymDto {
|
|
2
2
|
name: string;
|
|
3
|
+
description?: string;
|
|
3
4
|
address?: string;
|
|
4
5
|
city?: string;
|
|
5
6
|
state?: string;
|
|
@@ -14,6 +15,7 @@ export interface CreateGymDto {
|
|
|
14
15
|
|
|
15
16
|
export interface UpdateGymDto {
|
|
16
17
|
name?: string;
|
|
18
|
+
description?: string;
|
|
17
19
|
address?: string;
|
|
18
20
|
city?: string;
|
|
19
21
|
state?: string;
|
|
@@ -82,6 +84,7 @@ export interface Gym {
|
|
|
82
84
|
organizationId: string;
|
|
83
85
|
name: string;
|
|
84
86
|
slug: string;
|
|
87
|
+
description?: string;
|
|
85
88
|
address?: string;
|
|
86
89
|
city?: string;
|
|
87
90
|
state?: string;
|