@bondsports/types 2.4.55 → 2.4.56-squad-b-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.
Files changed (26) hide show
  1. package/dist/tsconfig.build.tsbuildinfo +1 -1
  2. package/dist/types/entity/Invoice.d.ts +1 -0
  3. package/dist/types/entity/Invoice.js.map +1 -1
  4. package/dist/types/invoice/dto/index.d.ts +1 -0
  5. package/dist/types/invoice/dto/index.js +1 -0
  6. package/dist/types/invoice/dto/index.js.map +1 -1
  7. package/dist/types/invoice/dto/organization-invoice.dto.d.ts +66 -0
  8. package/dist/types/invoice/dto/organization-invoice.dto.js +42 -0
  9. package/dist/types/invoice/dto/organization-invoice.dto.js.map +1 -0
  10. package/dist/types/organization/dto/index.d.ts +1 -0
  11. package/dist/types/organization/dto/index.js +1 -0
  12. package/dist/types/organization/dto/index.js.map +1 -1
  13. package/dist/types/organization/dto/organization-branding.dto.d.ts +13 -0
  14. package/dist/types/organization/dto/organization-branding.dto.js +16 -0
  15. package/dist/types/organization/dto/organization-branding.dto.js.map +1 -0
  16. package/dist/types/organization/entities/Organization.d.ts +0 -1
  17. package/dist/types/organization/entities/Organization.js.map +1 -1
  18. package/dist/types/organization/entities/OrganizationBranding.d.ts +3 -2
  19. package/dist/types/organization/entities/OrganizationBranding.js.map +1 -1
  20. package/dist/types/organization/types/index.d.ts +1 -0
  21. package/dist/types/organization/types/index.js +1 -0
  22. package/dist/types/organization/types/index.js.map +1 -1
  23. package/dist/types/organization/types/organization-branding.enums.d.ts +36 -0
  24. package/dist/types/organization/types/organization-branding.enums.js +41 -0
  25. package/dist/types/organization/types/organization-branding.enums.js.map +1 -0
  26. package/package.json +1 -1
