@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.
@@ -0,0 +1,8 @@
1
+ export declare class ColorCodeDto {
2
+ id?: number;
3
+ name?: string;
4
+ description?: string;
5
+ lightValue?: string;
6
+ baseValue?: string;
7
+ darkValue?: string;
8
+ }
@@ -0,0 +1,7 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ColorCodeDto = void 0;
4
+ class ColorCodeDto {
5
+ }
6
+ exports.ColorCodeDto = ColorCodeDto;
7
+ //# sourceMappingURL=color-code.dto.js.map
@@ -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,7 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.PublicOrganizationDto = void 0;
4
+ class PublicOrganizationDto {
5
+ }
6
+ exports.PublicOrganizationDto = PublicOrganizationDto;
7
+ //# sourceMappingURL=organization-public.dto.js.map
@@ -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"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bondsports/types",
3
- "version": "2.4.77-a-1",
3
+ "version": "2.4.78-a-1",
4
4
  "description": "backend types module for Bond-Sports",
5
5
  "main": "./dist/index.js",
6
6
  "scripts": {