@bondsports/types 2.4.77-a-1 → 2.4.78-a-1
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/tsconfig.build.tsbuildinfo +1 -1
- package/dist/types/organization/dto/color-code.dto.d.ts +8 -0
- package/dist/types/organization/dto/color-code.dto.js +7 -0
- package/dist/types/organization/dto/color-code.dto.js.map +1 -0
- package/dist/types/organization/dto/index.d.ts +3 -0
- package/dist/types/organization/dto/index.js +3 -0
- package/dist/types/organization/dto/index.js.map +1 -1
- package/dist/types/organization/dto/organization-backoffice.dto.d.ts +10 -0
- package/dist/types/organization/dto/organization-backoffice.dto.js +8 -0
- package/dist/types/organization/dto/organization-backoffice.dto.js.map +1 -0
- package/dist/types/organization/dto/organization-public.dto.d.ts +24 -0
- package/dist/types/organization/dto/organization-public.dto.js +7 -0
- package/dist/types/organization/dto/organization-public.dto.js.map +1 -0
- package/package.json +1 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"color-code.dto.js","sourceRoot":"","sources":["../../../../src/types/organization/dto/color-code.dto.ts"],"names":[],"mappings":";;;AACA,MAAa,YAAY;CAYxB;AAZD,oCAYC"}
|
|
@@ -1,5 +1,8 @@
|
|
|
1
|
+
export * from './color-code.dto';
|
|
2
|
+
export * from './organization-backoffice.dto';
|
|
1
3
|
export * from './organization-branding.dto';
|
|
2
4
|
export * from './organization-payment-method.dto';
|
|
5
|
+
export * from './organization-public.dto';
|
|
3
6
|
export * from './organization-users.dto';
|
|
4
7
|
export * from './organization.dto';
|
|
5
8
|
export * from './reason.dto';
|
|
@@ -14,8 +14,11 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
14
14
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
15
|
};
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./color-code.dto"), exports);
|
|
18
|
+
__exportStar(require("./organization-backoffice.dto"), exports);
|
|
17
19
|
__exportStar(require("./organization-branding.dto"), exports);
|
|
18
20
|
__exportStar(require("./organization-payment-method.dto"), exports);
|
|
21
|
+
__exportStar(require("./organization-public.dto"), exports);
|
|
19
22
|
__exportStar(require("./organization-users.dto"), exports);
|
|
20
23
|
__exportStar(require("./organization.dto"), exports);
|
|
21
24
|
__exportStar(require("./reason.dto"), exports);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/types/organization/dto/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,8DAA4C;AAC5C,oEAAkD;AAClD,2DAAyC;AACzC,qDAAmC;AACnC,+CAA6B"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/types/organization/dto/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,mDAAiC;AACjC,gEAA8C;AAC9C,8DAA4C;AAC5C,oEAAkD;AAClD,4DAA0C;AAC1C,2DAAyC;AACzC,qDAAmC;AACnC,+CAA6B"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { LinkedAccountStatus } from '../../payment/types/enums/linked-account.enums';
|
|
2
|
+
import { PublicOrganizationDto } from './organization-public.dto';
|
|
3
|
+
export declare class BackofficeOrganizationDto extends PublicOrganizationDto {
|
|
4
|
+
addressId?: number;
|
|
5
|
+
sports?: number[];
|
|
6
|
+
paymentSettings?: Record<string, unknown>;
|
|
7
|
+
settings?: Record<string, unknown>;
|
|
8
|
+
stripeAccount?: LinkedAccountStatus;
|
|
9
|
+
stripeAccountCustomAccount?: LinkedAccountStatus;
|
|
10
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.BackofficeOrganizationDto = void 0;
|
|
4
|
+
const organization_public_dto_1 = require("./organization-public.dto");
|
|
5
|
+
class BackofficeOrganizationDto extends organization_public_dto_1.PublicOrganizationDto {
|
|
6
|
+
}
|
|
7
|
+
exports.BackofficeOrganizationDto = BackofficeOrganizationDto;
|
|
8
|
+
//# sourceMappingURL=organization-backoffice.dto.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"organization-backoffice.dto.js","sourceRoot":"","sources":["../../../../src/types/organization/dto/organization-backoffice.dto.ts"],"names":[],"mappings":";;;AAEA,uEAAkE;AAElE,MAAa,yBAA0B,SAAQ,+CAAqB;CAYnE;AAZD,8DAYC"}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { AddressDto } from '../../address/dto/address.dto';
|
|
2
|
+
import { SimpleMediaDto } from '../../media/dto/media-public.dto';
|
|
3
|
+
import { CurrencyEnum } from '../../services/enums.service';
|
|
4
|
+
import { ColorCodeDto } from './color-code.dto';
|
|
5
|
+
import { OrganizationBrandingDto } from './organization-branding.dto';
|
|
6
|
+
export declare class PublicOrganizationDto {
|
|
7
|
+
id?: number;
|
|
8
|
+
name?: string;
|
|
9
|
+
email?: string;
|
|
10
|
+
phoneNumber?: string;
|
|
11
|
+
timezone?: string;
|
|
12
|
+
currency?: CurrencyEnum;
|
|
13
|
+
GA4MeasurementId?: string;
|
|
14
|
+
GTMContainerId?: string;
|
|
15
|
+
questionnaireId?: number;
|
|
16
|
+
website?: string;
|
|
17
|
+
facebook?: string;
|
|
18
|
+
twitter?: string;
|
|
19
|
+
instagram?: string;
|
|
20
|
+
brandings?: OrganizationBrandingDto[];
|
|
21
|
+
colorCodes?: ColorCodeDto[];
|
|
22
|
+
mainMedia?: SimpleMediaDto;
|
|
23
|
+
address?: AddressDto;
|
|
24
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"organization-public.dto.js","sourceRoot":"","sources":["../../../../src/types/organization/dto/organization-public.dto.ts"],"names":[],"mappings":";;;AAOA,MAAa,qBAAqB;CAkCjC;AAlCD,sDAkCC"}
|