@@ -26,6 +26,7 @@ export declare class Invoice extends BondBaseEntity {
26
26
  sentForClientDate?: Date;
27
27
  payingUserId?: number;
28
28
  owner?: User;
29
+ organizationId?: number;
29
30
  invoiceToPayments: InvoiceToPayment[];
30
31
  payments: Payment[];
31
32
  lineItems: LineItems[];
@@ -1 +1 @@
1
- {"version":3,"file":"Invoice.js","sourceRoot":"","sources":["../../../src/types/entity/Invoice.ts"],"names":[],"mappings":";;;AAqBA,qDAAkD;AAOlD,MAAa,OAAQ,SAAQ,+BAAc;CA2G1C;AA3GD,0BA2GC"}
1
+ {"version":3,"file":"Invoice.js","sourceRoot":"","sources":["../../../src/types/entity/Invoice.ts"],"names":[],"mappings":";;;AAqBA,qDAAkD;AAOlD,MAAa,OAAQ,SAAQ,+BAAc;CA6G1C;AA7GD,0BA6GC"}
@@ -1,4 +1,5 @@
1
1
  export * from './invoice-history.dto';
2
2
  export * from './invoice.dto';
3
3
  export * from './lineItem.dto';
4
+ export * from './organization-invoice.dto';
4
5
  export * from './share-invoice.dto';
@@ -17,5 +17,6 @@ Object.defineProperty(exports, "__esModule", { value: true });
17
17
  __exportStar(require("./invoice-history.dto"), exports);
18
18
  __exportStar(require("./invoice.dto"), exports);
19
19
  __exportStar(require("./lineItem.dto"), exports);
20
+ __exportStar(require("./organization-invoice.dto"), exports);
20
21
  __exportStar(require("./share-invoice.dto"), exports);
21
22
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/types/invoice/dto/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,wDAAsC;AACtC,gDAA8B;AAC9B,iDAA+B;AAC/B,sDAAoC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/types/invoice/dto/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,wDAAsC;AACtC,gDAA8B;AAC9B,iDAA+B;AAC/B,6DAA2C;AAC3C,sDAAoC"}
@@ -0,0 +1,66 @@
1
+ import { PaginationSearchQuery } from '../../dto/general.dto';
2
+ import { DueDateTypeEnum, PaymentMethodTypeEnum, PaymentStatusEnum } from '../../payment/types/enums/payment.enums';
3
+ import { PlatformsEnum } from '../../services/enums.service';
4
+ export declare enum OrganizationInvoicePaymentStatusInputEnum {
5
+ NOT_PAID = "not_paid",
6
+ PARTIAL_PAYMENT = "partial",
7
+ FULLY_PAID = "paid",
8
+ REFUNDED = "refunded",
9
+ DISPUTED = "disputed",
10
+ CHARGEBACK = "chargeback",
11
+ VOID = "void",
12
+ DISCOUNT = "discount",
13
+ REVERT_DISCOUNT = "revert_discount",
14
+ REVERT = "revert",
15
+ PENDING = "pending",
16
+ RETRY_IN_PROGRESS = "retry_in_progress",
17
+ SCHEDULED = "scheduled"
18
+ }
19
+ export declare const ORGANIZATION_INVOICE_SCHEDULED_PAYMENT_STATUS = OrganizationInvoicePaymentStatusInputEnum.SCHEDULED;
20
+ export declare enum OrganizationInvoicesOrderByEnum {
21
+ INVOICE_ID = "invoiceId",
22
+ PAYING_USER_NAME = "payingUserName",
23
+ PAYING_USER_ID = "payingUserId",
24
+ CREATED_AT = "createdAt",
25
+ DUE_DATE = "dueDate",
26
+ TOTAL_AMOUNT = "totalAmount",
27
+ PAID_AMOUNT = "paidAmount",
28
+ BALANCE_DUE = "balanceDue",
29
+ PAYMENT_STATUS = "paymentStatus",
30
+ AGING = "aging",
31
+ PLATFORM = "platform"
32
+ }
33
+ export declare class GetOrganizationInvoicesQueryDto extends PaginationSearchQuery<OrganizationInvoicesOrderByEnum> {
34
+ paymentStatuses?: OrganizationInvoicePaymentStatusInputEnum[];
35
+ paymentTypes?: PaymentMethodTypeEnum[];
36
+ isScheduled?: boolean;
37
+ isAnonymousPayingUser?: boolean;
38
+ hasDueDate?: boolean;
39
+ isOverdue?: boolean;
40
+ platforms?: PlatformsEnum[];
41
+ createdAtFrom?: Date;
42
+ createdAtTo?: Date;
43
+ dueDateFrom?: Date;
44
+ dueDateTo?: Date;
45
+ orderBy?: OrganizationInvoicesOrderByEnum;
46
+ }
47
+ export declare class OrganizationInvoiceDto {
48
+ invoiceId: number;
49
+ payingUserName?: string;
50
+ payingUserId: number;
51
+ payingUserEmail?: string;
52
+ createdAt: Date;
53
+ dueDate?: Date;
54
+ dueDateType?: DueDateTypeEnum;
55
+ totalAmount: number;
56
+ paidAmount: number;
57
+ paymentStatus: PaymentStatusEnum;
58
+ isScheduled: boolean;
59
+ isOverdue: boolean;
60
+ isPublic: boolean;
61
+ paymentType?: PaymentMethodTypeEnum;
62
+ paymentTypes?: PaymentMethodTypeEnum[];
63
+ platform?: PlatformsEnum;
64
+ creatingUserName?: string;
65
+ creatingUserEmail?: string;
66
+ }
@@ -0,0 +1,42 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.OrganizationInvoiceDto = exports.GetOrganizationInvoicesQueryDto = exports.OrganizationInvoicesOrderByEnum = exports.ORGANIZATION_INVOICE_SCHEDULED_PAYMENT_STATUS = exports.OrganizationInvoicePaymentStatusInputEnum = void 0;
4
+ const general_dto_1 = require("../../dto/general.dto");
5
+ var OrganizationInvoicePaymentStatusInputEnum;
6
+ (function (OrganizationInvoicePaymentStatusInputEnum) {
7
+ OrganizationInvoicePaymentStatusInputEnum["NOT_PAID"] = "not_paid";
8
+ OrganizationInvoicePaymentStatusInputEnum["PARTIAL_PAYMENT"] = "partial";
9
+ OrganizationInvoicePaymentStatusInputEnum["FULLY_PAID"] = "paid";
10
+ OrganizationInvoicePaymentStatusInputEnum["REFUNDED"] = "refunded";
11
+ OrganizationInvoicePaymentStatusInputEnum["DISPUTED"] = "disputed";
12
+ OrganizationInvoicePaymentStatusInputEnum["CHARGEBACK"] = "chargeback";
13
+ OrganizationInvoicePaymentStatusInputEnum["VOID"] = "void";
14
+ OrganizationInvoicePaymentStatusInputEnum["DISCOUNT"] = "discount";
15
+ OrganizationInvoicePaymentStatusInputEnum["REVERT_DISCOUNT"] = "revert_discount";
16
+ OrganizationInvoicePaymentStatusInputEnum["REVERT"] = "revert";
17
+ OrganizationInvoicePaymentStatusInputEnum["PENDING"] = "pending";
18
+ OrganizationInvoicePaymentStatusInputEnum["RETRY_IN_PROGRESS"] = "retry_in_progress";
19
+ OrganizationInvoicePaymentStatusInputEnum["SCHEDULED"] = "scheduled";
20
+ })(OrganizationInvoicePaymentStatusInputEnum = exports.OrganizationInvoicePaymentStatusInputEnum || (exports.OrganizationInvoicePaymentStatusInputEnum = {}));
21
+ exports.ORGANIZATION_INVOICE_SCHEDULED_PAYMENT_STATUS = OrganizationInvoicePaymentStatusInputEnum.SCHEDULED;
22
+ var OrganizationInvoicesOrderByEnum;
23
+ (function (OrganizationInvoicesOrderByEnum) {
24
+ OrganizationInvoicesOrderByEnum["INVOICE_ID"] = "invoiceId";
25
+ OrganizationInvoicesOrderByEnum["PAYING_USER_NAME"] = "payingUserName";
26
+ OrganizationInvoicesOrderByEnum["PAYING_USER_ID"] = "payingUserId";
27
+ OrganizationInvoicesOrderByEnum["CREATED_AT"] = "createdAt";
28
+ OrganizationInvoicesOrderByEnum["DUE_DATE"] = "dueDate";
29
+ OrganizationInvoicesOrderByEnum["TOTAL_AMOUNT"] = "totalAmount";
30
+ OrganizationInvoicesOrderByEnum["PAID_AMOUNT"] = "paidAmount";
31
+ OrganizationInvoicesOrderByEnum["BALANCE_DUE"] = "balanceDue";
32
+ OrganizationInvoicesOrderByEnum["PAYMENT_STATUS"] = "paymentStatus";
33
+ OrganizationInvoicesOrderByEnum["AGING"] = "aging";
34
+ OrganizationInvoicesOrderByEnum["PLATFORM"] = "platform";
35
+ })(OrganizationInvoicesOrderByEnum = exports.OrganizationInvoicesOrderByEnum || (exports.OrganizationInvoicesOrderByEnum = {}));
36
+ class GetOrganizationInvoicesQueryDto extends general_dto_1.PaginationSearchQuery {
37
+ }
38
+ exports.GetOrganizationInvoicesQueryDto = GetOrganizationInvoicesQueryDto;
39
+ class OrganizationInvoiceDto {
40
+ }
41
+ exports.OrganizationInvoiceDto = OrganizationInvoiceDto;
42
+ //# sourceMappingURL=organization-invoice.dto.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"organization-invoice.dto.js","sourceRoot":"","sources":["../../../../src/types/invoice/dto/organization-invoice.dto.ts"],"names":[],"mappings":";;;AACA,uDAA8D;AAI9D,IAAY,yCAcX;AAdD,WAAY,yCAAyC;IACpD,kEAAqB,CAAA;IACrB,wEAA2B,CAAA;IAC3B,gEAAmB,CAAA;IACnB,kEAAqB,CAAA;IACrB,kEAAqB,CAAA;IACrB,sEAAyB,CAAA;IACzB,0DAAa,CAAA;IACb,kEAAqB,CAAA;IACrB,gFAAmC,CAAA;IACnC,8DAAiB,CAAA;IACjB,gEAAmB,CAAA;IACnB,oFAAuC,CAAA;IACvC,oEAAuB,CAAA;AACxB,CAAC,EAdW,yCAAyC,GAAzC,iDAAyC,KAAzC,iDAAyC,QAcpD;AAEY,QAAA,6CAA6C,GAAG,yCAAyC,CAAC,SAAS,CAAC;AAEjH,IAAY,+BAYX;AAZD,WAAY,+BAA+B;IAC1C,2DAAwB,CAAA;IACxB,sEAAmC,CAAA;IACnC,kEAA+B,CAAA;IAC/B,2DAAwB,CAAA;IACxB,uDAAoB,CAAA;IACpB,+DAA4B,CAAA;IAC5B,6DAA0B,CAAA;IAC1B,6DAA0B,CAAA;IAC1B,mEAAgC,CAAA;IAChC,kDAAe,CAAA;IACf,wDAAqB,CAAA;AACtB,CAAC,EAZW,+BAA+B,GAA/B,uCAA+B,KAA/B,uCAA+B,QAY1C;AAED,MAAa,+BAAgC,SAAQ,mCAAsD;CAwB1G;AAxBD,0EAwBC;AAED,MAAa,sBAAsB;CAoClC;AApCD,wDAoCC"}
@@ -1,3 +1,4 @@
1
+ export * from './organization-branding.dto';
1
2
  export * from './organization-payment-method.dto';
2
3
  export * from './organization-users.dto';
3
4
  export * from './organization.dto';
@@ -14,6 +14,7 @@ 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("./organization-branding.dto"), exports);
17
18
  __exportStar(require("./organization-payment-method.dto"), exports);
