@bondsports/types 0.0.168 → 0.0.169
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/build/index.d.ts +51 -51
- package/build/index.es.js.map +1 -1
- package/build/index.js.map +1 -1
- package/package.json +1 -1
package/build/index.d.ts
CHANGED
|
@@ -1017,6 +1017,10 @@ export declare class CreateResourceGroupDto {
|
|
|
1017
1017
|
}
|
|
1018
1018
|
export declare class UpdateResourceGroupDto extends CreateResourceGroupDto {
|
|
1019
1019
|
}
|
|
1020
|
+
export declare class ResourceDto {
|
|
1021
|
+
type: ResourceNameTypeEnum;
|
|
1022
|
+
id: number;
|
|
1023
|
+
}
|
|
1020
1024
|
export declare class SpaceByIdDto {
|
|
1021
1025
|
spaceId: number;
|
|
1022
1026
|
}
|
|
@@ -1073,10 +1077,6 @@ export declare class FindResourcesOptionsDto extends PaginationQuery {
|
|
|
1073
1077
|
types?: string;
|
|
1074
1078
|
resourcesIds?: string;
|
|
1075
1079
|
}
|
|
1076
|
-
export declare class ResourceDto {
|
|
1077
|
-
type: ResourceNameTypeEnum;
|
|
1078
|
-
id: number;
|
|
1079
|
-
}
|
|
1080
1080
|
export declare class StripeCustomerIdDto {
|
|
1081
1081
|
userId: number;
|
|
1082
1082
|
}
|
|
@@ -1122,6 +1122,17 @@ export declare class ActivityTimes extends BondBaseEntity {
|
|
|
1122
1122
|
proudct: Product;
|
|
1123
1123
|
event: Event;
|
|
1124
1124
|
}
|
|
1125
|
+
export declare class Address extends BondBaseEntity {
|
|
1126
|
+
city?: string;
|
|
1127
|
+
street?: string;
|
|
1128
|
+
streetNum?: string;
|
|
1129
|
+
aptNum?: string;
|
|
1130
|
+
zip?: string;
|
|
1131
|
+
country?: string;
|
|
1132
|
+
state?: string;
|
|
1133
|
+
geo: any;
|
|
1134
|
+
deletedAt?: Date;
|
|
1135
|
+
}
|
|
1125
1136
|
export declare class Answer extends OrganizationConnectionBaseEntity {
|
|
1126
1137
|
questionId: number;
|
|
1127
1138
|
question?: Questions;
|
|
@@ -1271,17 +1282,6 @@ export declare class Division extends BondBaseEntity {
|
|
|
1271
1282
|
isDefault: boolean;
|
|
1272
1283
|
groups: Group[];
|
|
1273
1284
|
}
|
|
1274
|
-
export declare class Address extends BondBaseEntity {
|
|
1275
|
-
city?: string;
|
|
1276
|
-
street?: string;
|
|
1277
|
-
streetNum?: string;
|
|
1278
|
-
aptNum?: string;
|
|
1279
|
-
zip?: string;
|
|
1280
|
-
country?: string;
|
|
1281
|
-
state?: string;
|
|
1282
|
-
geo: any;
|
|
1283
|
-
deletedAt?: Date;
|
|
1284
|
-
}
|
|
1285
1285
|
export declare class EmergencyContact extends OrganizationConnectionBaseEntity {
|
|
1286
1286
|
customerId: number;
|
|
1287
1287
|
name: string | null;
|
|
@@ -3490,13 +3490,6 @@ export declare class MonitorConfig extends OrganizationConnectionBaseEntity {
|
|
|
3490
3490
|
code: string;
|
|
3491
3491
|
config?: any;
|
|
3492
3492
|
}
|
|
3493
|
-
export declare class NotifyTracker extends BondBaseEntity {
|
|
3494
|
-
userId: number;
|
|
3495
|
-
organizationId: number;
|
|
3496
|
-
notifyMetadata?: any;
|
|
3497
|
-
notfiyMethodtype: NotifyMethodEnum;
|
|
3498
|
-
destination: string;
|
|
3499
|
-
}
|
|
3500
3493
|
export declare class ByOrganizationIdDto {
|
|
3501
3494
|
organizationId: number;
|
|
3502
3495
|
}
|
|
@@ -3783,6 +3776,13 @@ export interface RefundResultWithLineItemsDict extends PaymentsResults {
|
|
|
3783
3776
|
failedLineItems: Map<number, RefundLineItemAmountDto>;
|
|
3784
3777
|
totalAmountProcessed: number;
|
|
3785
3778
|
}
|
|
3779
|
+
export declare class NotifyTracker extends BondBaseEntity {
|
|
3780
|
+
userId: number;
|
|
3781
|
+
organizationId: number;
|
|
3782
|
+
notifyMetadata?: any;
|
|
3783
|
+
notfiyMethodtype: NotifyMethodEnum;
|
|
3784
|
+
destination: string;
|
|
3785
|
+
}
|
|
3786
3786
|
export declare class AddonDto {
|
|
3787
3787
|
productId: number;
|
|
3788
3788
|
id?: number;
|
|
@@ -4592,6 +4592,35 @@ export declare class UserRole extends OrganizationConnectionBaseEntity {
|
|
|
4592
4592
|
role: Role;
|
|
4593
4593
|
user: User;
|
|
4594
4594
|
}
|
|
4595
|
+
export declare class Shift extends OrganizationConnectionBaseEntity {
|
|
4596
|
+
stationId: number;
|
|
4597
|
+
station?: Station;
|
|
4598
|
+
status: ShiftStatusEnum;
|
|
4599
|
+
openingUserId: number;
|
|
4600
|
+
openingCashAmount: number;
|
|
4601
|
+
openingDate: string;
|
|
4602
|
+
openingTime: string;
|
|
4603
|
+
closingUserId?: number;
|
|
4604
|
+
closingCashAmount?: number;
|
|
4605
|
+
closingDate?: string;
|
|
4606
|
+
closingTime?: string;
|
|
4607
|
+
closingManagerId?: number;
|
|
4608
|
+
managementClosingCashAmount?: number;
|
|
4609
|
+
managementClosingDate?: string;
|
|
4610
|
+
managementClosingTime?: string;
|
|
4611
|
+
reconcilingUserId?: number;
|
|
4612
|
+
reconciliationAmount?: number;
|
|
4613
|
+
reconcilingDate?: string;
|
|
4614
|
+
reconcilingTime?: string;
|
|
4615
|
+
reconciliationInvoiceId?: number;
|
|
4616
|
+
deletedAt?: Date;
|
|
4617
|
+
sumsOnShift?: Map<PaymentMethodTypeEnum, number>;
|
|
4618
|
+
currentCashDifference?: number;
|
|
4619
|
+
openingUser?: User;
|
|
4620
|
+
closingUser?: User;
|
|
4621
|
+
closingManager?: User;
|
|
4622
|
+
reconcilingUser?: User;
|
|
4623
|
+
}
|
|
4595
4624
|
export declare class CloseShiftDto {
|
|
4596
4625
|
closingCashAmount: number;
|
|
4597
4626
|
}
|
|
@@ -4629,32 +4658,3 @@ export declare class OpenShiftDto {
|
|
|
4629
4658
|
openingCashAmount: number;
|
|
4630
4659
|
stationId: number;
|
|
4631
4660
|
}
|
|
4632
|
-
export declare class Shift extends OrganizationConnectionBaseEntity {
|
|
4633
|
-
stationId: number;
|
|
4634
|
-
station?: Station;
|
|
4635
|
-
status: ShiftStatusEnum;
|
|
4636
|
-
openingUserId: number;
|
|
4637
|
-
openingCashAmount: number;
|
|
4638
|
-
openingDate: string;
|
|
4639
|
-
openingTime: string;
|
|
4640
|
-
closingUserId?: number;
|
|
4641
|
-
closingCashAmount?: number;
|
|
4642
|
-
closingDate?: string;
|
|
4643
|
-
closingTime?: string;
|
|
4644
|
-
closingManagerId?: number;
|
|
4645
|
-
managementClosingCashAmount?: number;
|
|
4646
|
-
managementClosingDate?: string;
|
|
4647
|
-
managementClosingTime?: string;
|
|
4648
|
-
reconcilingUserId?: number;
|
|
4649
|
-
reconciliationAmount?: number;
|
|
4650
|
-
reconcilingDate?: string;
|
|
4651
|
-
reconcilingTime?: string;
|
|
4652
|
-
reconciliationInvoiceId?: number;
|
|
4653
|
-
deletedAt?: Date;
|
|
4654
|
-
sumsOnShift?: Map<PaymentMethodTypeEnum, number>;
|
|
4655
|
-
currentCashDifference?: number;
|
|
4656
|
-
openingUser?: User;
|
|
4657
|
-
closingUser?: User;
|
|
4658
|
-
closingManager?: User;
|
|
4659
|
-
reconcilingUser?: User;
|
|
4660
|
-
}
|