tonightpass 0.0.120 → 0.0.121
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 +14 -14
- package/dist/index.d.ts +14 -14
- package/dist/index.js.map +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -585,6 +585,20 @@ declare class CreateOrganizationIdentityDto {
|
|
|
585
585
|
socialLinks?: OrganizationSocialLink[];
|
|
586
586
|
}
|
|
587
587
|
|
|
588
|
+
declare class UpdateOrganizationDto {
|
|
589
|
+
slug?: string;
|
|
590
|
+
identity?: UpdateOrganizationIdentityDto;
|
|
591
|
+
members?: UpdateOrganizationMemberDto[];
|
|
592
|
+
location?: Location;
|
|
593
|
+
}
|
|
594
|
+
declare class UpdateOrganizationIdentityDto {
|
|
595
|
+
displayName?: string;
|
|
596
|
+
description?: string;
|
|
597
|
+
avatarUrl?: string;
|
|
598
|
+
bannerUrl?: string;
|
|
599
|
+
socialLinks?: OrganizationSocialLink[];
|
|
600
|
+
}
|
|
601
|
+
|
|
588
602
|
declare class CreateOrganizationEventOrderDto {
|
|
589
603
|
cart: string[];
|
|
590
604
|
}
|
|
@@ -655,20 +669,6 @@ declare class UpdateOrganizationEventDto implements DeepPartial<CreateOrganizati
|
|
|
655
669
|
endAt?: Date;
|
|
656
670
|
}
|
|
657
671
|
|
|
658
|
-
declare class UpdateOrganizationDto {
|
|
659
|
-
slug?: string;
|
|
660
|
-
identity?: UpdateOrganizationIdentityDto;
|
|
661
|
-
members?: UpdateOrganizationEventDto[];
|
|
662
|
-
location?: Location;
|
|
663
|
-
}
|
|
664
|
-
declare class UpdateOrganizationIdentityDto {
|
|
665
|
-
displayName?: string;
|
|
666
|
-
description?: string;
|
|
667
|
-
avatarUrl?: string;
|
|
668
|
-
bannerUrl?: string;
|
|
669
|
-
socialLinks?: OrganizationSocialLink[];
|
|
670
|
-
}
|
|
671
|
-
|
|
672
672
|
declare class CreateUserDto {
|
|
673
673
|
identifier: CreateUserIdentifierDto;
|
|
674
674
|
identity: CreateUserIdentityDto;
|
package/dist/index.d.ts
CHANGED
|
@@ -585,6 +585,20 @@ declare class CreateOrganizationIdentityDto {
|
|
|
585
585
|
socialLinks?: OrganizationSocialLink[];
|
|
586
586
|
}
|
|
587
587
|
|
|
588
|
+
declare class UpdateOrganizationDto {
|
|
589
|
+
slug?: string;
|
|
590
|
+
identity?: UpdateOrganizationIdentityDto;
|
|
591
|
+
members?: UpdateOrganizationMemberDto[];
|
|
592
|
+
location?: Location;
|
|
593
|
+
}
|
|
594
|
+
declare class UpdateOrganizationIdentityDto {
|
|
595
|
+
displayName?: string;
|
|
596
|
+
description?: string;
|
|
597
|
+
avatarUrl?: string;
|
|
598
|
+
bannerUrl?: string;
|
|
599
|
+
socialLinks?: OrganizationSocialLink[];
|
|
600
|
+
}
|
|
601
|
+
|
|
588
602
|
declare class CreateOrganizationEventOrderDto {
|
|
589
603
|
cart: string[];
|
|
590
604
|
}
|
|
@@ -655,20 +669,6 @@ declare class UpdateOrganizationEventDto implements DeepPartial<CreateOrganizati
|
|
|
655
669
|
endAt?: Date;
|
|
656
670
|
}
|
|
657
671
|
|
|
658
|
-
declare class UpdateOrganizationDto {
|
|
659
|
-
slug?: string;
|
|
660
|
-
identity?: UpdateOrganizationIdentityDto;
|
|
661
|
-
members?: UpdateOrganizationEventDto[];
|
|
662
|
-
location?: Location;
|
|
663
|
-
}
|
|
664
|
-
declare class UpdateOrganizationIdentityDto {
|
|
665
|
-
displayName?: string;
|
|
666
|
-
description?: string;
|
|
667
|
-
avatarUrl?: string;
|
|
668
|
-
bannerUrl?: string;
|
|
669
|
-
socialLinks?: OrganizationSocialLink[];
|
|
670
|
-
}
|
|
671
|
-
|
|
672
672
|
declare class CreateUserDto {
|
|
673
673
|
identifier: CreateUserIdentifierDto;
|
|
674
674
|
identity: CreateUserIdentityDto;
|