18
19
  __exportStar(require("./organization-users.dto"), exports);
19
20
  __exportStar(require("./organization.dto"), exports);
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/types/organization/dto/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,oEAAkD;AAClD,2DAAyC;AACzC,qDAAmC;AACnC,+CAA6B"}
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"}
@@ -0,0 +1,13 @@
1
+ import { OrganizationBrandingKeyEnum } from '../types/organization-branding.enums';
2
+ import { OrganizationBaseEntityDto } from './organization.dto';
3
+ export declare class SetOrganizationBrandingValueDto {
4
+ key: OrganizationBrandingKeyEnum;
5
+ value: string;
6
+ }
7
+ export declare class SetOrganizationBrandingsDto {
8
+ brandings: SetOrganizationBrandingValueDto[];
9
+ }
10
+ export declare class OrganizationBrandingDto extends OrganizationBaseEntityDto {
11
+ key: OrganizationBrandingKeyEnum;
12
+ value: string;
13
+ }
@@ -0,0 +1,16 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.OrganizationBrandingDto = exports.SetOrganizationBrandingsDto = exports.SetOrganizationBrandingValueDto = void 0;
4
+ const organization_branding_enums_1 = require("../types/organization-branding.enums");
5
+ const organization_dto_1 = require("./organization.dto");
6
+ const MAX_ORGANIZATION_BRANDINGS = Object.keys(organization_branding_enums_1.OrganizationBrandingKeyEnum).length;
7
+ class SetOrganizationBrandingValueDto {
8
+ }
9
+ exports.SetOrganizationBrandingValueDto = SetOrganizationBrandingValueDto;
10
+ class SetOrganizationBrandingsDto {
11
+ }
12
+ exports.SetOrganizationBrandingsDto = SetOrganizationBrandingsDto;
13
+ class OrganizationBrandingDto extends organization_dto_1.OrganizationBaseEntityDto {
14
+ }
15
+ exports.OrganizationBrandingDto = OrganizationBrandingDto;
16
+ //# sourceMappingURL=organization-branding.dto.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"organization-branding.dto.js","sourceRoot":"","sources":["../../../../src/types/organization/dto/organization-branding.dto.ts"],"names":[],"mappings":";;;AACA,sFAAmF;AAEnF,yDAA+D;AAE/D,MAAM,0BAA0B,GAAG,MAAM,CAAC,IAAI,CAAC,yDAA2B,CAAC,CAAC,MAAM,CAAC;AAEnF,MAAa,+BAA+B;CAI3C;AAJD,0EAIC;AAED,MAAa,2BAA2B;CAEvC;AAFD,kEAEC;AAED,MAAa,uBAAwB,SAAQ,4CAAyB;CAIrE;AAJD,0DAIC"}
@@ -44,7 +44,6 @@ export declare class Organization extends BondBaseEntity {
44
44
  accountingStyles?: OrganizationAccountingStyleEnum | null;
45
45
  mainMedia: Media;
46
46
  brandings: OrganizationBranding[];
47
- brandingsV2?: OrganizationBranding[];
48
47
  uberOrganization: UberOrganization;
49
48
  fees: Fee[];
50
49
  paymentMethods: OrganizationPaymentMethod[];
@@ -1 +1 @@
1
- {"version":3,"file":"Organization.js","sourceRoot":"","sources":["../../../../src/types/organization/entities/Organization.ts"],"names":[],"mappings":";;;AAGA,gEAA6D;AAW7D,MAAa,YAAa,SAAQ,+BAAc;CA+F/C;AA/FD,oCA+FC"}
1
+ {"version":3,"file":"Organization.js","sourceRoot":"","sources":["../../../../src/types/organization/entities/Organization.ts"],"names":[],"mappings":";;;AAGA,gEAA6D;AAW7D,MAAa,YAAa,SAAQ,+BAAc;CA4F/C;AA5FD,oCA4FC"}
@@ -1,8 +1,9 @@
1
1
  import { OrganizationConnectionBaseEntity } from '../../entity/OrganizationConnectionBaseEntity';
2
+ import { OrganizationBrandingKeyEnum } from '../types/organization-branding.enums';
2
3
  import { Organization } from './Organization';
3
4
  export declare class OrganizationBranding extends OrganizationConnectionBaseEntity {
4
- key?: string;
5
+ key: OrganizationBrandingKeyEnum;
5
6
  value?: string;
6
- version: number;
7
+ deletedAt?: Date;
7
8
  organization: Organization;
8
9
  }
@@ -1 +1 @@
1
- {"version":3,"file":"OrganizationBranding.js","sourceRoot":"","sources":["../../../../src/types/organization/entities/OrganizationBranding.ts"],"names":[],"mappings":";;;AAEA,oGAAiG;AAIjG,MAAa,oBAAqB,SAAQ,mEAAgC;CAQzE;AARD,oDAQC"}
1
+ {"version":3,"file":"OrganizationBranding.js","sourceRoot":"","sources":["../../../../src/types/organization/entities/OrganizationBranding.ts"],"names":[],"mappings":";;;AAEA,oGAAiG;AAKjG,MAAa,oBAAqB,SAAQ,mEAAgC;CAQzE;AARD,oDAQC"}
@@ -1 +1,2 @@
1
1
  export * from './enums';
2
+ export * from './organization-branding.enums';
@@ -15,4 +15,5 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
15
15
  };
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
17
  __exportStar(require("./enums"), exports);
18
+ __exportStar(require("./organization-branding.enums"), exports);
18
19
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/types/organization/types/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,0CAAwB"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/types/organization/types/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,0CAAwB;AACxB,gEAA8C"}
@@ -0,0 +1,36 @@
1
+ export declare enum OrganizationBrandingKeyEnum {
2
+ B_GREEN = "b_green",
3
+ BG_BACKGROUND_FIELDS = "bg_background_fields",
4
+ BG_BACKGROUND_OVERLAY = "bg_background_overlay",
5
+ BG_BACKGROUND_PRIMARY = "bg_background_primary",
6
+ BG_BACKGROUND_SECONDARY = "bg_background_secondary",
7
+ BG_BORDER_PRIMARY = "bg_border_primary",
8
+ BG_BORDER_SEPERATOR = "bg_border_seperator",
9
+ BG_ERROR = "bg_error",
10
+ BG_SYSTEM = "bg_system",
11
+ BG_SYSTEM_GRADIENT = "bg_system_gradient",
12
+ BG_TEXT_DISABLED = "bg_text_disabled",
13
+ BG_TEXT_PRIMARY = "bg_text_primary",
14
+ BG_TEXT_SECONDARY = "bg_text_secondary",
15
+ BG_TEXT_TERIATY = "bg_text_teriaty",
16
+ BG_WHITE = "bg_white",
17
+ BLACK = "black",
18
+ BTN_GREEN_BG = "btnGreenBg",
19
+ OPACITY_BACKGROUND = "opacityBackground",
20
+ SUCCESS_GREEN_BG = "successGreenBg",
21
+ SUCCESS_GREEN_TEXT = "successGreenText",
22
+ T_GREEN = "t_green",
23
+ TX_BACKGROUND_FIELDS = "tx_background_fields",
24
+ TX_BACKGROUND_OVERLAY = "tx_background_overlay",
25
+ TX_BACKGROUND_PRIMARY = "tx_background_primary",
26
+ TX_BACKGROUND_SECONDARY = "tx_background_secondary",
27
+ TX_BORDER_PRIMARY = "tx_border_primary",
28
+ TX_BORDER_SEPERATOR = "tx_border_seperator",
29
+ TX_ERROR = "tx_error",
30
+ TX_SYSTEM = "tx_system",
31
+ TX_TEXT_DISABLED = "tx_text_disabled",
32
+ TX_TEXT_PRIMARY = "tx_text_primary",
33
+ TX_TEXT_SECONDARY = "tx_text_secondary",
34
+ TX_TEXT_TERIATY = "tx_text_teriaty",
35
+ TX_WHITE = "tx_white"
36
+ }
@@ -0,0 +1,41 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.OrganizationBrandingKeyEnum = void 0;
4
+ var OrganizationBrandingKeyEnum;
5
+ (function (OrganizationBrandingKeyEnum) {
6
+ OrganizationBrandingKeyEnum["B_GREEN"] = "b_green";
7
+ OrganizationBrandingKeyEnum["BG_BACKGROUND_FIELDS"] = "bg_background_fields";
8
+ OrganizationBrandingKeyEnum["BG_BACKGROUND_OVERLAY"] = "bg_background_overlay";
9
+ OrganizationBrandingKeyEnum["BG_BACKGROUND_PRIMARY"] = "bg_background_primary";
10
+ OrganizationBrandingKeyEnum["BG_BACKGROUND_SECONDARY"] = "bg_background_secondary";
11
+ OrganizationBrandingKeyEnum["BG_BORDER_PRIMARY"] = "bg_border_primary";
12
+ OrganizationBrandingKeyEnum["BG_BORDER_SEPERATOR"] = "bg_border_seperator";
13
+ OrganizationBrandingKeyEnum["BG_ERROR"] = "bg_error";
14
+ OrganizationBrandingKeyEnum["BG_SYSTEM"] = "bg_system";
15
+ OrganizationBrandingKeyEnum["BG_SYSTEM_GRADIENT"] = "bg_system_gradient";
16
+ OrganizationBrandingKeyEnum["BG_TEXT_DISABLED"] = "bg_text_disabled";
17
+ OrganizationBrandingKeyEnum["BG_TEXT_PRIMARY"] = "bg_text_primary";
18
+ OrganizationBrandingKeyEnum["BG_TEXT_SECONDARY"] = "bg_text_secondary";
19
+ OrganizationBrandingKeyEnum["BG_TEXT_TERIATY"] = "bg_text_teriaty";
20
+ OrganizationBrandingKeyEnum["BG_WHITE"] = "bg_white";
21
+ OrganizationBrandingKeyEnum["BLACK"] = "black";
22
+ OrganizationBrandingKeyEnum["BTN_GREEN_BG"] = "btnGreenBg";
23
+ OrganizationBrandingKeyEnum["OPACITY_BACKGROUND"] = "opacityBackground";
24
+ OrganizationBrandingKeyEnum["SUCCESS_GREEN_BG"] = "successGreenBg";
25
+ OrganizationBrandingKeyEnum["SUCCESS_GREEN_TEXT"] = "successGreenText";
26
+ OrganizationBrandingKeyEnum["T_GREEN"] = "t_green";
27
+ OrganizationBrandingKeyEnum["TX_BACKGROUND_FIELDS"] = "tx_background_fields";
28
+ OrganizationBrandingKeyEnum["TX_BACKGROUND_OVERLAY"] = "tx_background_overlay";
29
+ OrganizationBrandingKeyEnum["TX_BACKGROUND_PRIMARY"] = "tx_background_primary";
30
+ OrganizationBrandingKeyEnum["TX_BACKGROUND_SECONDARY"] = "tx_background_secondary";
31
+ OrganizationBrandingKeyEnum["TX_BORDER_PRIMARY"] = "tx_border_primary";
32
+ OrganizationBrandingKeyEnum["TX_BORDER_SEPERATOR"] = "tx_border_seperator";
33
+ OrganizationBrandingKeyEnum["TX_ERROR"] = "tx_error";
34
+ OrganizationBrandingKeyEnum["TX_SYSTEM"] = "tx_system";
35
+ OrganizationBrandingKeyEnum["TX_TEXT_DISABLED"] = "tx_text_disabled";
36
+ OrganizationBrandingKeyEnum["TX_TEXT_PRIMARY"] = "tx_text_primary";
37
+ OrganizationBrandingKeyEnum["TX_TEXT_SECONDARY"] = "tx_text_secondary";
38
+ OrganizationBrandingKeyEnum["TX_TEXT_TERIATY"] = "tx_text_teriaty";
39
+ OrganizationBrandingKeyEnum["TX_WHITE"] = "tx_white";
40
+ })(OrganizationBrandingKeyEnum = exports.OrganizationBrandingKeyEnum || (exports.OrganizationBrandingKeyEnum = {}));
41
+ //# sourceMappingURL=organization-branding.enums.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"organization-branding.enums.js","sourceRoot":"","sources":["../../../../src/types/organization/types/organization-branding.enums.ts"],"names":[],"mappings":";;;AAAA,IAAY,2BAmCX;AAnCD,WAAY,2BAA2B;IACtC,kDAAmB,CAAA;IACnB,4EAA6C,CAAA;IAC7C,8EAA+C,CAAA;IAC/C,8EAA+C,CAAA;IAC/C,kFAAmD,CAAA;IACnD,sEAAuC,CAAA;IACvC,0EAA2C,CAAA;IAC3C,oDAAqB,CAAA;IACrB,sDAAuB,CAAA;IACvB,wEAAyC,CAAA;IACzC,oEAAqC,CAAA;IACrC,kEAAmC,CAAA;IACnC,sEAAuC,CAAA;IACvC,kEAAmC,CAAA;IACnC,oDAAqB,CAAA;IACrB,8CAAe,CAAA;IACf,0DAA2B,CAAA;IAC3B,uEAAwC,CAAA;IACxC,kEAAmC,CAAA;IACnC,sEAAuC,CAAA;IACvC,kDAAmB,CAAA;IACnB,4EAA6C,CAAA;IAC7C,8EAA+C,CAAA;IAC/C,8EAA+C,CAAA;IAC/C,kFAAmD,CAAA;IACnD,sEAAuC,CAAA;IACvC,0EAA2C,CAAA;IAC3C,oDAAqB,CAAA;IACrB,sDAAuB,CAAA;IACvB,oEAAqC,CAAA;IACrC,kEAAmC,CAAA;IACnC,sEAAuC,CAAA;IACvC,kEAAmC,CAAA;IACnC,oDAAqB,CAAA;AACtB,CAAC,EAnCW,2BAA2B,GAA3B,mCAA2B,KAA3B,mCAA2B,QAmCtC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bondsports/types",
3
- "version": "2.4.55",
3
+ "version": "2.4.56-squad-b-1",
4
4
  "description": "backend types module for Bond-Sports",
5
5
  "main": "./dist/index.js",
6
6
  "scripts": {