@danielcok17/prisma-db 1.8.1 → 1.9.0
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/package.json +1 -1
- package/prisma/app.prisma +20 -0
- package/prisma/generated/app/edge.js +18 -4
- package/prisma/generated/app/index-browser.js +15 -1
- package/prisma/generated/app/index.d.ts +1083 -2
- package/prisma/generated/app/index.js +18 -4
- package/prisma/generated/app/package.json +1 -1
- package/prisma/generated/app/schema.prisma +20 -0
- package/prisma/generated/app/wasm.js +18 -4
- package/prisma/migrations/20260120212010_add_user_company_fields/migration.sql +22 -0
|
@@ -224,6 +224,14 @@ export const SubscriptionStatus: {
|
|
|
224
224
|
export type SubscriptionStatus = (typeof SubscriptionStatus)[keyof typeof SubscriptionStatus]
|
|
225
225
|
|
|
226
226
|
|
|
227
|
+
export const CustomerType: {
|
|
228
|
+
INDIVIDUAL: 'INDIVIDUAL',
|
|
229
|
+
SELF_EMPLOYED: 'SELF_EMPLOYED'
|
|
230
|
+
};
|
|
231
|
+
|
|
232
|
+
export type CustomerType = (typeof CustomerType)[keyof typeof CustomerType]
|
|
233
|
+
|
|
234
|
+
|
|
227
235
|
export const SubscriptionTier: {
|
|
228
236
|
FREE: 'FREE',
|
|
229
237
|
LAWYER: 'LAWYER',
|
|
@@ -345,6 +353,10 @@ export type SubscriptionStatus = $Enums.SubscriptionStatus
|
|
|
345
353
|
|
|
346
354
|
export const SubscriptionStatus: typeof $Enums.SubscriptionStatus
|
|
347
355
|
|
|
356
|
+
export type CustomerType = $Enums.CustomerType
|
|
357
|
+
|
|
358
|
+
export const CustomerType: typeof $Enums.CustomerType
|
|
359
|
+
|
|
348
360
|
export type SubscriptionTier = $Enums.SubscriptionTier
|
|
349
361
|
|
|
350
362
|
export const SubscriptionTier: typeof $Enums.SubscriptionTier
|
|
@@ -5429,6 +5441,15 @@ export namespace Prisma {
|
|
|
5429
5441
|
messageCount: number | null
|
|
5430
5442
|
messageCountResetAt: Date | null
|
|
5431
5443
|
adminGrantExpiresAt: Date | null
|
|
5444
|
+
customerType: $Enums.CustomerType | null
|
|
5445
|
+
companyName: string | null
|
|
5446
|
+
companyNumber: string | null
|
|
5447
|
+
vatNumber: string | null
|
|
5448
|
+
taxNumber: string | null
|
|
5449
|
+
companyStreet: string | null
|
|
5450
|
+
companyCity: string | null
|
|
5451
|
+
companyPostalCode: string | null
|
|
5452
|
+
companyCountry: string | null
|
|
5432
5453
|
}
|
|
5433
5454
|
|
|
5434
5455
|
export type UserMaxAggregateOutputType = {
|
|
@@ -5455,6 +5476,15 @@ export namespace Prisma {
|
|
|
5455
5476
|
messageCount: number | null
|
|
5456
5477
|
messageCountResetAt: Date | null
|
|
5457
5478
|
adminGrantExpiresAt: Date | null
|
|
5479
|
+
customerType: $Enums.CustomerType | null
|
|
5480
|
+
companyName: string | null
|
|
5481
|
+
companyNumber: string | null
|
|
5482
|
+
vatNumber: string | null
|
|
5483
|
+
taxNumber: string | null
|
|
5484
|
+
companyStreet: string | null
|
|
5485
|
+
companyCity: string | null
|
|
5486
|
+
companyPostalCode: string | null
|
|
5487
|
+
companyCountry: string | null
|
|
5458
5488
|
}
|
|
5459
5489
|
|
|
5460
5490
|
export type UserCountAggregateOutputType = {
|
|
@@ -5482,6 +5512,15 @@ export namespace Prisma {
|
|
|
5482
5512
|
messageCount: number
|
|
5483
5513
|
messageCountResetAt: number
|
|
5484
5514
|
adminGrantExpiresAt: number
|
|
5515
|
+
customerType: number
|
|
5516
|
+
companyName: number
|
|
5517
|
+
companyNumber: number
|
|
5518
|
+
vatNumber: number
|
|
5519
|
+
taxNumber: number
|
|
5520
|
+
companyStreet: number
|
|
5521
|
+
companyCity: number
|
|
5522
|
+
companyPostalCode: number
|
|
5523
|
+
companyCountry: number
|
|
5485
5524
|
_all: number
|
|
5486
5525
|
}
|
|
5487
5526
|
|
|
@@ -5520,6 +5559,15 @@ export namespace Prisma {
|
|
|
5520
5559
|
messageCount?: true
|
|
5521
5560
|
messageCountResetAt?: true
|
|
5522
5561
|
adminGrantExpiresAt?: true
|
|
5562
|
+
customerType?: true
|
|
5563
|
+
companyName?: true
|
|
5564
|
+
companyNumber?: true
|
|
5565
|
+
vatNumber?: true
|
|
5566
|
+
taxNumber?: true
|
|
5567
|
+
companyStreet?: true
|
|
5568
|
+
companyCity?: true
|
|
5569
|
+
companyPostalCode?: true
|
|
5570
|
+
companyCountry?: true
|
|
5523
5571
|
}
|
|
5524
5572
|
|
|
5525
5573
|
export type UserMaxAggregateInputType = {
|
|
@@ -5546,6 +5594,15 @@ export namespace Prisma {
|
|
|
5546
5594
|
messageCount?: true
|
|
5547
5595
|
messageCountResetAt?: true
|
|
5548
5596
|
adminGrantExpiresAt?: true
|
|
5597
|
+
customerType?: true
|
|
5598
|
+
companyName?: true
|
|
5599
|
+
companyNumber?: true
|
|
5600
|
+
vatNumber?: true
|
|
5601
|
+
taxNumber?: true
|
|
5602
|
+
companyStreet?: true
|
|
5603
|
+
companyCity?: true
|
|
5604
|
+
companyPostalCode?: true
|
|
5605
|
+
companyCountry?: true
|
|
5549
5606
|
}
|
|
5550
5607
|
|
|
5551
5608
|
export type UserCountAggregateInputType = {
|
|
@@ -5573,6 +5630,15 @@ export namespace Prisma {
|
|
|
5573
5630
|
messageCount?: true
|
|
5574
5631
|
messageCountResetAt?: true
|
|
5575
5632
|
adminGrantExpiresAt?: true
|
|
5633
|
+
customerType?: true
|
|
5634
|
+
companyName?: true
|
|
5635
|
+
companyNumber?: true
|
|
5636
|
+
vatNumber?: true
|
|
5637
|
+
taxNumber?: true
|
|
5638
|
+
companyStreet?: true
|
|
5639
|
+
companyCity?: true
|
|
5640
|
+
companyPostalCode?: true
|
|
5641
|
+
companyCountry?: true
|
|
5576
5642
|
_all?: true
|
|
5577
5643
|
}
|
|
5578
5644
|
|
|
@@ -5687,6 +5753,15 @@ export namespace Prisma {
|
|
|
5687
5753
|
messageCount: number
|
|
5688
5754
|
messageCountResetAt: Date | null
|
|
5689
5755
|
adminGrantExpiresAt: Date | null
|
|
5756
|
+
customerType: $Enums.CustomerType
|
|
5757
|
+
companyName: string | null
|
|
5758
|
+
companyNumber: string | null
|
|
5759
|
+
vatNumber: string | null
|
|
5760
|
+
taxNumber: string | null
|
|
5761
|
+
companyStreet: string | null
|
|
5762
|
+
companyCity: string | null
|
|
5763
|
+
companyPostalCode: string | null
|
|
5764
|
+
companyCountry: string | null
|
|
5690
5765
|
_count: UserCountAggregateOutputType | null
|
|
5691
5766
|
_avg: UserAvgAggregateOutputType | null
|
|
5692
5767
|
_sum: UserSumAggregateOutputType | null
|
|
@@ -5733,6 +5808,15 @@ export namespace Prisma {
|
|
|
5733
5808
|
messageCount?: boolean
|
|
5734
5809
|
messageCountResetAt?: boolean
|
|
5735
5810
|
adminGrantExpiresAt?: boolean
|
|
5811
|
+
customerType?: boolean
|
|
5812
|
+
companyName?: boolean
|
|
5813
|
+
companyNumber?: boolean
|
|
5814
|
+
vatNumber?: boolean
|
|
5815
|
+
taxNumber?: boolean
|
|
5816
|
+
companyStreet?: boolean
|
|
5817
|
+
companyCity?: boolean
|
|
5818
|
+
companyPostalCode?: boolean
|
|
5819
|
+
companyCountry?: boolean
|
|
5736
5820
|
approvalRequest?: boolean | User$approvalRequestArgs<ExtArgs>
|
|
5737
5821
|
stripeCustomer?: boolean | User$stripeCustomerArgs<ExtArgs>
|
|
5738
5822
|
ownedOrganizations?: boolean | User$ownedOrganizationsArgs<ExtArgs>
|
|
@@ -5782,6 +5866,15 @@ export namespace Prisma {
|
|
|
5782
5866
|
messageCount?: boolean
|
|
5783
5867
|
messageCountResetAt?: boolean
|
|
5784
5868
|
adminGrantExpiresAt?: boolean
|
|
5869
|
+
customerType?: boolean
|
|
5870
|
+
companyName?: boolean
|
|
5871
|
+
companyNumber?: boolean
|
|
5872
|
+
vatNumber?: boolean
|
|
5873
|
+
taxNumber?: boolean
|
|
5874
|
+
companyStreet?: boolean
|
|
5875
|
+
companyCity?: boolean
|
|
5876
|
+
companyPostalCode?: boolean
|
|
5877
|
+
companyCountry?: boolean
|
|
5785
5878
|
}, ExtArgs["result"]["user"]>
|
|
5786
5879
|
|
|
5787
5880
|
export type UserSelectUpdateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
@@ -5809,6 +5902,15 @@ export namespace Prisma {
|
|
|
5809
5902
|
messageCount?: boolean
|
|
5810
5903
|
messageCountResetAt?: boolean
|
|
5811
5904
|
adminGrantExpiresAt?: boolean
|
|
5905
|
+
customerType?: boolean
|
|
5906
|
+
companyName?: boolean
|
|
5907
|
+
companyNumber?: boolean
|
|
5908
|
+
vatNumber?: boolean
|
|
5909
|
+
taxNumber?: boolean
|
|
5910
|
+
companyStreet?: boolean
|
|
5911
|
+
companyCity?: boolean
|
|
5912
|
+
companyPostalCode?: boolean
|
|
5913
|
+
companyCountry?: boolean
|
|
5812
5914
|
}, ExtArgs["result"]["user"]>
|
|
5813
5915
|
|
|
5814
5916
|
export type UserSelectScalar = {
|
|
@@ -5836,9 +5938,18 @@ export namespace Prisma {
|
|
|
5836
5938
|
messageCount?: boolean
|
|
5837
5939
|
messageCountResetAt?: boolean
|
|
5838
5940
|
adminGrantExpiresAt?: boolean
|
|
5941
|
+
customerType?: boolean
|
|
5942
|
+
companyName?: boolean
|
|
5943
|
+
companyNumber?: boolean
|
|
5944
|
+
vatNumber?: boolean
|
|
5945
|
+
taxNumber?: boolean
|
|
5946
|
+
companyStreet?: boolean
|
|
5947
|
+
companyCity?: boolean
|
|
5948
|
+
companyPostalCode?: boolean
|
|
5949
|
+
companyCountry?: boolean
|
|
5839
5950
|
}
|
|
5840
5951
|
|
|
5841
|
-
export type UserOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "name" | "email" | "emailVerified" | "image" | "password" | "createdAt" | "agreedToTerms" | "practiceArea" | "lawFirm" | "yearsOfExperience" | "isApproved" | "isRejected" | "approvedAt" | "rejectedAt" | "approvedBy" | "rejectedBy" | "rejectionReason" | "referralSource" | "applicationText" | "subscriptionTier" | "messageCount" | "messageCountResetAt" | "adminGrantExpiresAt", ExtArgs["result"]["user"]>
|
|
5952
|
+
export type UserOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "name" | "email" | "emailVerified" | "image" | "password" | "createdAt" | "agreedToTerms" | "practiceArea" | "lawFirm" | "yearsOfExperience" | "isApproved" | "isRejected" | "approvedAt" | "rejectedAt" | "approvedBy" | "rejectedBy" | "rejectionReason" | "referralSource" | "applicationText" | "subscriptionTier" | "messageCount" | "messageCountResetAt" | "adminGrantExpiresAt" | "customerType" | "companyName" | "companyNumber" | "vatNumber" | "taxNumber" | "companyStreet" | "companyCity" | "companyPostalCode" | "companyCountry", ExtArgs["result"]["user"]>
|
|
5842
5953
|
export type UserInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
5843
5954
|
approvalRequest?: boolean | User$approvalRequestArgs<ExtArgs>
|
|
5844
5955
|
stripeCustomer?: boolean | User$stripeCustomerArgs<ExtArgs>
|
|
@@ -5916,6 +6027,15 @@ export namespace Prisma {
|
|
|
5916
6027
|
messageCount: number
|
|
5917
6028
|
messageCountResetAt: Date | null
|
|
5918
6029
|
adminGrantExpiresAt: Date | null
|
|
6030
|
+
customerType: $Enums.CustomerType
|
|
6031
|
+
companyName: string | null
|
|
6032
|
+
companyNumber: string | null
|
|
6033
|
+
vatNumber: string | null
|
|
6034
|
+
taxNumber: string | null
|
|
6035
|
+
companyStreet: string | null
|
|
6036
|
+
companyCity: string | null
|
|
6037
|
+
companyPostalCode: string | null
|
|
6038
|
+
companyCountry: string | null
|
|
5919
6039
|
}, ExtArgs["result"]["user"]>
|
|
5920
6040
|
composites: {}
|
|
5921
6041
|
}
|
|
@@ -6384,6 +6504,15 @@ export namespace Prisma {
|
|
|
6384
6504
|
readonly messageCount: FieldRef<"User", 'Int'>
|
|
6385
6505
|
readonly messageCountResetAt: FieldRef<"User", 'DateTime'>
|
|
6386
6506
|
readonly adminGrantExpiresAt: FieldRef<"User", 'DateTime'>
|
|
6507
|
+
readonly customerType: FieldRef<"User", 'CustomerType'>
|
|
6508
|
+
readonly companyName: FieldRef<"User", 'String'>
|
|
6509
|
+
readonly companyNumber: FieldRef<"User", 'String'>
|
|
6510
|
+
readonly vatNumber: FieldRef<"User", 'String'>
|
|
6511
|
+
readonly taxNumber: FieldRef<"User", 'String'>
|
|
6512
|
+
readonly companyStreet: FieldRef<"User", 'String'>
|
|
6513
|
+
readonly companyCity: FieldRef<"User", 'String'>
|
|
6514
|
+
readonly companyPostalCode: FieldRef<"User", 'String'>
|
|
6515
|
+
readonly companyCountry: FieldRef<"User", 'String'>
|
|
6387
6516
|
}
|
|
6388
6517
|
|
|
6389
6518
|
|
|
@@ -39370,7 +39499,16 @@ export namespace Prisma {
|
|
|
39370
39499
|
subscriptionTier: 'subscriptionTier',
|
|
39371
39500
|
messageCount: 'messageCount',
|
|
39372
39501
|
messageCountResetAt: 'messageCountResetAt',
|
|
39373
|
-
adminGrantExpiresAt: 'adminGrantExpiresAt'
|
|
39502
|
+
adminGrantExpiresAt: 'adminGrantExpiresAt',
|
|
39503
|
+
customerType: 'customerType',
|
|
39504
|
+
companyName: 'companyName',
|
|
39505
|
+
companyNumber: 'companyNumber',
|
|
39506
|
+
vatNumber: 'vatNumber',
|
|
39507
|
+
taxNumber: 'taxNumber',
|
|
39508
|
+
companyStreet: 'companyStreet',
|
|
39509
|
+
companyCity: 'companyCity',
|
|
39510
|
+
companyPostalCode: 'companyPostalCode',
|
|
39511
|
+
companyCountry: 'companyCountry'
|
|
39374
39512
|
};
|
|
39375
39513
|
|
|
39376
39514
|
export type UserScalarFieldEnum = (typeof UserScalarFieldEnum)[keyof typeof UserScalarFieldEnum]
|
|
@@ -39942,6 +40080,20 @@ export namespace Prisma {
|
|
|
39942
40080
|
|
|
39943
40081
|
|
|
39944
40082
|
|
|
40083
|
+
/**
|
|
40084
|
+
* Reference to a field of type 'CustomerType'
|
|
40085
|
+
*/
|
|
40086
|
+
export type EnumCustomerTypeFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'CustomerType'>
|
|
40087
|
+
|
|
40088
|
+
|
|
40089
|
+
|
|
40090
|
+
/**
|
|
40091
|
+
* Reference to a field of type 'CustomerType[]'
|
|
40092
|
+
*/
|
|
40093
|
+
export type ListEnumCustomerTypeFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'CustomerType[]'>
|
|
40094
|
+
|
|
40095
|
+
|
|
40096
|
+
|
|
39945
40097
|
/**
|
|
39946
40098
|
* Reference to a field of type 'ApprovalStatus'
|
|
39947
40099
|
*/
|
|
@@ -40290,6 +40442,15 @@ export namespace Prisma {
|
|
|
40290
40442
|
messageCount?: IntFilter<"User"> | number
|
|
40291
40443
|
messageCountResetAt?: DateTimeNullableFilter<"User"> | Date | string | null
|
|
40292
40444
|
adminGrantExpiresAt?: DateTimeNullableFilter<"User"> | Date | string | null
|
|
40445
|
+
customerType?: EnumCustomerTypeFilter<"User"> | $Enums.CustomerType
|
|
40446
|
+
companyName?: StringNullableFilter<"User"> | string | null
|
|
40447
|
+
companyNumber?: StringNullableFilter<"User"> | string | null
|
|
40448
|
+
vatNumber?: StringNullableFilter<"User"> | string | null
|
|
40449
|
+
taxNumber?: StringNullableFilter<"User"> | string | null
|
|
40450
|
+
companyStreet?: StringNullableFilter<"User"> | string | null
|
|
40451
|
+
companyCity?: StringNullableFilter<"User"> | string | null
|
|
40452
|
+
companyPostalCode?: StringNullableFilter<"User"> | string | null
|
|
40453
|
+
companyCountry?: StringNullableFilter<"User"> | string | null
|
|
40293
40454
|
approvalRequest?: XOR<UserApprovalRequestNullableScalarRelationFilter, UserApprovalRequestWhereInput> | null
|
|
40294
40455
|
stripeCustomer?: XOR<StripeCustomerNullableScalarRelationFilter, StripeCustomerWhereInput> | null
|
|
40295
40456
|
ownedOrganizations?: OrganizationListRelationFilter
|
|
@@ -40338,6 +40499,15 @@ export namespace Prisma {
|
|
|
40338
40499
|
messageCount?: SortOrder
|
|
40339
40500
|
messageCountResetAt?: SortOrderInput | SortOrder
|
|
40340
40501
|
adminGrantExpiresAt?: SortOrderInput | SortOrder
|
|
40502
|
+
customerType?: SortOrder
|
|
40503
|
+
companyName?: SortOrderInput | SortOrder
|
|
40504
|
+
companyNumber?: SortOrderInput | SortOrder
|
|
40505
|
+
vatNumber?: SortOrderInput | SortOrder
|
|
40506
|
+
taxNumber?: SortOrderInput | SortOrder
|
|
40507
|
+
companyStreet?: SortOrderInput | SortOrder
|
|
40508
|
+
companyCity?: SortOrderInput | SortOrder
|
|
40509
|
+
companyPostalCode?: SortOrderInput | SortOrder
|
|
40510
|
+
companyCountry?: SortOrderInput | SortOrder
|
|
40341
40511
|
approvalRequest?: UserApprovalRequestOrderByWithRelationInput
|
|
40342
40512
|
stripeCustomer?: StripeCustomerOrderByWithRelationInput
|
|
40343
40513
|
ownedOrganizations?: OrganizationOrderByRelationAggregateInput
|
|
@@ -40389,6 +40559,15 @@ export namespace Prisma {
|
|
|
40389
40559
|
messageCount?: IntFilter<"User"> | number
|
|
40390
40560
|
messageCountResetAt?: DateTimeNullableFilter<"User"> | Date | string | null
|
|
40391
40561
|
adminGrantExpiresAt?: DateTimeNullableFilter<"User"> | Date | string | null
|
|
40562
|
+
customerType?: EnumCustomerTypeFilter<"User"> | $Enums.CustomerType
|
|
40563
|
+
companyName?: StringNullableFilter<"User"> | string | null
|
|
40564
|
+
companyNumber?: StringNullableFilter<"User"> | string | null
|
|
40565
|
+
vatNumber?: StringNullableFilter<"User"> | string | null
|
|
40566
|
+
taxNumber?: StringNullableFilter<"User"> | string | null
|
|
40567
|
+
companyStreet?: StringNullableFilter<"User"> | string | null
|
|
40568
|
+
companyCity?: StringNullableFilter<"User"> | string | null
|
|
40569
|
+
companyPostalCode?: StringNullableFilter<"User"> | string | null
|
|
40570
|
+
companyCountry?: StringNullableFilter<"User"> | string | null
|
|
40392
40571
|
approvalRequest?: XOR<UserApprovalRequestNullableScalarRelationFilter, UserApprovalRequestWhereInput> | null
|
|
40393
40572
|
stripeCustomer?: XOR<StripeCustomerNullableScalarRelationFilter, StripeCustomerWhereInput> | null
|
|
40394
40573
|
ownedOrganizations?: OrganizationListRelationFilter
|
|
@@ -40437,6 +40616,15 @@ export namespace Prisma {
|
|
|
40437
40616
|
messageCount?: SortOrder
|
|
40438
40617
|
messageCountResetAt?: SortOrderInput | SortOrder
|
|
40439
40618
|
adminGrantExpiresAt?: SortOrderInput | SortOrder
|
|
40619
|
+
customerType?: SortOrder
|
|
40620
|
+
companyName?: SortOrderInput | SortOrder
|
|
40621
|
+
companyNumber?: SortOrderInput | SortOrder
|
|
40622
|
+
vatNumber?: SortOrderInput | SortOrder
|
|
40623
|
+
taxNumber?: SortOrderInput | SortOrder
|
|
40624
|
+
companyStreet?: SortOrderInput | SortOrder
|
|
40625
|
+
companyCity?: SortOrderInput | SortOrder
|
|
40626
|
+
companyPostalCode?: SortOrderInput | SortOrder
|
|
40627
|
+
companyCountry?: SortOrderInput | SortOrder
|
|
40440
40628
|
_count?: UserCountOrderByAggregateInput
|
|
40441
40629
|
_avg?: UserAvgOrderByAggregateInput
|
|
40442
40630
|
_max?: UserMaxOrderByAggregateInput
|
|
@@ -40472,6 +40660,15 @@ export namespace Prisma {
|
|
|
40472
40660
|
messageCount?: IntWithAggregatesFilter<"User"> | number
|
|
40473
40661
|
messageCountResetAt?: DateTimeNullableWithAggregatesFilter<"User"> | Date | string | null
|
|
40474
40662
|
adminGrantExpiresAt?: DateTimeNullableWithAggregatesFilter<"User"> | Date | string | null
|
|
40663
|
+
customerType?: EnumCustomerTypeWithAggregatesFilter<"User"> | $Enums.CustomerType
|
|
40664
|
+
companyName?: StringNullableWithAggregatesFilter<"User"> | string | null
|
|
40665
|
+
companyNumber?: StringNullableWithAggregatesFilter<"User"> | string | null
|
|
40666
|
+
vatNumber?: StringNullableWithAggregatesFilter<"User"> | string | null
|
|
40667
|
+
taxNumber?: StringNullableWithAggregatesFilter<"User"> | string | null
|
|
40668
|
+
companyStreet?: StringNullableWithAggregatesFilter<"User"> | string | null
|
|
40669
|
+
companyCity?: StringNullableWithAggregatesFilter<"User"> | string | null
|
|
40670
|
+
companyPostalCode?: StringNullableWithAggregatesFilter<"User"> | string | null
|
|
40671
|
+
companyCountry?: StringNullableWithAggregatesFilter<"User"> | string | null
|
|
40475
40672
|
}
|
|
40476
40673
|
|
|
40477
40674
|
export type UserApprovalRequestWhereInput = {
|
|
@@ -43011,6 +43208,15 @@ export namespace Prisma {
|
|
|
43011
43208
|
messageCount?: number
|
|
43012
43209
|
messageCountResetAt?: Date | string | null
|
|
43013
43210
|
adminGrantExpiresAt?: Date | string | null
|
|
43211
|
+
customerType?: $Enums.CustomerType
|
|
43212
|
+
companyName?: string | null
|
|
43213
|
+
companyNumber?: string | null
|
|
43214
|
+
vatNumber?: string | null
|
|
43215
|
+
taxNumber?: string | null
|
|
43216
|
+
companyStreet?: string | null
|
|
43217
|
+
companyCity?: string | null
|
|
43218
|
+
companyPostalCode?: string | null
|
|
43219
|
+
companyCountry?: string | null
|
|
43014
43220
|
approvalRequest?: UserApprovalRequestCreateNestedOneWithoutUserInput
|
|
43015
43221
|
stripeCustomer?: StripeCustomerCreateNestedOneWithoutUserInput
|
|
43016
43222
|
ownedOrganizations?: OrganizationCreateNestedManyWithoutOwnerInput
|
|
@@ -43059,6 +43265,15 @@ export namespace Prisma {
|
|
|
43059
43265
|
messageCount?: number
|
|
43060
43266
|
messageCountResetAt?: Date | string | null
|
|
43061
43267
|
adminGrantExpiresAt?: Date | string | null
|
|
43268
|
+
customerType?: $Enums.CustomerType
|
|
43269
|
+
companyName?: string | null
|
|
43270
|
+
companyNumber?: string | null
|
|
43271
|
+
vatNumber?: string | null
|
|
43272
|
+
taxNumber?: string | null
|
|
43273
|
+
companyStreet?: string | null
|
|
43274
|
+
companyCity?: string | null
|
|
43275
|
+
companyPostalCode?: string | null
|
|
43276
|
+
companyCountry?: string | null
|
|
43062
43277
|
approvalRequest?: UserApprovalRequestUncheckedCreateNestedOneWithoutUserInput
|
|
43063
43278
|
stripeCustomer?: StripeCustomerUncheckedCreateNestedOneWithoutUserInput
|
|
43064
43279
|
ownedOrganizations?: OrganizationUncheckedCreateNestedManyWithoutOwnerInput
|
|
@@ -43107,6 +43322,15 @@ export namespace Prisma {
|
|
|
43107
43322
|
messageCount?: IntFieldUpdateOperationsInput | number
|
|
43108
43323
|
messageCountResetAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
43109
43324
|
adminGrantExpiresAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
43325
|
+
customerType?: EnumCustomerTypeFieldUpdateOperationsInput | $Enums.CustomerType
|
|
43326
|
+
companyName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
43327
|
+
companyNumber?: NullableStringFieldUpdateOperationsInput | string | null
|
|
43328
|
+
vatNumber?: NullableStringFieldUpdateOperationsInput | string | null
|
|
43329
|
+
taxNumber?: NullableStringFieldUpdateOperationsInput | string | null
|
|
43330
|
+
companyStreet?: NullableStringFieldUpdateOperationsInput | string | null
|
|
43331
|
+
companyCity?: NullableStringFieldUpdateOperationsInput | string | null
|
|
43332
|
+
companyPostalCode?: NullableStringFieldUpdateOperationsInput | string | null
|
|
43333
|
+
companyCountry?: NullableStringFieldUpdateOperationsInput | string | null
|
|
43110
43334
|
approvalRequest?: UserApprovalRequestUpdateOneWithoutUserNestedInput
|
|
43111
43335
|
stripeCustomer?: StripeCustomerUpdateOneWithoutUserNestedInput
|
|
43112
43336
|
ownedOrganizations?: OrganizationUpdateManyWithoutOwnerNestedInput
|
|
@@ -43155,6 +43379,15 @@ export namespace Prisma {
|
|
|
43155
43379
|
messageCount?: IntFieldUpdateOperationsInput | number
|
|
43156
43380
|
messageCountResetAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
43157
43381
|
adminGrantExpiresAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
43382
|
+
customerType?: EnumCustomerTypeFieldUpdateOperationsInput | $Enums.CustomerType
|
|
43383
|
+
companyName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
43384
|
+
companyNumber?: NullableStringFieldUpdateOperationsInput | string | null
|
|
43385
|
+
vatNumber?: NullableStringFieldUpdateOperationsInput | string | null
|
|
43386
|
+
taxNumber?: NullableStringFieldUpdateOperationsInput | string | null
|
|
43387
|
+
companyStreet?: NullableStringFieldUpdateOperationsInput | string | null
|
|
43388
|
+
companyCity?: NullableStringFieldUpdateOperationsInput | string | null
|
|
43389
|
+
companyPostalCode?: NullableStringFieldUpdateOperationsInput | string | null
|
|
43390
|
+
companyCountry?: NullableStringFieldUpdateOperationsInput | string | null
|
|
43158
43391
|
approvalRequest?: UserApprovalRequestUncheckedUpdateOneWithoutUserNestedInput
|
|
43159
43392
|
stripeCustomer?: StripeCustomerUncheckedUpdateOneWithoutUserNestedInput
|
|
43160
43393
|
ownedOrganizations?: OrganizationUncheckedUpdateManyWithoutOwnerNestedInput
|
|
@@ -43203,6 +43436,15 @@ export namespace Prisma {
|
|
|
43203
43436
|
messageCount?: number
|
|
43204
43437
|
messageCountResetAt?: Date | string | null
|
|
43205
43438
|
adminGrantExpiresAt?: Date | string | null
|
|
43439
|
+
customerType?: $Enums.CustomerType
|
|
43440
|
+
companyName?: string | null
|
|
43441
|
+
companyNumber?: string | null
|
|
43442
|
+
vatNumber?: string | null
|
|
43443
|
+
taxNumber?: string | null
|
|
43444
|
+
companyStreet?: string | null
|
|
43445
|
+
companyCity?: string | null
|
|
43446
|
+
companyPostalCode?: string | null
|
|
43447
|
+
companyCountry?: string | null
|
|
43206
43448
|
}
|
|
43207
43449
|
|
|
43208
43450
|
export type UserUpdateManyMutationInput = {
|
|
@@ -43230,6 +43472,15 @@ export namespace Prisma {
|
|
|
43230
43472
|
messageCount?: IntFieldUpdateOperationsInput | number
|
|
43231
43473
|
messageCountResetAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
43232
43474
|
adminGrantExpiresAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
43475
|
+
customerType?: EnumCustomerTypeFieldUpdateOperationsInput | $Enums.CustomerType
|
|
43476
|
+
companyName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
43477
|
+
companyNumber?: NullableStringFieldUpdateOperationsInput | string | null
|
|
43478
|
+
vatNumber?: NullableStringFieldUpdateOperationsInput | string | null
|
|
43479
|
+
taxNumber?: NullableStringFieldUpdateOperationsInput | string | null
|
|
43480
|
+
companyStreet?: NullableStringFieldUpdateOperationsInput | string | null
|
|
43481
|
+
companyCity?: NullableStringFieldUpdateOperationsInput | string | null
|
|
43482
|
+
companyPostalCode?: NullableStringFieldUpdateOperationsInput | string | null
|
|
43483
|
+
companyCountry?: NullableStringFieldUpdateOperationsInput | string | null
|
|
43233
43484
|
}
|
|
43234
43485
|
|
|
43235
43486
|
export type UserUncheckedUpdateManyInput = {
|
|
@@ -43257,6 +43508,15 @@ export namespace Prisma {
|
|
|
43257
43508
|
messageCount?: IntFieldUpdateOperationsInput | number
|
|
43258
43509
|
messageCountResetAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
43259
43510
|
adminGrantExpiresAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
43511
|
+
customerType?: EnumCustomerTypeFieldUpdateOperationsInput | $Enums.CustomerType
|
|
43512
|
+
companyName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
43513
|
+
companyNumber?: NullableStringFieldUpdateOperationsInput | string | null
|
|
43514
|
+
vatNumber?: NullableStringFieldUpdateOperationsInput | string | null
|
|
43515
|
+
taxNumber?: NullableStringFieldUpdateOperationsInput | string | null
|
|
43516
|
+
companyStreet?: NullableStringFieldUpdateOperationsInput | string | null
|
|
43517
|
+
companyCity?: NullableStringFieldUpdateOperationsInput | string | null
|
|
43518
|
+
companyPostalCode?: NullableStringFieldUpdateOperationsInput | string | null
|
|
43519
|
+
companyCountry?: NullableStringFieldUpdateOperationsInput | string | null
|
|
43260
43520
|
}
|
|
43261
43521
|
|
|
43262
43522
|
export type UserApprovalRequestCreateInput = {
|
|
@@ -46108,6 +46368,13 @@ export namespace Prisma {
|
|
|
46108
46368
|
not?: NestedIntFilter<$PrismaModel> | number
|
|
46109
46369
|
}
|
|
46110
46370
|
|
|
46371
|
+
export type EnumCustomerTypeFilter<$PrismaModel = never> = {
|
|
46372
|
+
equals?: $Enums.CustomerType | EnumCustomerTypeFieldRefInput<$PrismaModel>
|
|
46373
|
+
in?: $Enums.CustomerType[] | ListEnumCustomerTypeFieldRefInput<$PrismaModel>
|
|
46374
|
+
notIn?: $Enums.CustomerType[] | ListEnumCustomerTypeFieldRefInput<$PrismaModel>
|
|
46375
|
+
not?: NestedEnumCustomerTypeFilter<$PrismaModel> | $Enums.CustomerType
|
|
46376
|
+
}
|
|
46377
|
+
|
|
46111
46378
|
export type UserApprovalRequestNullableScalarRelationFilter = {
|
|
46112
46379
|
is?: UserApprovalRequestWhereInput | null
|
|
46113
46380
|
isNot?: UserApprovalRequestWhereInput | null
|
|
@@ -46323,6 +46590,15 @@ export namespace Prisma {
|
|
|
46323
46590
|
messageCount?: SortOrder
|
|
46324
46591
|
messageCountResetAt?: SortOrder
|
|
46325
46592
|
adminGrantExpiresAt?: SortOrder
|
|
46593
|
+
customerType?: SortOrder
|
|
46594
|
+
companyName?: SortOrder
|
|
46595
|
+
companyNumber?: SortOrder
|
|
46596
|
+
vatNumber?: SortOrder
|
|
46597
|
+
taxNumber?: SortOrder
|
|
46598
|
+
companyStreet?: SortOrder
|
|
46599
|
+
companyCity?: SortOrder
|
|
46600
|
+
companyPostalCode?: SortOrder
|
|
46601
|
+
companyCountry?: SortOrder
|
|
46326
46602
|
}
|
|
46327
46603
|
|
|
46328
46604
|
export type UserAvgOrderByAggregateInput = {
|
|
@@ -46354,6 +46630,15 @@ export namespace Prisma {
|
|
|
46354
46630
|
messageCount?: SortOrder
|
|
46355
46631
|
messageCountResetAt?: SortOrder
|
|
46356
46632
|
adminGrantExpiresAt?: SortOrder
|
|
46633
|
+
customerType?: SortOrder
|
|
46634
|
+
companyName?: SortOrder
|
|
46635
|
+
companyNumber?: SortOrder
|
|
46636
|
+
vatNumber?: SortOrder
|
|
46637
|
+
taxNumber?: SortOrder
|
|
46638
|
+
companyStreet?: SortOrder
|
|
46639
|
+
companyCity?: SortOrder
|
|
46640
|
+
companyPostalCode?: SortOrder
|
|
46641
|
+
companyCountry?: SortOrder
|
|
46357
46642
|
}
|
|
46358
46643
|
|
|
46359
46644
|
export type UserMinOrderByAggregateInput = {
|
|
@@ -46380,6 +46665,15 @@ export namespace Prisma {
|
|
|
46380
46665
|
messageCount?: SortOrder
|
|
46381
46666
|
messageCountResetAt?: SortOrder
|
|
46382
46667
|
adminGrantExpiresAt?: SortOrder
|
|
46668
|
+
customerType?: SortOrder
|
|
46669
|
+
companyName?: SortOrder
|
|
46670
|
+
companyNumber?: SortOrder
|
|
46671
|
+
vatNumber?: SortOrder
|
|
46672
|
+
taxNumber?: SortOrder
|
|
46673
|
+
companyStreet?: SortOrder
|
|
46674
|
+
companyCity?: SortOrder
|
|
46675
|
+
companyPostalCode?: SortOrder
|
|
46676
|
+
companyCountry?: SortOrder
|
|
46383
46677
|
}
|
|
46384
46678
|
|
|
46385
46679
|
export type UserSumOrderByAggregateInput = {
|
|
@@ -46449,6 +46743,16 @@ export namespace Prisma {
|
|
|
46449
46743
|
_max?: NestedIntFilter<$PrismaModel>
|
|
46450
46744
|
}
|
|
46451
46745
|
|
|
46746
|
+
export type EnumCustomerTypeWithAggregatesFilter<$PrismaModel = never> = {
|
|
46747
|
+
equals?: $Enums.CustomerType | EnumCustomerTypeFieldRefInput<$PrismaModel>
|
|
46748
|
+
in?: $Enums.CustomerType[] | ListEnumCustomerTypeFieldRefInput<$PrismaModel>
|
|
46749
|
+
notIn?: $Enums.CustomerType[] | ListEnumCustomerTypeFieldRefInput<$PrismaModel>
|
|
46750
|
+
not?: NestedEnumCustomerTypeWithAggregatesFilter<$PrismaModel> | $Enums.CustomerType
|
|
46751
|
+
_count?: NestedIntFilter<$PrismaModel>
|
|
46752
|
+
_min?: NestedEnumCustomerTypeFilter<$PrismaModel>
|
|
46753
|
+
_max?: NestedEnumCustomerTypeFilter<$PrismaModel>
|
|
46754
|
+
}
|
|
46755
|
+
|
|
46452
46756
|
export type EnumApprovalStatusFilter<$PrismaModel = never> = {
|
|
46453
46757
|
equals?: $Enums.ApprovalStatus | EnumApprovalStatusFieldRefInput<$PrismaModel>
|
|
46454
46758
|
in?: $Enums.ApprovalStatus[] | ListEnumApprovalStatusFieldRefInput<$PrismaModel>
|
|
@@ -48545,6 +48849,10 @@ export namespace Prisma {
|
|
|
48545
48849
|
divide?: number
|
|
48546
48850
|
}
|
|
48547
48851
|
|
|
48852
|
+
export type EnumCustomerTypeFieldUpdateOperationsInput = {
|
|
48853
|
+
set?: $Enums.CustomerType
|
|
48854
|
+
}
|
|
48855
|
+
|
|
48548
48856
|
export type UserApprovalRequestUpdateOneWithoutUserNestedInput = {
|
|
48549
48857
|
create?: XOR<UserApprovalRequestCreateWithoutUserInput, UserApprovalRequestUncheckedCreateWithoutUserInput>
|
|
48550
48858
|
connectOrCreate?: UserApprovalRequestCreateOrConnectWithoutUserInput
|
|
@@ -50967,6 +51275,13 @@ export namespace Prisma {
|
|
|
50967
51275
|
not?: NestedEnumSubscriptionTierFilter<$PrismaModel> | $Enums.SubscriptionTier
|
|
50968
51276
|
}
|
|
50969
51277
|
|
|
51278
|
+
export type NestedEnumCustomerTypeFilter<$PrismaModel = never> = {
|
|
51279
|
+
equals?: $Enums.CustomerType | EnumCustomerTypeFieldRefInput<$PrismaModel>
|
|
51280
|
+
in?: $Enums.CustomerType[] | ListEnumCustomerTypeFieldRefInput<$PrismaModel>
|
|
51281
|
+
notIn?: $Enums.CustomerType[] | ListEnumCustomerTypeFieldRefInput<$PrismaModel>
|
|
51282
|
+
not?: NestedEnumCustomerTypeFilter<$PrismaModel> | $Enums.CustomerType
|
|
51283
|
+
}
|
|
51284
|
+
|
|
50970
51285
|
export type NestedDateTimeNullableWithAggregatesFilter<$PrismaModel = never> = {
|
|
50971
51286
|
equals?: Date | string | DateTimeFieldRefInput<$PrismaModel> | null
|
|
50972
51287
|
in?: Date[] | string[] | ListDateTimeFieldRefInput<$PrismaModel> | null
|
|
@@ -51040,6 +51355,16 @@ export namespace Prisma {
|
|
|
51040
51355
|
not?: NestedFloatFilter<$PrismaModel> | number
|
|
51041
51356
|
}
|
|
51042
51357
|
|
|
51358
|
+
export type NestedEnumCustomerTypeWithAggregatesFilter<$PrismaModel = never> = {
|
|
51359
|
+
equals?: $Enums.CustomerType | EnumCustomerTypeFieldRefInput<$PrismaModel>
|
|
51360
|
+
in?: $Enums.CustomerType[] | ListEnumCustomerTypeFieldRefInput<$PrismaModel>
|
|
51361
|
+
notIn?: $Enums.CustomerType[] | ListEnumCustomerTypeFieldRefInput<$PrismaModel>
|
|
51362
|
+
not?: NestedEnumCustomerTypeWithAggregatesFilter<$PrismaModel> | $Enums.CustomerType
|
|
51363
|
+
_count?: NestedIntFilter<$PrismaModel>
|
|
51364
|
+
_min?: NestedEnumCustomerTypeFilter<$PrismaModel>
|
|
51365
|
+
_max?: NestedEnumCustomerTypeFilter<$PrismaModel>
|
|
51366
|
+
}
|
|
51367
|
+
|
|
51043
51368
|
export type NestedEnumApprovalStatusFilter<$PrismaModel = never> = {
|
|
51044
51369
|
equals?: $Enums.ApprovalStatus | EnumApprovalStatusFieldRefInput<$PrismaModel>
|
|
51045
51370
|
in?: $Enums.ApprovalStatus[] | ListEnumApprovalStatusFieldRefInput<$PrismaModel>
|
|
@@ -51365,6 +51690,15 @@ export namespace Prisma {
|
|
|
51365
51690
|
messageCount?: number
|
|
51366
51691
|
messageCountResetAt?: Date | string | null
|
|
51367
51692
|
adminGrantExpiresAt?: Date | string | null
|
|
51693
|
+
customerType?: $Enums.CustomerType
|
|
51694
|
+
companyName?: string | null
|
|
51695
|
+
companyNumber?: string | null
|
|
51696
|
+
vatNumber?: string | null
|
|
51697
|
+
taxNumber?: string | null
|
|
51698
|
+
companyStreet?: string | null
|
|
51699
|
+
companyCity?: string | null
|
|
51700
|
+
companyPostalCode?: string | null
|
|
51701
|
+
companyCountry?: string | null
|
|
51368
51702
|
approvalRequest?: UserApprovalRequestCreateNestedOneWithoutUserInput
|
|
51369
51703
|
stripeCustomer?: StripeCustomerCreateNestedOneWithoutUserInput
|
|
51370
51704
|
ownedOrganizations?: OrganizationCreateNestedManyWithoutOwnerInput
|
|
@@ -51412,6 +51746,15 @@ export namespace Prisma {
|
|
|
51412
51746
|
messageCount?: number
|
|
51413
51747
|
messageCountResetAt?: Date | string | null
|
|
51414
51748
|
adminGrantExpiresAt?: Date | string | null
|
|
51749
|
+
customerType?: $Enums.CustomerType
|
|
51750
|
+
companyName?: string | null
|
|
51751
|
+
companyNumber?: string | null
|
|
51752
|
+
vatNumber?: string | null
|
|
51753
|
+
taxNumber?: string | null
|
|
51754
|
+
companyStreet?: string | null
|
|
51755
|
+
companyCity?: string | null
|
|
51756
|
+
companyPostalCode?: string | null
|
|
51757
|
+
companyCountry?: string | null
|
|
51415
51758
|
approvalRequest?: UserApprovalRequestUncheckedCreateNestedOneWithoutUserInput
|
|
51416
51759
|
stripeCustomer?: StripeCustomerUncheckedCreateNestedOneWithoutUserInput
|
|
51417
51760
|
ownedOrganizations?: OrganizationUncheckedCreateNestedManyWithoutOwnerInput
|
|
@@ -51475,6 +51818,15 @@ export namespace Prisma {
|
|
|
51475
51818
|
messageCount?: IntFieldUpdateOperationsInput | number
|
|
51476
51819
|
messageCountResetAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
51477
51820
|
adminGrantExpiresAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
51821
|
+
customerType?: EnumCustomerTypeFieldUpdateOperationsInput | $Enums.CustomerType
|
|
51822
|
+
companyName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
51823
|
+
companyNumber?: NullableStringFieldUpdateOperationsInput | string | null
|
|
51824
|
+
vatNumber?: NullableStringFieldUpdateOperationsInput | string | null
|
|
51825
|
+
taxNumber?: NullableStringFieldUpdateOperationsInput | string | null
|
|
51826
|
+
companyStreet?: NullableStringFieldUpdateOperationsInput | string | null
|
|
51827
|
+
companyCity?: NullableStringFieldUpdateOperationsInput | string | null
|
|
51828
|
+
companyPostalCode?: NullableStringFieldUpdateOperationsInput | string | null
|
|
51829
|
+
companyCountry?: NullableStringFieldUpdateOperationsInput | string | null
|
|
51478
51830
|
approvalRequest?: UserApprovalRequestUpdateOneWithoutUserNestedInput
|
|
51479
51831
|
stripeCustomer?: StripeCustomerUpdateOneWithoutUserNestedInput
|
|
51480
51832
|
ownedOrganizations?: OrganizationUpdateManyWithoutOwnerNestedInput
|
|
@@ -51522,6 +51874,15 @@ export namespace Prisma {
|
|
|
51522
51874
|
messageCount?: IntFieldUpdateOperationsInput | number
|
|
51523
51875
|
messageCountResetAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
51524
51876
|
adminGrantExpiresAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
51877
|
+
customerType?: EnumCustomerTypeFieldUpdateOperationsInput | $Enums.CustomerType
|
|
51878
|
+
companyName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
51879
|
+
companyNumber?: NullableStringFieldUpdateOperationsInput | string | null
|
|
51880
|
+
vatNumber?: NullableStringFieldUpdateOperationsInput | string | null
|
|
51881
|
+
taxNumber?: NullableStringFieldUpdateOperationsInput | string | null
|
|
51882
|
+
companyStreet?: NullableStringFieldUpdateOperationsInput | string | null
|
|
51883
|
+
companyCity?: NullableStringFieldUpdateOperationsInput | string | null
|
|
51884
|
+
companyPostalCode?: NullableStringFieldUpdateOperationsInput | string | null
|
|
51885
|
+
companyCountry?: NullableStringFieldUpdateOperationsInput | string | null
|
|
51525
51886
|
approvalRequest?: UserApprovalRequestUncheckedUpdateOneWithoutUserNestedInput
|
|
51526
51887
|
stripeCustomer?: StripeCustomerUncheckedUpdateOneWithoutUserNestedInput
|
|
51527
51888
|
ownedOrganizations?: OrganizationUncheckedUpdateManyWithoutOwnerNestedInput
|
|
@@ -53001,6 +53362,15 @@ export namespace Prisma {
|
|
|
53001
53362
|
messageCount?: number
|
|
53002
53363
|
messageCountResetAt?: Date | string | null
|
|
53003
53364
|
adminGrantExpiresAt?: Date | string | null
|
|
53365
|
+
customerType?: $Enums.CustomerType
|
|
53366
|
+
companyName?: string | null
|
|
53367
|
+
companyNumber?: string | null
|
|
53368
|
+
vatNumber?: string | null
|
|
53369
|
+
taxNumber?: string | null
|
|
53370
|
+
companyStreet?: string | null
|
|
53371
|
+
companyCity?: string | null
|
|
53372
|
+
companyPostalCode?: string | null
|
|
53373
|
+
companyCountry?: string | null
|
|
53004
53374
|
stripeCustomer?: StripeCustomerCreateNestedOneWithoutUserInput
|
|
53005
53375
|
ownedOrganizations?: OrganizationCreateNestedManyWithoutOwnerInput
|
|
53006
53376
|
organizationMembers?: OrganizationMemberCreateNestedManyWithoutUserInput
|
|
@@ -53048,6 +53418,15 @@ export namespace Prisma {
|
|
|
53048
53418
|
messageCount?: number
|
|
53049
53419
|
messageCountResetAt?: Date | string | null
|
|
53050
53420
|
adminGrantExpiresAt?: Date | string | null
|
|
53421
|
+
customerType?: $Enums.CustomerType
|
|
53422
|
+
companyName?: string | null
|
|
53423
|
+
companyNumber?: string | null
|
|
53424
|
+
vatNumber?: string | null
|
|
53425
|
+
taxNumber?: string | null
|
|
53426
|
+
companyStreet?: string | null
|
|
53427
|
+
companyCity?: string | null
|
|
53428
|
+
companyPostalCode?: string | null
|
|
53429
|
+
companyCountry?: string | null
|
|
53051
53430
|
stripeCustomer?: StripeCustomerUncheckedCreateNestedOneWithoutUserInput
|
|
53052
53431
|
ownedOrganizations?: OrganizationUncheckedCreateNestedManyWithoutOwnerInput
|
|
53053
53432
|
organizationMembers?: OrganizationMemberUncheckedCreateNestedManyWithoutUserInput
|
|
@@ -53111,6 +53490,15 @@ export namespace Prisma {
|
|
|
53111
53490
|
messageCount?: IntFieldUpdateOperationsInput | number
|
|
53112
53491
|
messageCountResetAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
53113
53492
|
adminGrantExpiresAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
53493
|
+
customerType?: EnumCustomerTypeFieldUpdateOperationsInput | $Enums.CustomerType
|
|
53494
|
+
companyName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
53495
|
+
companyNumber?: NullableStringFieldUpdateOperationsInput | string | null
|
|
53496
|
+
vatNumber?: NullableStringFieldUpdateOperationsInput | string | null
|
|
53497
|
+
taxNumber?: NullableStringFieldUpdateOperationsInput | string | null
|
|
53498
|
+
companyStreet?: NullableStringFieldUpdateOperationsInput | string | null
|
|
53499
|
+
companyCity?: NullableStringFieldUpdateOperationsInput | string | null
|
|
53500
|
+
companyPostalCode?: NullableStringFieldUpdateOperationsInput | string | null
|
|
53501
|
+
companyCountry?: NullableStringFieldUpdateOperationsInput | string | null
|
|
53114
53502
|
stripeCustomer?: StripeCustomerUpdateOneWithoutUserNestedInput
|
|
53115
53503
|
ownedOrganizations?: OrganizationUpdateManyWithoutOwnerNestedInput
|
|
53116
53504
|
organizationMembers?: OrganizationMemberUpdateManyWithoutUserNestedInput
|
|
@@ -53158,6 +53546,15 @@ export namespace Prisma {
|
|
|
53158
53546
|
messageCount?: IntFieldUpdateOperationsInput | number
|
|
53159
53547
|
messageCountResetAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
53160
53548
|
adminGrantExpiresAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
53549
|
+
customerType?: EnumCustomerTypeFieldUpdateOperationsInput | $Enums.CustomerType
|
|
53550
|
+
companyName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
53551
|
+
companyNumber?: NullableStringFieldUpdateOperationsInput | string | null
|
|
53552
|
+
vatNumber?: NullableStringFieldUpdateOperationsInput | string | null
|
|
53553
|
+
taxNumber?: NullableStringFieldUpdateOperationsInput | string | null
|
|
53554
|
+
companyStreet?: NullableStringFieldUpdateOperationsInput | string | null
|
|
53555
|
+
companyCity?: NullableStringFieldUpdateOperationsInput | string | null
|
|
53556
|
+
companyPostalCode?: NullableStringFieldUpdateOperationsInput | string | null
|
|
53557
|
+
companyCountry?: NullableStringFieldUpdateOperationsInput | string | null
|
|
53161
53558
|
stripeCustomer?: StripeCustomerUncheckedUpdateOneWithoutUserNestedInput
|
|
53162
53559
|
ownedOrganizations?: OrganizationUncheckedUpdateManyWithoutOwnerNestedInput
|
|
53163
53560
|
organizationMembers?: OrganizationMemberUncheckedUpdateManyWithoutUserNestedInput
|
|
@@ -53205,6 +53602,15 @@ export namespace Prisma {
|
|
|
53205
53602
|
messageCount?: number
|
|
53206
53603
|
messageCountResetAt?: Date | string | null
|
|
53207
53604
|
adminGrantExpiresAt?: Date | string | null
|
|
53605
|
+
customerType?: $Enums.CustomerType
|
|
53606
|
+
companyName?: string | null
|
|
53607
|
+
companyNumber?: string | null
|
|
53608
|
+
vatNumber?: string | null
|
|
53609
|
+
taxNumber?: string | null
|
|
53610
|
+
companyStreet?: string | null
|
|
53611
|
+
companyCity?: string | null
|
|
53612
|
+
companyPostalCode?: string | null
|
|
53613
|
+
companyCountry?: string | null
|
|
53208
53614
|
approvalRequest?: UserApprovalRequestCreateNestedOneWithoutUserInput
|
|
53209
53615
|
stripeCustomer?: StripeCustomerCreateNestedOneWithoutUserInput
|
|
53210
53616
|
organizationMembers?: OrganizationMemberCreateNestedManyWithoutUserInput
|
|
@@ -53252,6 +53658,15 @@ export namespace Prisma {
|
|
|
53252
53658
|
messageCount?: number
|
|
53253
53659
|
messageCountResetAt?: Date | string | null
|
|
53254
53660
|
adminGrantExpiresAt?: Date | string | null
|
|
53661
|
+
customerType?: $Enums.CustomerType
|
|
53662
|
+
companyName?: string | null
|
|
53663
|
+
companyNumber?: string | null
|
|
53664
|
+
vatNumber?: string | null
|
|
53665
|
+
taxNumber?: string | null
|
|
53666
|
+
companyStreet?: string | null
|
|
53667
|
+
companyCity?: string | null
|
|
53668
|
+
companyPostalCode?: string | null
|
|
53669
|
+
companyCountry?: string | null
|
|
53255
53670
|
approvalRequest?: UserApprovalRequestUncheckedCreateNestedOneWithoutUserInput
|
|
53256
53671
|
stripeCustomer?: StripeCustomerUncheckedCreateNestedOneWithoutUserInput
|
|
53257
53672
|
organizationMembers?: OrganizationMemberUncheckedCreateNestedManyWithoutUserInput
|
|
@@ -53444,6 +53859,15 @@ export namespace Prisma {
|
|
|
53444
53859
|
messageCount?: IntFieldUpdateOperationsInput | number
|
|
53445
53860
|
messageCountResetAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
53446
53861
|
adminGrantExpiresAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
53862
|
+
customerType?: EnumCustomerTypeFieldUpdateOperationsInput | $Enums.CustomerType
|
|
53863
|
+
companyName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
53864
|
+
companyNumber?: NullableStringFieldUpdateOperationsInput | string | null
|
|
53865
|
+
vatNumber?: NullableStringFieldUpdateOperationsInput | string | null
|
|
53866
|
+
taxNumber?: NullableStringFieldUpdateOperationsInput | string | null
|
|
53867
|
+
companyStreet?: NullableStringFieldUpdateOperationsInput | string | null
|
|
53868
|
+
companyCity?: NullableStringFieldUpdateOperationsInput | string | null
|
|
53869
|
+
companyPostalCode?: NullableStringFieldUpdateOperationsInput | string | null
|
|
53870
|
+
companyCountry?: NullableStringFieldUpdateOperationsInput | string | null
|
|
53447
53871
|
approvalRequest?: UserApprovalRequestUpdateOneWithoutUserNestedInput
|
|
53448
53872
|
stripeCustomer?: StripeCustomerUpdateOneWithoutUserNestedInput
|
|
53449
53873
|
organizationMembers?: OrganizationMemberUpdateManyWithoutUserNestedInput
|
|
@@ -53491,6 +53915,15 @@ export namespace Prisma {
|
|
|
53491
53915
|
messageCount?: IntFieldUpdateOperationsInput | number
|
|
53492
53916
|
messageCountResetAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
53493
53917
|
adminGrantExpiresAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
53918
|
+
customerType?: EnumCustomerTypeFieldUpdateOperationsInput | $Enums.CustomerType
|
|
53919
|
+
companyName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
53920
|
+
companyNumber?: NullableStringFieldUpdateOperationsInput | string | null
|
|
53921
|
+
vatNumber?: NullableStringFieldUpdateOperationsInput | string | null
|
|
53922
|
+
taxNumber?: NullableStringFieldUpdateOperationsInput | string | null
|
|
53923
|
+
companyStreet?: NullableStringFieldUpdateOperationsInput | string | null
|
|
53924
|
+
companyCity?: NullableStringFieldUpdateOperationsInput | string | null
|
|
53925
|
+
companyPostalCode?: NullableStringFieldUpdateOperationsInput | string | null
|
|
53926
|
+
companyCountry?: NullableStringFieldUpdateOperationsInput | string | null
|
|
53494
53927
|
approvalRequest?: UserApprovalRequestUncheckedUpdateOneWithoutUserNestedInput
|
|
53495
53928
|
stripeCustomer?: StripeCustomerUncheckedUpdateOneWithoutUserNestedInput
|
|
53496
53929
|
organizationMembers?: OrganizationMemberUncheckedUpdateManyWithoutUserNestedInput
|
|
@@ -53684,6 +54117,15 @@ export namespace Prisma {
|
|
|
53684
54117
|
messageCount?: number
|
|
53685
54118
|
messageCountResetAt?: Date | string | null
|
|
53686
54119
|
adminGrantExpiresAt?: Date | string | null
|
|
54120
|
+
customerType?: $Enums.CustomerType
|
|
54121
|
+
companyName?: string | null
|
|
54122
|
+
companyNumber?: string | null
|
|
54123
|
+
vatNumber?: string | null
|
|
54124
|
+
taxNumber?: string | null
|
|
54125
|
+
companyStreet?: string | null
|
|
54126
|
+
companyCity?: string | null
|
|
54127
|
+
companyPostalCode?: string | null
|
|
54128
|
+
companyCountry?: string | null
|
|
53687
54129
|
approvalRequest?: UserApprovalRequestCreateNestedOneWithoutUserInput
|
|
53688
54130
|
stripeCustomer?: StripeCustomerCreateNestedOneWithoutUserInput
|
|
53689
54131
|
ownedOrganizations?: OrganizationCreateNestedManyWithoutOwnerInput
|
|
@@ -53731,6 +54173,15 @@ export namespace Prisma {
|
|
|
53731
54173
|
messageCount?: number
|
|
53732
54174
|
messageCountResetAt?: Date | string | null
|
|
53733
54175
|
adminGrantExpiresAt?: Date | string | null
|
|
54176
|
+
customerType?: $Enums.CustomerType
|
|
54177
|
+
companyName?: string | null
|
|
54178
|
+
companyNumber?: string | null
|
|
54179
|
+
vatNumber?: string | null
|
|
54180
|
+
taxNumber?: string | null
|
|
54181
|
+
companyStreet?: string | null
|
|
54182
|
+
companyCity?: string | null
|
|
54183
|
+
companyPostalCode?: string | null
|
|
54184
|
+
companyCountry?: string | null
|
|
53734
54185
|
approvalRequest?: UserApprovalRequestUncheckedCreateNestedOneWithoutUserInput
|
|
53735
54186
|
stripeCustomer?: StripeCustomerUncheckedCreateNestedOneWithoutUserInput
|
|
53736
54187
|
ownedOrganizations?: OrganizationUncheckedCreateNestedManyWithoutOwnerInput
|
|
@@ -53859,6 +54310,15 @@ export namespace Prisma {
|
|
|
53859
54310
|
messageCount?: IntFieldUpdateOperationsInput | number
|
|
53860
54311
|
messageCountResetAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
53861
54312
|
adminGrantExpiresAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
54313
|
+
customerType?: EnumCustomerTypeFieldUpdateOperationsInput | $Enums.CustomerType
|
|
54314
|
+
companyName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
54315
|
+
companyNumber?: NullableStringFieldUpdateOperationsInput | string | null
|
|
54316
|
+
vatNumber?: NullableStringFieldUpdateOperationsInput | string | null
|
|
54317
|
+
taxNumber?: NullableStringFieldUpdateOperationsInput | string | null
|
|
54318
|
+
companyStreet?: NullableStringFieldUpdateOperationsInput | string | null
|
|
54319
|
+
companyCity?: NullableStringFieldUpdateOperationsInput | string | null
|
|
54320
|
+
companyPostalCode?: NullableStringFieldUpdateOperationsInput | string | null
|
|
54321
|
+
companyCountry?: NullableStringFieldUpdateOperationsInput | string | null
|
|
53862
54322
|
approvalRequest?: UserApprovalRequestUpdateOneWithoutUserNestedInput
|
|
53863
54323
|
stripeCustomer?: StripeCustomerUpdateOneWithoutUserNestedInput
|
|
53864
54324
|
ownedOrganizations?: OrganizationUpdateManyWithoutOwnerNestedInput
|
|
@@ -53906,6 +54366,15 @@ export namespace Prisma {
|
|
|
53906
54366
|
messageCount?: IntFieldUpdateOperationsInput | number
|
|
53907
54367
|
messageCountResetAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
53908
54368
|
adminGrantExpiresAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
54369
|
+
customerType?: EnumCustomerTypeFieldUpdateOperationsInput | $Enums.CustomerType
|
|
54370
|
+
companyName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
54371
|
+
companyNumber?: NullableStringFieldUpdateOperationsInput | string | null
|
|
54372
|
+
vatNumber?: NullableStringFieldUpdateOperationsInput | string | null
|
|
54373
|
+
taxNumber?: NullableStringFieldUpdateOperationsInput | string | null
|
|
54374
|
+
companyStreet?: NullableStringFieldUpdateOperationsInput | string | null
|
|
54375
|
+
companyCity?: NullableStringFieldUpdateOperationsInput | string | null
|
|
54376
|
+
companyPostalCode?: NullableStringFieldUpdateOperationsInput | string | null
|
|
54377
|
+
companyCountry?: NullableStringFieldUpdateOperationsInput | string | null
|
|
53909
54378
|
approvalRequest?: UserApprovalRequestUncheckedUpdateOneWithoutUserNestedInput
|
|
53910
54379
|
stripeCustomer?: StripeCustomerUncheckedUpdateOneWithoutUserNestedInput
|
|
53911
54380
|
ownedOrganizations?: OrganizationUncheckedUpdateManyWithoutOwnerNestedInput
|
|
@@ -54012,6 +54481,15 @@ export namespace Prisma {
|
|
|
54012
54481
|
messageCount?: number
|
|
54013
54482
|
messageCountResetAt?: Date | string | null
|
|
54014
54483
|
adminGrantExpiresAt?: Date | string | null
|
|
54484
|
+
customerType?: $Enums.CustomerType
|
|
54485
|
+
companyName?: string | null
|
|
54486
|
+
companyNumber?: string | null
|
|
54487
|
+
vatNumber?: string | null
|
|
54488
|
+
taxNumber?: string | null
|
|
54489
|
+
companyStreet?: string | null
|
|
54490
|
+
companyCity?: string | null
|
|
54491
|
+
companyPostalCode?: string | null
|
|
54492
|
+
companyCountry?: string | null
|
|
54015
54493
|
approvalRequest?: UserApprovalRequestCreateNestedOneWithoutUserInput
|
|
54016
54494
|
stripeCustomer?: StripeCustomerCreateNestedOneWithoutUserInput
|
|
54017
54495
|
ownedOrganizations?: OrganizationCreateNestedManyWithoutOwnerInput
|
|
@@ -54059,6 +54537,15 @@ export namespace Prisma {
|
|
|
54059
54537
|
messageCount?: number
|
|
54060
54538
|
messageCountResetAt?: Date | string | null
|
|
54061
54539
|
adminGrantExpiresAt?: Date | string | null
|
|
54540
|
+
customerType?: $Enums.CustomerType
|
|
54541
|
+
companyName?: string | null
|
|
54542
|
+
companyNumber?: string | null
|
|
54543
|
+
vatNumber?: string | null
|
|
54544
|
+
taxNumber?: string | null
|
|
54545
|
+
companyStreet?: string | null
|
|
54546
|
+
companyCity?: string | null
|
|
54547
|
+
companyPostalCode?: string | null
|
|
54548
|
+
companyCountry?: string | null
|
|
54062
54549
|
approvalRequest?: UserApprovalRequestUncheckedCreateNestedOneWithoutUserInput
|
|
54063
54550
|
stripeCustomer?: StripeCustomerUncheckedCreateNestedOneWithoutUserInput
|
|
54064
54551
|
ownedOrganizations?: OrganizationUncheckedCreateNestedManyWithoutOwnerInput
|
|
@@ -54187,6 +54674,15 @@ export namespace Prisma {
|
|
|
54187
54674
|
messageCount?: IntFieldUpdateOperationsInput | number
|
|
54188
54675
|
messageCountResetAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
54189
54676
|
adminGrantExpiresAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
54677
|
+
customerType?: EnumCustomerTypeFieldUpdateOperationsInput | $Enums.CustomerType
|
|
54678
|
+
companyName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
54679
|
+
companyNumber?: NullableStringFieldUpdateOperationsInput | string | null
|
|
54680
|
+
vatNumber?: NullableStringFieldUpdateOperationsInput | string | null
|
|
54681
|
+
taxNumber?: NullableStringFieldUpdateOperationsInput | string | null
|
|
54682
|
+
companyStreet?: NullableStringFieldUpdateOperationsInput | string | null
|
|
54683
|
+
companyCity?: NullableStringFieldUpdateOperationsInput | string | null
|
|
54684
|
+
companyPostalCode?: NullableStringFieldUpdateOperationsInput | string | null
|
|
54685
|
+
companyCountry?: NullableStringFieldUpdateOperationsInput | string | null
|
|
54190
54686
|
approvalRequest?: UserApprovalRequestUpdateOneWithoutUserNestedInput
|
|
54191
54687
|
stripeCustomer?: StripeCustomerUpdateOneWithoutUserNestedInput
|
|
54192
54688
|
ownedOrganizations?: OrganizationUpdateManyWithoutOwnerNestedInput
|
|
@@ -54234,6 +54730,15 @@ export namespace Prisma {
|
|
|
54234
54730
|
messageCount?: IntFieldUpdateOperationsInput | number
|
|
54235
54731
|
messageCountResetAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
54236
54732
|
adminGrantExpiresAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
54733
|
+
customerType?: EnumCustomerTypeFieldUpdateOperationsInput | $Enums.CustomerType
|
|
54734
|
+
companyName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
54735
|
+
companyNumber?: NullableStringFieldUpdateOperationsInput | string | null
|
|
54736
|
+
vatNumber?: NullableStringFieldUpdateOperationsInput | string | null
|
|
54737
|
+
taxNumber?: NullableStringFieldUpdateOperationsInput | string | null
|
|
54738
|
+
companyStreet?: NullableStringFieldUpdateOperationsInput | string | null
|
|
54739
|
+
companyCity?: NullableStringFieldUpdateOperationsInput | string | null
|
|
54740
|
+
companyPostalCode?: NullableStringFieldUpdateOperationsInput | string | null
|
|
54741
|
+
companyCountry?: NullableStringFieldUpdateOperationsInput | string | null
|
|
54237
54742
|
approvalRequest?: UserApprovalRequestUncheckedUpdateOneWithoutUserNestedInput
|
|
54238
54743
|
stripeCustomer?: StripeCustomerUncheckedUpdateOneWithoutUserNestedInput
|
|
54239
54744
|
ownedOrganizations?: OrganizationUncheckedUpdateManyWithoutOwnerNestedInput
|
|
@@ -54335,6 +54840,15 @@ export namespace Prisma {
|
|
|
54335
54840
|
messageCount?: number
|
|
54336
54841
|
messageCountResetAt?: Date | string | null
|
|
54337
54842
|
adminGrantExpiresAt?: Date | string | null
|
|
54843
|
+
customerType?: $Enums.CustomerType
|
|
54844
|
+
companyName?: string | null
|
|
54845
|
+
companyNumber?: string | null
|
|
54846
|
+
vatNumber?: string | null
|
|
54847
|
+
taxNumber?: string | null
|
|
54848
|
+
companyStreet?: string | null
|
|
54849
|
+
companyCity?: string | null
|
|
54850
|
+
companyPostalCode?: string | null
|
|
54851
|
+
companyCountry?: string | null
|
|
54338
54852
|
approvalRequest?: UserApprovalRequestCreateNestedOneWithoutUserInput
|
|
54339
54853
|
stripeCustomer?: StripeCustomerCreateNestedOneWithoutUserInput
|
|
54340
54854
|
ownedOrganizations?: OrganizationCreateNestedManyWithoutOwnerInput
|
|
@@ -54382,6 +54896,15 @@ export namespace Prisma {
|
|
|
54382
54896
|
messageCount?: number
|
|
54383
54897
|
messageCountResetAt?: Date | string | null
|
|
54384
54898
|
adminGrantExpiresAt?: Date | string | null
|
|
54899
|
+
customerType?: $Enums.CustomerType
|
|
54900
|
+
companyName?: string | null
|
|
54901
|
+
companyNumber?: string | null
|
|
54902
|
+
vatNumber?: string | null
|
|
54903
|
+
taxNumber?: string | null
|
|
54904
|
+
companyStreet?: string | null
|
|
54905
|
+
companyCity?: string | null
|
|
54906
|
+
companyPostalCode?: string | null
|
|
54907
|
+
companyCountry?: string | null
|
|
54385
54908
|
approvalRequest?: UserApprovalRequestUncheckedCreateNestedOneWithoutUserInput
|
|
54386
54909
|
stripeCustomer?: StripeCustomerUncheckedCreateNestedOneWithoutUserInput
|
|
54387
54910
|
ownedOrganizations?: OrganizationUncheckedCreateNestedManyWithoutOwnerInput
|
|
@@ -54533,6 +55056,15 @@ export namespace Prisma {
|
|
|
54533
55056
|
messageCount?: IntFieldUpdateOperationsInput | number
|
|
54534
55057
|
messageCountResetAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
54535
55058
|
adminGrantExpiresAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
55059
|
+
customerType?: EnumCustomerTypeFieldUpdateOperationsInput | $Enums.CustomerType
|
|
55060
|
+
companyName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
55061
|
+
companyNumber?: NullableStringFieldUpdateOperationsInput | string | null
|
|
55062
|
+
vatNumber?: NullableStringFieldUpdateOperationsInput | string | null
|
|
55063
|
+
taxNumber?: NullableStringFieldUpdateOperationsInput | string | null
|
|
55064
|
+
companyStreet?: NullableStringFieldUpdateOperationsInput | string | null
|
|
55065
|
+
companyCity?: NullableStringFieldUpdateOperationsInput | string | null
|
|
55066
|
+
companyPostalCode?: NullableStringFieldUpdateOperationsInput | string | null
|
|
55067
|
+
companyCountry?: NullableStringFieldUpdateOperationsInput | string | null
|
|
54536
55068
|
approvalRequest?: UserApprovalRequestUpdateOneWithoutUserNestedInput
|
|
54537
55069
|
stripeCustomer?: StripeCustomerUpdateOneWithoutUserNestedInput
|
|
54538
55070
|
ownedOrganizations?: OrganizationUpdateManyWithoutOwnerNestedInput
|
|
@@ -54580,6 +55112,15 @@ export namespace Prisma {
|
|
|
54580
55112
|
messageCount?: IntFieldUpdateOperationsInput | number
|
|
54581
55113
|
messageCountResetAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
54582
55114
|
adminGrantExpiresAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
55115
|
+
customerType?: EnumCustomerTypeFieldUpdateOperationsInput | $Enums.CustomerType
|
|
55116
|
+
companyName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
55117
|
+
companyNumber?: NullableStringFieldUpdateOperationsInput | string | null
|
|
55118
|
+
vatNumber?: NullableStringFieldUpdateOperationsInput | string | null
|
|
55119
|
+
taxNumber?: NullableStringFieldUpdateOperationsInput | string | null
|
|
55120
|
+
companyStreet?: NullableStringFieldUpdateOperationsInput | string | null
|
|
55121
|
+
companyCity?: NullableStringFieldUpdateOperationsInput | string | null
|
|
55122
|
+
companyPostalCode?: NullableStringFieldUpdateOperationsInput | string | null
|
|
55123
|
+
companyCountry?: NullableStringFieldUpdateOperationsInput | string | null
|
|
54583
55124
|
approvalRequest?: UserApprovalRequestUncheckedUpdateOneWithoutUserNestedInput
|
|
54584
55125
|
stripeCustomer?: StripeCustomerUncheckedUpdateOneWithoutUserNestedInput
|
|
54585
55126
|
ownedOrganizations?: OrganizationUncheckedUpdateManyWithoutOwnerNestedInput
|
|
@@ -54694,6 +55235,15 @@ export namespace Prisma {
|
|
|
54694
55235
|
messageCount?: number
|
|
54695
55236
|
messageCountResetAt?: Date | string | null
|
|
54696
55237
|
adminGrantExpiresAt?: Date | string | null
|
|
55238
|
+
customerType?: $Enums.CustomerType
|
|
55239
|
+
companyName?: string | null
|
|
55240
|
+
companyNumber?: string | null
|
|
55241
|
+
vatNumber?: string | null
|
|
55242
|
+
taxNumber?: string | null
|
|
55243
|
+
companyStreet?: string | null
|
|
55244
|
+
companyCity?: string | null
|
|
55245
|
+
companyPostalCode?: string | null
|
|
55246
|
+
companyCountry?: string | null
|
|
54697
55247
|
approvalRequest?: UserApprovalRequestCreateNestedOneWithoutUserInput
|
|
54698
55248
|
stripeCustomer?: StripeCustomerCreateNestedOneWithoutUserInput
|
|
54699
55249
|
ownedOrganizations?: OrganizationCreateNestedManyWithoutOwnerInput
|
|
@@ -54741,6 +55291,15 @@ export namespace Prisma {
|
|
|
54741
55291
|
messageCount?: number
|
|
54742
55292
|
messageCountResetAt?: Date | string | null
|
|
54743
55293
|
adminGrantExpiresAt?: Date | string | null
|
|
55294
|
+
customerType?: $Enums.CustomerType
|
|
55295
|
+
companyName?: string | null
|
|
55296
|
+
companyNumber?: string | null
|
|
55297
|
+
vatNumber?: string | null
|
|
55298
|
+
taxNumber?: string | null
|
|
55299
|
+
companyStreet?: string | null
|
|
55300
|
+
companyCity?: string | null
|
|
55301
|
+
companyPostalCode?: string | null
|
|
55302
|
+
companyCountry?: string | null
|
|
54744
55303
|
approvalRequest?: UserApprovalRequestUncheckedCreateNestedOneWithoutUserInput
|
|
54745
55304
|
stripeCustomer?: StripeCustomerUncheckedCreateNestedOneWithoutUserInput
|
|
54746
55305
|
ownedOrganizations?: OrganizationUncheckedCreateNestedManyWithoutOwnerInput
|
|
@@ -55013,6 +55572,15 @@ export namespace Prisma {
|
|
|
55013
55572
|
messageCount?: IntFieldUpdateOperationsInput | number
|
|
55014
55573
|
messageCountResetAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
55015
55574
|
adminGrantExpiresAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
55575
|
+
customerType?: EnumCustomerTypeFieldUpdateOperationsInput | $Enums.CustomerType
|
|
55576
|
+
companyName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
55577
|
+
companyNumber?: NullableStringFieldUpdateOperationsInput | string | null
|
|
55578
|
+
vatNumber?: NullableStringFieldUpdateOperationsInput | string | null
|
|
55579
|
+
taxNumber?: NullableStringFieldUpdateOperationsInput | string | null
|
|
55580
|
+
companyStreet?: NullableStringFieldUpdateOperationsInput | string | null
|
|
55581
|
+
companyCity?: NullableStringFieldUpdateOperationsInput | string | null
|
|
55582
|
+
companyPostalCode?: NullableStringFieldUpdateOperationsInput | string | null
|
|
55583
|
+
companyCountry?: NullableStringFieldUpdateOperationsInput | string | null
|
|
55016
55584
|
approvalRequest?: UserApprovalRequestUpdateOneWithoutUserNestedInput
|
|
55017
55585
|
stripeCustomer?: StripeCustomerUpdateOneWithoutUserNestedInput
|
|
55018
55586
|
ownedOrganizations?: OrganizationUpdateManyWithoutOwnerNestedInput
|
|
@@ -55060,6 +55628,15 @@ export namespace Prisma {
|
|
|
55060
55628
|
messageCount?: IntFieldUpdateOperationsInput | number
|
|
55061
55629
|
messageCountResetAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
55062
55630
|
adminGrantExpiresAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
55631
|
+
customerType?: EnumCustomerTypeFieldUpdateOperationsInput | $Enums.CustomerType
|
|
55632
|
+
companyName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
55633
|
+
companyNumber?: NullableStringFieldUpdateOperationsInput | string | null
|
|
55634
|
+
vatNumber?: NullableStringFieldUpdateOperationsInput | string | null
|
|
55635
|
+
taxNumber?: NullableStringFieldUpdateOperationsInput | string | null
|
|
55636
|
+
companyStreet?: NullableStringFieldUpdateOperationsInput | string | null
|
|
55637
|
+
companyCity?: NullableStringFieldUpdateOperationsInput | string | null
|
|
55638
|
+
companyPostalCode?: NullableStringFieldUpdateOperationsInput | string | null
|
|
55639
|
+
companyCountry?: NullableStringFieldUpdateOperationsInput | string | null
|
|
55063
55640
|
approvalRequest?: UserApprovalRequestUncheckedUpdateOneWithoutUserNestedInput
|
|
55064
55641
|
stripeCustomer?: StripeCustomerUncheckedUpdateOneWithoutUserNestedInput
|
|
55065
55642
|
ownedOrganizations?: OrganizationUncheckedUpdateManyWithoutOwnerNestedInput
|
|
@@ -55519,6 +56096,15 @@ export namespace Prisma {
|
|
|
55519
56096
|
messageCount?: number
|
|
55520
56097
|
messageCountResetAt?: Date | string | null
|
|
55521
56098
|
adminGrantExpiresAt?: Date | string | null
|
|
56099
|
+
customerType?: $Enums.CustomerType
|
|
56100
|
+
companyName?: string | null
|
|
56101
|
+
companyNumber?: string | null
|
|
56102
|
+
vatNumber?: string | null
|
|
56103
|
+
taxNumber?: string | null
|
|
56104
|
+
companyStreet?: string | null
|
|
56105
|
+
companyCity?: string | null
|
|
56106
|
+
companyPostalCode?: string | null
|
|
56107
|
+
companyCountry?: string | null
|
|
55522
56108
|
approvalRequest?: UserApprovalRequestCreateNestedOneWithoutUserInput
|
|
55523
56109
|
stripeCustomer?: StripeCustomerCreateNestedOneWithoutUserInput
|
|
55524
56110
|
ownedOrganizations?: OrganizationCreateNestedManyWithoutOwnerInput
|
|
@@ -55566,6 +56152,15 @@ export namespace Prisma {
|
|
|
55566
56152
|
messageCount?: number
|
|
55567
56153
|
messageCountResetAt?: Date | string | null
|
|
55568
56154
|
adminGrantExpiresAt?: Date | string | null
|
|
56155
|
+
customerType?: $Enums.CustomerType
|
|
56156
|
+
companyName?: string | null
|
|
56157
|
+
companyNumber?: string | null
|
|
56158
|
+
vatNumber?: string | null
|
|
56159
|
+
taxNumber?: string | null
|
|
56160
|
+
companyStreet?: string | null
|
|
56161
|
+
companyCity?: string | null
|
|
56162
|
+
companyPostalCode?: string | null
|
|
56163
|
+
companyCountry?: string | null
|
|
55569
56164
|
approvalRequest?: UserApprovalRequestUncheckedCreateNestedOneWithoutUserInput
|
|
55570
56165
|
stripeCustomer?: StripeCustomerUncheckedCreateNestedOneWithoutUserInput
|
|
55571
56166
|
ownedOrganizations?: OrganizationUncheckedCreateNestedManyWithoutOwnerInput
|
|
@@ -55684,6 +56279,15 @@ export namespace Prisma {
|
|
|
55684
56279
|
messageCount?: IntFieldUpdateOperationsInput | number
|
|
55685
56280
|
messageCountResetAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
55686
56281
|
adminGrantExpiresAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
56282
|
+
customerType?: EnumCustomerTypeFieldUpdateOperationsInput | $Enums.CustomerType
|
|
56283
|
+
companyName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
56284
|
+
companyNumber?: NullableStringFieldUpdateOperationsInput | string | null
|
|
56285
|
+
vatNumber?: NullableStringFieldUpdateOperationsInput | string | null
|
|
56286
|
+
taxNumber?: NullableStringFieldUpdateOperationsInput | string | null
|
|
56287
|
+
companyStreet?: NullableStringFieldUpdateOperationsInput | string | null
|
|
56288
|
+
companyCity?: NullableStringFieldUpdateOperationsInput | string | null
|
|
56289
|
+
companyPostalCode?: NullableStringFieldUpdateOperationsInput | string | null
|
|
56290
|
+
companyCountry?: NullableStringFieldUpdateOperationsInput | string | null
|
|
55687
56291
|
approvalRequest?: UserApprovalRequestUpdateOneWithoutUserNestedInput
|
|
55688
56292
|
stripeCustomer?: StripeCustomerUpdateOneWithoutUserNestedInput
|
|
55689
56293
|
ownedOrganizations?: OrganizationUpdateManyWithoutOwnerNestedInput
|
|
@@ -55731,6 +56335,15 @@ export namespace Prisma {
|
|
|
55731
56335
|
messageCount?: IntFieldUpdateOperationsInput | number
|
|
55732
56336
|
messageCountResetAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
55733
56337
|
adminGrantExpiresAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
56338
|
+
customerType?: EnumCustomerTypeFieldUpdateOperationsInput | $Enums.CustomerType
|
|
56339
|
+
companyName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
56340
|
+
companyNumber?: NullableStringFieldUpdateOperationsInput | string | null
|
|
56341
|
+
vatNumber?: NullableStringFieldUpdateOperationsInput | string | null
|
|
56342
|
+
taxNumber?: NullableStringFieldUpdateOperationsInput | string | null
|
|
56343
|
+
companyStreet?: NullableStringFieldUpdateOperationsInput | string | null
|
|
56344
|
+
companyCity?: NullableStringFieldUpdateOperationsInput | string | null
|
|
56345
|
+
companyPostalCode?: NullableStringFieldUpdateOperationsInput | string | null
|
|
56346
|
+
companyCountry?: NullableStringFieldUpdateOperationsInput | string | null
|
|
55734
56347
|
approvalRequest?: UserApprovalRequestUncheckedUpdateOneWithoutUserNestedInput
|
|
55735
56348
|
stripeCustomer?: StripeCustomerUncheckedUpdateOneWithoutUserNestedInput
|
|
55736
56349
|
ownedOrganizations?: OrganizationUncheckedUpdateManyWithoutOwnerNestedInput
|
|
@@ -55907,6 +56520,15 @@ export namespace Prisma {
|
|
|
55907
56520
|
messageCount?: number
|
|
55908
56521
|
messageCountResetAt?: Date | string | null
|
|
55909
56522
|
adminGrantExpiresAt?: Date | string | null
|
|
56523
|
+
customerType?: $Enums.CustomerType
|
|
56524
|
+
companyName?: string | null
|
|
56525
|
+
companyNumber?: string | null
|
|
56526
|
+
vatNumber?: string | null
|
|
56527
|
+
taxNumber?: string | null
|
|
56528
|
+
companyStreet?: string | null
|
|
56529
|
+
companyCity?: string | null
|
|
56530
|
+
companyPostalCode?: string | null
|
|
56531
|
+
companyCountry?: string | null
|
|
55910
56532
|
approvalRequest?: UserApprovalRequestCreateNestedOneWithoutUserInput
|
|
55911
56533
|
stripeCustomer?: StripeCustomerCreateNestedOneWithoutUserInput
|
|
55912
56534
|
ownedOrganizations?: OrganizationCreateNestedManyWithoutOwnerInput
|
|
@@ -55954,6 +56576,15 @@ export namespace Prisma {
|
|
|
55954
56576
|
messageCount?: number
|
|
55955
56577
|
messageCountResetAt?: Date | string | null
|
|
55956
56578
|
adminGrantExpiresAt?: Date | string | null
|
|
56579
|
+
customerType?: $Enums.CustomerType
|
|
56580
|
+
companyName?: string | null
|
|
56581
|
+
companyNumber?: string | null
|
|
56582
|
+
vatNumber?: string | null
|
|
56583
|
+
taxNumber?: string | null
|
|
56584
|
+
companyStreet?: string | null
|
|
56585
|
+
companyCity?: string | null
|
|
56586
|
+
companyPostalCode?: string | null
|
|
56587
|
+
companyCountry?: string | null
|
|
55957
56588
|
approvalRequest?: UserApprovalRequestUncheckedCreateNestedOneWithoutUserInput
|
|
55958
56589
|
stripeCustomer?: StripeCustomerUncheckedCreateNestedOneWithoutUserInput
|
|
55959
56590
|
ownedOrganizations?: OrganizationUncheckedCreateNestedManyWithoutOwnerInput
|
|
@@ -56048,6 +56679,15 @@ export namespace Prisma {
|
|
|
56048
56679
|
messageCount?: IntFieldUpdateOperationsInput | number
|
|
56049
56680
|
messageCountResetAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
56050
56681
|
adminGrantExpiresAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
56682
|
+
customerType?: EnumCustomerTypeFieldUpdateOperationsInput | $Enums.CustomerType
|
|
56683
|
+
companyName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
56684
|
+
companyNumber?: NullableStringFieldUpdateOperationsInput | string | null
|
|
56685
|
+
vatNumber?: NullableStringFieldUpdateOperationsInput | string | null
|
|
56686
|
+
taxNumber?: NullableStringFieldUpdateOperationsInput | string | null
|
|
56687
|
+
companyStreet?: NullableStringFieldUpdateOperationsInput | string | null
|
|
56688
|
+
companyCity?: NullableStringFieldUpdateOperationsInput | string | null
|
|
56689
|
+
companyPostalCode?: NullableStringFieldUpdateOperationsInput | string | null
|
|
56690
|
+
companyCountry?: NullableStringFieldUpdateOperationsInput | string | null
|
|
56051
56691
|
approvalRequest?: UserApprovalRequestUpdateOneWithoutUserNestedInput
|
|
56052
56692
|
stripeCustomer?: StripeCustomerUpdateOneWithoutUserNestedInput
|
|
56053
56693
|
ownedOrganizations?: OrganizationUpdateManyWithoutOwnerNestedInput
|
|
@@ -56095,6 +56735,15 @@ export namespace Prisma {
|
|
|
56095
56735
|
messageCount?: IntFieldUpdateOperationsInput | number
|
|
56096
56736
|
messageCountResetAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
56097
56737
|
adminGrantExpiresAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
56738
|
+
customerType?: EnumCustomerTypeFieldUpdateOperationsInput | $Enums.CustomerType
|
|
56739
|
+
companyName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
56740
|
+
companyNumber?: NullableStringFieldUpdateOperationsInput | string | null
|
|
56741
|
+
vatNumber?: NullableStringFieldUpdateOperationsInput | string | null
|
|
56742
|
+
taxNumber?: NullableStringFieldUpdateOperationsInput | string | null
|
|
56743
|
+
companyStreet?: NullableStringFieldUpdateOperationsInput | string | null
|
|
56744
|
+
companyCity?: NullableStringFieldUpdateOperationsInput | string | null
|
|
56745
|
+
companyPostalCode?: NullableStringFieldUpdateOperationsInput | string | null
|
|
56746
|
+
companyCountry?: NullableStringFieldUpdateOperationsInput | string | null
|
|
56098
56747
|
approvalRequest?: UserApprovalRequestUncheckedUpdateOneWithoutUserNestedInput
|
|
56099
56748
|
stripeCustomer?: StripeCustomerUncheckedUpdateOneWithoutUserNestedInput
|
|
56100
56749
|
ownedOrganizations?: OrganizationUncheckedUpdateManyWithoutOwnerNestedInput
|
|
@@ -56192,6 +56841,15 @@ export namespace Prisma {
|
|
|
56192
56841
|
messageCount?: number
|
|
56193
56842
|
messageCountResetAt?: Date | string | null
|
|
56194
56843
|
adminGrantExpiresAt?: Date | string | null
|
|
56844
|
+
customerType?: $Enums.CustomerType
|
|
56845
|
+
companyName?: string | null
|
|
56846
|
+
companyNumber?: string | null
|
|
56847
|
+
vatNumber?: string | null
|
|
56848
|
+
taxNumber?: string | null
|
|
56849
|
+
companyStreet?: string | null
|
|
56850
|
+
companyCity?: string | null
|
|
56851
|
+
companyPostalCode?: string | null
|
|
56852
|
+
companyCountry?: string | null
|
|
56195
56853
|
approvalRequest?: UserApprovalRequestCreateNestedOneWithoutUserInput
|
|
56196
56854
|
stripeCustomer?: StripeCustomerCreateNestedOneWithoutUserInput
|
|
56197
56855
|
ownedOrganizations?: OrganizationCreateNestedManyWithoutOwnerInput
|
|
@@ -56239,6 +56897,15 @@ export namespace Prisma {
|
|
|
56239
56897
|
messageCount?: number
|
|
56240
56898
|
messageCountResetAt?: Date | string | null
|
|
56241
56899
|
adminGrantExpiresAt?: Date | string | null
|
|
56900
|
+
customerType?: $Enums.CustomerType
|
|
56901
|
+
companyName?: string | null
|
|
56902
|
+
companyNumber?: string | null
|
|
56903
|
+
vatNumber?: string | null
|
|
56904
|
+
taxNumber?: string | null
|
|
56905
|
+
companyStreet?: string | null
|
|
56906
|
+
companyCity?: string | null
|
|
56907
|
+
companyPostalCode?: string | null
|
|
56908
|
+
companyCountry?: string | null
|
|
56242
56909
|
approvalRequest?: UserApprovalRequestUncheckedCreateNestedOneWithoutUserInput
|
|
56243
56910
|
stripeCustomer?: StripeCustomerUncheckedCreateNestedOneWithoutUserInput
|
|
56244
56911
|
ownedOrganizations?: OrganizationUncheckedCreateNestedManyWithoutOwnerInput
|
|
@@ -56356,6 +57023,15 @@ export namespace Prisma {
|
|
|
56356
57023
|
messageCount?: IntFieldUpdateOperationsInput | number
|
|
56357
57024
|
messageCountResetAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
56358
57025
|
adminGrantExpiresAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
57026
|
+
customerType?: EnumCustomerTypeFieldUpdateOperationsInput | $Enums.CustomerType
|
|
57027
|
+
companyName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
57028
|
+
companyNumber?: NullableStringFieldUpdateOperationsInput | string | null
|
|
57029
|
+
vatNumber?: NullableStringFieldUpdateOperationsInput | string | null
|
|
57030
|
+
taxNumber?: NullableStringFieldUpdateOperationsInput | string | null
|
|
57031
|
+
companyStreet?: NullableStringFieldUpdateOperationsInput | string | null
|
|
57032
|
+
companyCity?: NullableStringFieldUpdateOperationsInput | string | null
|
|
57033
|
+
companyPostalCode?: NullableStringFieldUpdateOperationsInput | string | null
|
|
57034
|
+
companyCountry?: NullableStringFieldUpdateOperationsInput | string | null
|
|
56359
57035
|
approvalRequest?: UserApprovalRequestUpdateOneWithoutUserNestedInput
|
|
56360
57036
|
stripeCustomer?: StripeCustomerUpdateOneWithoutUserNestedInput
|
|
56361
57037
|
ownedOrganizations?: OrganizationUpdateManyWithoutOwnerNestedInput
|
|
@@ -56403,6 +57079,15 @@ export namespace Prisma {
|
|
|
56403
57079
|
messageCount?: IntFieldUpdateOperationsInput | number
|
|
56404
57080
|
messageCountResetAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
56405
57081
|
adminGrantExpiresAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
57082
|
+
customerType?: EnumCustomerTypeFieldUpdateOperationsInput | $Enums.CustomerType
|
|
57083
|
+
companyName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
57084
|
+
companyNumber?: NullableStringFieldUpdateOperationsInput | string | null
|
|
57085
|
+
vatNumber?: NullableStringFieldUpdateOperationsInput | string | null
|
|
57086
|
+
taxNumber?: NullableStringFieldUpdateOperationsInput | string | null
|
|
57087
|
+
companyStreet?: NullableStringFieldUpdateOperationsInput | string | null
|
|
57088
|
+
companyCity?: NullableStringFieldUpdateOperationsInput | string | null
|
|
57089
|
+
companyPostalCode?: NullableStringFieldUpdateOperationsInput | string | null
|
|
57090
|
+
companyCountry?: NullableStringFieldUpdateOperationsInput | string | null
|
|
56406
57091
|
approvalRequest?: UserApprovalRequestUncheckedUpdateOneWithoutUserNestedInput
|
|
56407
57092
|
stripeCustomer?: StripeCustomerUncheckedUpdateOneWithoutUserNestedInput
|
|
56408
57093
|
ownedOrganizations?: OrganizationUncheckedUpdateManyWithoutOwnerNestedInput
|
|
@@ -56466,6 +57151,15 @@ export namespace Prisma {
|
|
|
56466
57151
|
messageCount?: number
|
|
56467
57152
|
messageCountResetAt?: Date | string | null
|
|
56468
57153
|
adminGrantExpiresAt?: Date | string | null
|
|
57154
|
+
customerType?: $Enums.CustomerType
|
|
57155
|
+
companyName?: string | null
|
|
57156
|
+
companyNumber?: string | null
|
|
57157
|
+
vatNumber?: string | null
|
|
57158
|
+
taxNumber?: string | null
|
|
57159
|
+
companyStreet?: string | null
|
|
57160
|
+
companyCity?: string | null
|
|
57161
|
+
companyPostalCode?: string | null
|
|
57162
|
+
companyCountry?: string | null
|
|
56469
57163
|
approvalRequest?: UserApprovalRequestCreateNestedOneWithoutUserInput
|
|
56470
57164
|
ownedOrganizations?: OrganizationCreateNestedManyWithoutOwnerInput
|
|
56471
57165
|
organizationMembers?: OrganizationMemberCreateNestedManyWithoutUserInput
|
|
@@ -56513,6 +57207,15 @@ export namespace Prisma {
|
|
|
56513
57207
|
messageCount?: number
|
|
56514
57208
|
messageCountResetAt?: Date | string | null
|
|
56515
57209
|
adminGrantExpiresAt?: Date | string | null
|
|
57210
|
+
customerType?: $Enums.CustomerType
|
|
57211
|
+
companyName?: string | null
|
|
57212
|
+
companyNumber?: string | null
|
|
57213
|
+
vatNumber?: string | null
|
|
57214
|
+
taxNumber?: string | null
|
|
57215
|
+
companyStreet?: string | null
|
|
57216
|
+
companyCity?: string | null
|
|
57217
|
+
companyPostalCode?: string | null
|
|
57218
|
+
companyCountry?: string | null
|
|
56516
57219
|
approvalRequest?: UserApprovalRequestUncheckedCreateNestedOneWithoutUserInput
|
|
56517
57220
|
ownedOrganizations?: OrganizationUncheckedCreateNestedManyWithoutOwnerInput
|
|
56518
57221
|
organizationMembers?: OrganizationMemberUncheckedCreateNestedManyWithoutUserInput
|
|
@@ -56729,6 +57432,15 @@ export namespace Prisma {
|
|
|
56729
57432
|
messageCount?: IntFieldUpdateOperationsInput | number
|
|
56730
57433
|
messageCountResetAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
56731
57434
|
adminGrantExpiresAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
57435
|
+
customerType?: EnumCustomerTypeFieldUpdateOperationsInput | $Enums.CustomerType
|
|
57436
|
+
companyName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
57437
|
+
companyNumber?: NullableStringFieldUpdateOperationsInput | string | null
|
|
57438
|
+
vatNumber?: NullableStringFieldUpdateOperationsInput | string | null
|
|
57439
|
+
taxNumber?: NullableStringFieldUpdateOperationsInput | string | null
|
|
57440
|
+
companyStreet?: NullableStringFieldUpdateOperationsInput | string | null
|
|
57441
|
+
companyCity?: NullableStringFieldUpdateOperationsInput | string | null
|
|
57442
|
+
companyPostalCode?: NullableStringFieldUpdateOperationsInput | string | null
|
|
57443
|
+
companyCountry?: NullableStringFieldUpdateOperationsInput | string | null
|
|
56732
57444
|
approvalRequest?: UserApprovalRequestUpdateOneWithoutUserNestedInput
|
|
56733
57445
|
ownedOrganizations?: OrganizationUpdateManyWithoutOwnerNestedInput
|
|
56734
57446
|
organizationMembers?: OrganizationMemberUpdateManyWithoutUserNestedInput
|
|
@@ -56776,6 +57488,15 @@ export namespace Prisma {
|
|
|
56776
57488
|
messageCount?: IntFieldUpdateOperationsInput | number
|
|
56777
57489
|
messageCountResetAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
56778
57490
|
adminGrantExpiresAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
57491
|
+
customerType?: EnumCustomerTypeFieldUpdateOperationsInput | $Enums.CustomerType
|
|
57492
|
+
companyName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
57493
|
+
companyNumber?: NullableStringFieldUpdateOperationsInput | string | null
|
|
57494
|
+
vatNumber?: NullableStringFieldUpdateOperationsInput | string | null
|
|
57495
|
+
taxNumber?: NullableStringFieldUpdateOperationsInput | string | null
|
|
57496
|
+
companyStreet?: NullableStringFieldUpdateOperationsInput | string | null
|
|
57497
|
+
companyCity?: NullableStringFieldUpdateOperationsInput | string | null
|
|
57498
|
+
companyPostalCode?: NullableStringFieldUpdateOperationsInput | string | null
|
|
57499
|
+
companyCountry?: NullableStringFieldUpdateOperationsInput | string | null
|
|
56779
57500
|
approvalRequest?: UserApprovalRequestUncheckedUpdateOneWithoutUserNestedInput
|
|
56780
57501
|
ownedOrganizations?: OrganizationUncheckedUpdateManyWithoutOwnerNestedInput
|
|
56781
57502
|
organizationMembers?: OrganizationMemberUncheckedUpdateManyWithoutUserNestedInput
|
|
@@ -57182,6 +57903,15 @@ export namespace Prisma {
|
|
|
57182
57903
|
messageCount?: number
|
|
57183
57904
|
messageCountResetAt?: Date | string | null
|
|
57184
57905
|
adminGrantExpiresAt?: Date | string | null
|
|
57906
|
+
customerType?: $Enums.CustomerType
|
|
57907
|
+
companyName?: string | null
|
|
57908
|
+
companyNumber?: string | null
|
|
57909
|
+
vatNumber?: string | null
|
|
57910
|
+
taxNumber?: string | null
|
|
57911
|
+
companyStreet?: string | null
|
|
57912
|
+
companyCity?: string | null
|
|
57913
|
+
companyPostalCode?: string | null
|
|
57914
|
+
companyCountry?: string | null
|
|
57185
57915
|
approvalRequest?: UserApprovalRequestCreateNestedOneWithoutUserInput
|
|
57186
57916
|
stripeCustomer?: StripeCustomerCreateNestedOneWithoutUserInput
|
|
57187
57917
|
ownedOrganizations?: OrganizationCreateNestedManyWithoutOwnerInput
|
|
@@ -57229,6 +57959,15 @@ export namespace Prisma {
|
|
|
57229
57959
|
messageCount?: number
|
|
57230
57960
|
messageCountResetAt?: Date | string | null
|
|
57231
57961
|
adminGrantExpiresAt?: Date | string | null
|
|
57962
|
+
customerType?: $Enums.CustomerType
|
|
57963
|
+
companyName?: string | null
|
|
57964
|
+
companyNumber?: string | null
|
|
57965
|
+
vatNumber?: string | null
|
|
57966
|
+
taxNumber?: string | null
|
|
57967
|
+
companyStreet?: string | null
|
|
57968
|
+
companyCity?: string | null
|
|
57969
|
+
companyPostalCode?: string | null
|
|
57970
|
+
companyCountry?: string | null
|
|
57232
57971
|
approvalRequest?: UserApprovalRequestUncheckedCreateNestedOneWithoutUserInput
|
|
57233
57972
|
stripeCustomer?: StripeCustomerUncheckedCreateNestedOneWithoutUserInput
|
|
57234
57973
|
ownedOrganizations?: OrganizationUncheckedCreateNestedManyWithoutOwnerInput
|
|
@@ -57441,6 +58180,15 @@ export namespace Prisma {
|
|
|
57441
58180
|
messageCount?: IntFieldUpdateOperationsInput | number
|
|
57442
58181
|
messageCountResetAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
57443
58182
|
adminGrantExpiresAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
58183
|
+
customerType?: EnumCustomerTypeFieldUpdateOperationsInput | $Enums.CustomerType
|
|
58184
|
+
companyName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
58185
|
+
companyNumber?: NullableStringFieldUpdateOperationsInput | string | null
|
|
58186
|
+
vatNumber?: NullableStringFieldUpdateOperationsInput | string | null
|
|
58187
|
+
taxNumber?: NullableStringFieldUpdateOperationsInput | string | null
|
|
58188
|
+
companyStreet?: NullableStringFieldUpdateOperationsInput | string | null
|
|
58189
|
+
companyCity?: NullableStringFieldUpdateOperationsInput | string | null
|
|
58190
|
+
companyPostalCode?: NullableStringFieldUpdateOperationsInput | string | null
|
|
58191
|
+
companyCountry?: NullableStringFieldUpdateOperationsInput | string | null
|
|
57444
58192
|
approvalRequest?: UserApprovalRequestUpdateOneWithoutUserNestedInput
|
|
57445
58193
|
stripeCustomer?: StripeCustomerUpdateOneWithoutUserNestedInput
|
|
57446
58194
|
ownedOrganizations?: OrganizationUpdateManyWithoutOwnerNestedInput
|
|
@@ -57488,6 +58236,15 @@ export namespace Prisma {
|
|
|
57488
58236
|
messageCount?: IntFieldUpdateOperationsInput | number
|
|
57489
58237
|
messageCountResetAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
57490
58238
|
adminGrantExpiresAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
58239
|
+
customerType?: EnumCustomerTypeFieldUpdateOperationsInput | $Enums.CustomerType
|
|
58240
|
+
companyName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
58241
|
+
companyNumber?: NullableStringFieldUpdateOperationsInput | string | null
|
|
58242
|
+
vatNumber?: NullableStringFieldUpdateOperationsInput | string | null
|
|
58243
|
+
taxNumber?: NullableStringFieldUpdateOperationsInput | string | null
|
|
58244
|
+
companyStreet?: NullableStringFieldUpdateOperationsInput | string | null
|
|
58245
|
+
companyCity?: NullableStringFieldUpdateOperationsInput | string | null
|
|
58246
|
+
companyPostalCode?: NullableStringFieldUpdateOperationsInput | string | null
|
|
58247
|
+
companyCountry?: NullableStringFieldUpdateOperationsInput | string | null
|
|
57491
58248
|
approvalRequest?: UserApprovalRequestUncheckedUpdateOneWithoutUserNestedInput
|
|
57492
58249
|
stripeCustomer?: StripeCustomerUncheckedUpdateOneWithoutUserNestedInput
|
|
57493
58250
|
ownedOrganizations?: OrganizationUncheckedUpdateManyWithoutOwnerNestedInput
|
|
@@ -57693,6 +58450,15 @@ export namespace Prisma {
|
|
|
57693
58450
|
messageCount?: number
|
|
57694
58451
|
messageCountResetAt?: Date | string | null
|
|
57695
58452
|
adminGrantExpiresAt?: Date | string | null
|
|
58453
|
+
customerType?: $Enums.CustomerType
|
|
58454
|
+
companyName?: string | null
|
|
58455
|
+
companyNumber?: string | null
|
|
58456
|
+
vatNumber?: string | null
|
|
58457
|
+
taxNumber?: string | null
|
|
58458
|
+
companyStreet?: string | null
|
|
58459
|
+
companyCity?: string | null
|
|
58460
|
+
companyPostalCode?: string | null
|
|
58461
|
+
companyCountry?: string | null
|
|
57696
58462
|
approvalRequest?: UserApprovalRequestCreateNestedOneWithoutUserInput
|
|
57697
58463
|
stripeCustomer?: StripeCustomerCreateNestedOneWithoutUserInput
|
|
57698
58464
|
ownedOrganizations?: OrganizationCreateNestedManyWithoutOwnerInput
|
|
@@ -57740,6 +58506,15 @@ export namespace Prisma {
|
|
|
57740
58506
|
messageCount?: number
|
|
57741
58507
|
messageCountResetAt?: Date | string | null
|
|
57742
58508
|
adminGrantExpiresAt?: Date | string | null
|
|
58509
|
+
customerType?: $Enums.CustomerType
|
|
58510
|
+
companyName?: string | null
|
|
58511
|
+
companyNumber?: string | null
|
|
58512
|
+
vatNumber?: string | null
|
|
58513
|
+
taxNumber?: string | null
|
|
58514
|
+
companyStreet?: string | null
|
|
58515
|
+
companyCity?: string | null
|
|
58516
|
+
companyPostalCode?: string | null
|
|
58517
|
+
companyCountry?: string | null
|
|
57743
58518
|
approvalRequest?: UserApprovalRequestUncheckedCreateNestedOneWithoutUserInput
|
|
57744
58519
|
stripeCustomer?: StripeCustomerUncheckedCreateNestedOneWithoutUserInput
|
|
57745
58520
|
ownedOrganizations?: OrganizationUncheckedCreateNestedManyWithoutOwnerInput
|
|
@@ -57803,6 +58578,15 @@ export namespace Prisma {
|
|
|
57803
58578
|
messageCount?: IntFieldUpdateOperationsInput | number
|
|
57804
58579
|
messageCountResetAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
57805
58580
|
adminGrantExpiresAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
58581
|
+
customerType?: EnumCustomerTypeFieldUpdateOperationsInput | $Enums.CustomerType
|
|
58582
|
+
companyName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
58583
|
+
companyNumber?: NullableStringFieldUpdateOperationsInput | string | null
|
|
58584
|
+
vatNumber?: NullableStringFieldUpdateOperationsInput | string | null
|
|
58585
|
+
taxNumber?: NullableStringFieldUpdateOperationsInput | string | null
|
|
58586
|
+
companyStreet?: NullableStringFieldUpdateOperationsInput | string | null
|
|
58587
|
+
companyCity?: NullableStringFieldUpdateOperationsInput | string | null
|
|
58588
|
+
companyPostalCode?: NullableStringFieldUpdateOperationsInput | string | null
|
|
58589
|
+
companyCountry?: NullableStringFieldUpdateOperationsInput | string | null
|
|
57806
58590
|
approvalRequest?: UserApprovalRequestUpdateOneWithoutUserNestedInput
|
|
57807
58591
|
stripeCustomer?: StripeCustomerUpdateOneWithoutUserNestedInput
|
|
57808
58592
|
ownedOrganizations?: OrganizationUpdateManyWithoutOwnerNestedInput
|
|
@@ -57850,6 +58634,15 @@ export namespace Prisma {
|
|
|
57850
58634
|
messageCount?: IntFieldUpdateOperationsInput | number
|
|
57851
58635
|
messageCountResetAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
57852
58636
|
adminGrantExpiresAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
58637
|
+
customerType?: EnumCustomerTypeFieldUpdateOperationsInput | $Enums.CustomerType
|
|
58638
|
+
companyName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
58639
|
+
companyNumber?: NullableStringFieldUpdateOperationsInput | string | null
|
|
58640
|
+
vatNumber?: NullableStringFieldUpdateOperationsInput | string | null
|
|
58641
|
+
taxNumber?: NullableStringFieldUpdateOperationsInput | string | null
|
|
58642
|
+
companyStreet?: NullableStringFieldUpdateOperationsInput | string | null
|
|
58643
|
+
companyCity?: NullableStringFieldUpdateOperationsInput | string | null
|
|
58644
|
+
companyPostalCode?: NullableStringFieldUpdateOperationsInput | string | null
|
|
58645
|
+
companyCountry?: NullableStringFieldUpdateOperationsInput | string | null
|
|
57853
58646
|
approvalRequest?: UserApprovalRequestUncheckedUpdateOneWithoutUserNestedInput
|
|
57854
58647
|
stripeCustomer?: StripeCustomerUncheckedUpdateOneWithoutUserNestedInput
|
|
57855
58648
|
ownedOrganizations?: OrganizationUncheckedUpdateManyWithoutOwnerNestedInput
|
|
@@ -57897,6 +58690,15 @@ export namespace Prisma {
|
|
|
57897
58690
|
messageCount?: number
|
|
57898
58691
|
messageCountResetAt?: Date | string | null
|
|
57899
58692
|
adminGrantExpiresAt?: Date | string | null
|
|
58693
|
+
customerType?: $Enums.CustomerType
|
|
58694
|
+
companyName?: string | null
|
|
58695
|
+
companyNumber?: string | null
|
|
58696
|
+
vatNumber?: string | null
|
|
58697
|
+
taxNumber?: string | null
|
|
58698
|
+
companyStreet?: string | null
|
|
58699
|
+
companyCity?: string | null
|
|
58700
|
+
companyPostalCode?: string | null
|
|
58701
|
+
companyCountry?: string | null
|
|
57900
58702
|
approvalRequest?: UserApprovalRequestCreateNestedOneWithoutUserInput
|
|
57901
58703
|
stripeCustomer?: StripeCustomerCreateNestedOneWithoutUserInput
|
|
57902
58704
|
ownedOrganizations?: OrganizationCreateNestedManyWithoutOwnerInput
|
|
@@ -57944,6 +58746,15 @@ export namespace Prisma {
|
|
|
57944
58746
|
messageCount?: number
|
|
57945
58747
|
messageCountResetAt?: Date | string | null
|
|
57946
58748
|
adminGrantExpiresAt?: Date | string | null
|
|
58749
|
+
customerType?: $Enums.CustomerType
|
|
58750
|
+
companyName?: string | null
|
|
58751
|
+
companyNumber?: string | null
|
|
58752
|
+
vatNumber?: string | null
|
|
58753
|
+
taxNumber?: string | null
|
|
58754
|
+
companyStreet?: string | null
|
|
58755
|
+
companyCity?: string | null
|
|
58756
|
+
companyPostalCode?: string | null
|
|
58757
|
+
companyCountry?: string | null
|
|
57947
58758
|
approvalRequest?: UserApprovalRequestUncheckedCreateNestedOneWithoutUserInput
|
|
57948
58759
|
stripeCustomer?: StripeCustomerUncheckedCreateNestedOneWithoutUserInput
|
|
57949
58760
|
ownedOrganizations?: OrganizationUncheckedCreateNestedManyWithoutOwnerInput
|
|
@@ -58007,6 +58818,15 @@ export namespace Prisma {
|
|
|
58007
58818
|
messageCount?: IntFieldUpdateOperationsInput | number
|
|
58008
58819
|
messageCountResetAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
58009
58820
|
adminGrantExpiresAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
58821
|
+
customerType?: EnumCustomerTypeFieldUpdateOperationsInput | $Enums.CustomerType
|
|
58822
|
+
companyName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
58823
|
+
companyNumber?: NullableStringFieldUpdateOperationsInput | string | null
|
|
58824
|
+
vatNumber?: NullableStringFieldUpdateOperationsInput | string | null
|
|
58825
|
+
taxNumber?: NullableStringFieldUpdateOperationsInput | string | null
|
|
58826
|
+
companyStreet?: NullableStringFieldUpdateOperationsInput | string | null
|
|
58827
|
+
companyCity?: NullableStringFieldUpdateOperationsInput | string | null
|
|
58828
|
+
companyPostalCode?: NullableStringFieldUpdateOperationsInput | string | null
|
|
58829
|
+
companyCountry?: NullableStringFieldUpdateOperationsInput | string | null
|
|
58010
58830
|
approvalRequest?: UserApprovalRequestUpdateOneWithoutUserNestedInput
|
|
58011
58831
|
stripeCustomer?: StripeCustomerUpdateOneWithoutUserNestedInput
|
|
58012
58832
|
ownedOrganizations?: OrganizationUpdateManyWithoutOwnerNestedInput
|
|
@@ -58054,6 +58874,15 @@ export namespace Prisma {
|
|
|
58054
58874
|
messageCount?: IntFieldUpdateOperationsInput | number
|
|
58055
58875
|
messageCountResetAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
58056
58876
|
adminGrantExpiresAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
58877
|
+
customerType?: EnumCustomerTypeFieldUpdateOperationsInput | $Enums.CustomerType
|
|
58878
|
+
companyName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
58879
|
+
companyNumber?: NullableStringFieldUpdateOperationsInput | string | null
|
|
58880
|
+
vatNumber?: NullableStringFieldUpdateOperationsInput | string | null
|
|
58881
|
+
taxNumber?: NullableStringFieldUpdateOperationsInput | string | null
|
|
58882
|
+
companyStreet?: NullableStringFieldUpdateOperationsInput | string | null
|
|
58883
|
+
companyCity?: NullableStringFieldUpdateOperationsInput | string | null
|
|
58884
|
+
companyPostalCode?: NullableStringFieldUpdateOperationsInput | string | null
|
|
58885
|
+
companyCountry?: NullableStringFieldUpdateOperationsInput | string | null
|
|
58057
58886
|
approvalRequest?: UserApprovalRequestUncheckedUpdateOneWithoutUserNestedInput
|
|
58058
58887
|
stripeCustomer?: StripeCustomerUncheckedUpdateOneWithoutUserNestedInput
|
|
58059
58888
|
ownedOrganizations?: OrganizationUncheckedUpdateManyWithoutOwnerNestedInput
|
|
@@ -58101,6 +58930,15 @@ export namespace Prisma {
|
|
|
58101
58930
|
messageCount?: number
|
|
58102
58931
|
messageCountResetAt?: Date | string | null
|
|
58103
58932
|
adminGrantExpiresAt?: Date | string | null
|
|
58933
|
+
customerType?: $Enums.CustomerType
|
|
58934
|
+
companyName?: string | null
|
|
58935
|
+
companyNumber?: string | null
|
|
58936
|
+
vatNumber?: string | null
|
|
58937
|
+
taxNumber?: string | null
|
|
58938
|
+
companyStreet?: string | null
|
|
58939
|
+
companyCity?: string | null
|
|
58940
|
+
companyPostalCode?: string | null
|
|
58941
|
+
companyCountry?: string | null
|
|
58104
58942
|
approvalRequest?: UserApprovalRequestCreateNestedOneWithoutUserInput
|
|
58105
58943
|
stripeCustomer?: StripeCustomerCreateNestedOneWithoutUserInput
|
|
58106
58944
|
ownedOrganizations?: OrganizationCreateNestedManyWithoutOwnerInput
|
|
@@ -58148,6 +58986,15 @@ export namespace Prisma {
|
|
|
58148
58986
|
messageCount?: number
|
|
58149
58987
|
messageCountResetAt?: Date | string | null
|
|
58150
58988
|
adminGrantExpiresAt?: Date | string | null
|
|
58989
|
+
customerType?: $Enums.CustomerType
|
|
58990
|
+
companyName?: string | null
|
|
58991
|
+
companyNumber?: string | null
|
|
58992
|
+
vatNumber?: string | null
|
|
58993
|
+
taxNumber?: string | null
|
|
58994
|
+
companyStreet?: string | null
|
|
58995
|
+
companyCity?: string | null
|
|
58996
|
+
companyPostalCode?: string | null
|
|
58997
|
+
companyCountry?: string | null
|
|
58151
58998
|
approvalRequest?: UserApprovalRequestUncheckedCreateNestedOneWithoutUserInput
|
|
58152
58999
|
stripeCustomer?: StripeCustomerUncheckedCreateNestedOneWithoutUserInput
|
|
58153
59000
|
ownedOrganizations?: OrganizationUncheckedCreateNestedManyWithoutOwnerInput
|
|
@@ -58313,6 +59160,15 @@ export namespace Prisma {
|
|
|
58313
59160
|
messageCount?: IntFieldUpdateOperationsInput | number
|
|
58314
59161
|
messageCountResetAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
58315
59162
|
adminGrantExpiresAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
59163
|
+
customerType?: EnumCustomerTypeFieldUpdateOperationsInput | $Enums.CustomerType
|
|
59164
|
+
companyName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
59165
|
+
companyNumber?: NullableStringFieldUpdateOperationsInput | string | null
|
|
59166
|
+
vatNumber?: NullableStringFieldUpdateOperationsInput | string | null
|
|
59167
|
+
taxNumber?: NullableStringFieldUpdateOperationsInput | string | null
|
|
59168
|
+
companyStreet?: NullableStringFieldUpdateOperationsInput | string | null
|
|
59169
|
+
companyCity?: NullableStringFieldUpdateOperationsInput | string | null
|
|
59170
|
+
companyPostalCode?: NullableStringFieldUpdateOperationsInput | string | null
|
|
59171
|
+
companyCountry?: NullableStringFieldUpdateOperationsInput | string | null
|
|
58316
59172
|
approvalRequest?: UserApprovalRequestUpdateOneWithoutUserNestedInput
|
|
58317
59173
|
stripeCustomer?: StripeCustomerUpdateOneWithoutUserNestedInput
|
|
58318
59174
|
ownedOrganizations?: OrganizationUpdateManyWithoutOwnerNestedInput
|
|
@@ -58360,6 +59216,15 @@ export namespace Prisma {
|
|
|
58360
59216
|
messageCount?: IntFieldUpdateOperationsInput | number
|
|
58361
59217
|
messageCountResetAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
58362
59218
|
adminGrantExpiresAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
59219
|
+
customerType?: EnumCustomerTypeFieldUpdateOperationsInput | $Enums.CustomerType
|
|
59220
|
+
companyName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
59221
|
+
companyNumber?: NullableStringFieldUpdateOperationsInput | string | null
|
|
59222
|
+
vatNumber?: NullableStringFieldUpdateOperationsInput | string | null
|
|
59223
|
+
taxNumber?: NullableStringFieldUpdateOperationsInput | string | null
|
|
59224
|
+
companyStreet?: NullableStringFieldUpdateOperationsInput | string | null
|
|
59225
|
+
companyCity?: NullableStringFieldUpdateOperationsInput | string | null
|
|
59226
|
+
companyPostalCode?: NullableStringFieldUpdateOperationsInput | string | null
|
|
59227
|
+
companyCountry?: NullableStringFieldUpdateOperationsInput | string | null
|
|
58363
59228
|
approvalRequest?: UserApprovalRequestUncheckedUpdateOneWithoutUserNestedInput
|
|
58364
59229
|
stripeCustomer?: StripeCustomerUncheckedUpdateOneWithoutUserNestedInput
|
|
58365
59230
|
ownedOrganizations?: OrganizationUncheckedUpdateManyWithoutOwnerNestedInput
|
|
@@ -58530,6 +59395,15 @@ export namespace Prisma {
|
|
|
58530
59395
|
messageCount?: number
|
|
58531
59396
|
messageCountResetAt?: Date | string | null
|
|
58532
59397
|
adminGrantExpiresAt?: Date | string | null
|
|
59398
|
+
customerType?: $Enums.CustomerType
|
|
59399
|
+
companyName?: string | null
|
|
59400
|
+
companyNumber?: string | null
|
|
59401
|
+
vatNumber?: string | null
|
|
59402
|
+
taxNumber?: string | null
|
|
59403
|
+
companyStreet?: string | null
|
|
59404
|
+
companyCity?: string | null
|
|
59405
|
+
companyPostalCode?: string | null
|
|
59406
|
+
companyCountry?: string | null
|
|
58533
59407
|
approvalRequest?: UserApprovalRequestCreateNestedOneWithoutUserInput
|
|
58534
59408
|
stripeCustomer?: StripeCustomerCreateNestedOneWithoutUserInput
|
|
58535
59409
|
ownedOrganizations?: OrganizationCreateNestedManyWithoutOwnerInput
|
|
@@ -58577,6 +59451,15 @@ export namespace Prisma {
|
|
|
58577
59451
|
messageCount?: number
|
|
58578
59452
|
messageCountResetAt?: Date | string | null
|
|
58579
59453
|
adminGrantExpiresAt?: Date | string | null
|
|
59454
|
+
customerType?: $Enums.CustomerType
|
|
59455
|
+
companyName?: string | null
|
|
59456
|
+
companyNumber?: string | null
|
|
59457
|
+
vatNumber?: string | null
|
|
59458
|
+
taxNumber?: string | null
|
|
59459
|
+
companyStreet?: string | null
|
|
59460
|
+
companyCity?: string | null
|
|
59461
|
+
companyPostalCode?: string | null
|
|
59462
|
+
companyCountry?: string | null
|
|
58580
59463
|
approvalRequest?: UserApprovalRequestUncheckedCreateNestedOneWithoutUserInput
|
|
58581
59464
|
stripeCustomer?: StripeCustomerUncheckedCreateNestedOneWithoutUserInput
|
|
58582
59465
|
ownedOrganizations?: OrganizationUncheckedCreateNestedManyWithoutOwnerInput
|
|
@@ -58771,6 +59654,15 @@ export namespace Prisma {
|
|
|
58771
59654
|
messageCount?: IntFieldUpdateOperationsInput | number
|
|
58772
59655
|
messageCountResetAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
58773
59656
|
adminGrantExpiresAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
59657
|
+
customerType?: EnumCustomerTypeFieldUpdateOperationsInput | $Enums.CustomerType
|
|
59658
|
+
companyName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
59659
|
+
companyNumber?: NullableStringFieldUpdateOperationsInput | string | null
|
|
59660
|
+
vatNumber?: NullableStringFieldUpdateOperationsInput | string | null
|
|
59661
|
+
taxNumber?: NullableStringFieldUpdateOperationsInput | string | null
|
|
59662
|
+
companyStreet?: NullableStringFieldUpdateOperationsInput | string | null
|
|
59663
|
+
companyCity?: NullableStringFieldUpdateOperationsInput | string | null
|
|
59664
|
+
companyPostalCode?: NullableStringFieldUpdateOperationsInput | string | null
|
|
59665
|
+
companyCountry?: NullableStringFieldUpdateOperationsInput | string | null
|
|
58774
59666
|
approvalRequest?: UserApprovalRequestUpdateOneWithoutUserNestedInput
|
|
58775
59667
|
stripeCustomer?: StripeCustomerUpdateOneWithoutUserNestedInput
|
|
58776
59668
|
ownedOrganizations?: OrganizationUpdateManyWithoutOwnerNestedInput
|
|
@@ -58818,6 +59710,15 @@ export namespace Prisma {
|
|
|
58818
59710
|
messageCount?: IntFieldUpdateOperationsInput | number
|
|
58819
59711
|
messageCountResetAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
58820
59712
|
adminGrantExpiresAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
59713
|
+
customerType?: EnumCustomerTypeFieldUpdateOperationsInput | $Enums.CustomerType
|
|
59714
|
+
companyName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
59715
|
+
companyNumber?: NullableStringFieldUpdateOperationsInput | string | null
|
|
59716
|
+
vatNumber?: NullableStringFieldUpdateOperationsInput | string | null
|
|
59717
|
+
taxNumber?: NullableStringFieldUpdateOperationsInput | string | null
|
|
59718
|
+
companyStreet?: NullableStringFieldUpdateOperationsInput | string | null
|
|
59719
|
+
companyCity?: NullableStringFieldUpdateOperationsInput | string | null
|
|
59720
|
+
companyPostalCode?: NullableStringFieldUpdateOperationsInput | string | null
|
|
59721
|
+
companyCountry?: NullableStringFieldUpdateOperationsInput | string | null
|
|
58821
59722
|
approvalRequest?: UserApprovalRequestUncheckedUpdateOneWithoutUserNestedInput
|
|
58822
59723
|
stripeCustomer?: StripeCustomerUncheckedUpdateOneWithoutUserNestedInput
|
|
58823
59724
|
ownedOrganizations?: OrganizationUncheckedUpdateManyWithoutOwnerNestedInput
|
|
@@ -58953,6 +59854,15 @@ export namespace Prisma {
|
|
|
58953
59854
|
messageCount?: number
|
|
58954
59855
|
messageCountResetAt?: Date | string | null
|
|
58955
59856
|
adminGrantExpiresAt?: Date | string | null
|
|
59857
|
+
customerType?: $Enums.CustomerType
|
|
59858
|
+
companyName?: string | null
|
|
59859
|
+
companyNumber?: string | null
|
|
59860
|
+
vatNumber?: string | null
|
|
59861
|
+
taxNumber?: string | null
|
|
59862
|
+
companyStreet?: string | null
|
|
59863
|
+
companyCity?: string | null
|
|
59864
|
+
companyPostalCode?: string | null
|
|
59865
|
+
companyCountry?: string | null
|
|
58956
59866
|
approvalRequest?: UserApprovalRequestCreateNestedOneWithoutUserInput
|
|
58957
59867
|
stripeCustomer?: StripeCustomerCreateNestedOneWithoutUserInput
|
|
58958
59868
|
ownedOrganizations?: OrganizationCreateNestedManyWithoutOwnerInput
|
|
@@ -59000,6 +59910,15 @@ export namespace Prisma {
|
|
|
59000
59910
|
messageCount?: number
|
|
59001
59911
|
messageCountResetAt?: Date | string | null
|
|
59002
59912
|
adminGrantExpiresAt?: Date | string | null
|
|
59913
|
+
customerType?: $Enums.CustomerType
|
|
59914
|
+
companyName?: string | null
|
|
59915
|
+
companyNumber?: string | null
|
|
59916
|
+
vatNumber?: string | null
|
|
59917
|
+
taxNumber?: string | null
|
|
59918
|
+
companyStreet?: string | null
|
|
59919
|
+
companyCity?: string | null
|
|
59920
|
+
companyPostalCode?: string | null
|
|
59921
|
+
companyCountry?: string | null
|
|
59003
59922
|
approvalRequest?: UserApprovalRequestUncheckedCreateNestedOneWithoutUserInput
|
|
59004
59923
|
stripeCustomer?: StripeCustomerUncheckedCreateNestedOneWithoutUserInput
|
|
59005
59924
|
ownedOrganizations?: OrganizationUncheckedCreateNestedManyWithoutOwnerInput
|
|
@@ -59256,6 +60175,15 @@ export namespace Prisma {
|
|
|
59256
60175
|
messageCount?: IntFieldUpdateOperationsInput | number
|
|
59257
60176
|
messageCountResetAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
59258
60177
|
adminGrantExpiresAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
60178
|
+
customerType?: EnumCustomerTypeFieldUpdateOperationsInput | $Enums.CustomerType
|
|
60179
|
+
companyName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
60180
|
+
companyNumber?: NullableStringFieldUpdateOperationsInput | string | null
|
|
60181
|
+
vatNumber?: NullableStringFieldUpdateOperationsInput | string | null
|
|
60182
|
+
taxNumber?: NullableStringFieldUpdateOperationsInput | string | null
|
|
60183
|
+
companyStreet?: NullableStringFieldUpdateOperationsInput | string | null
|
|
60184
|
+
companyCity?: NullableStringFieldUpdateOperationsInput | string | null
|
|
60185
|
+
companyPostalCode?: NullableStringFieldUpdateOperationsInput | string | null
|
|
60186
|
+
companyCountry?: NullableStringFieldUpdateOperationsInput | string | null
|
|
59259
60187
|
approvalRequest?: UserApprovalRequestUpdateOneWithoutUserNestedInput
|
|
59260
60188
|
stripeCustomer?: StripeCustomerUpdateOneWithoutUserNestedInput
|
|
59261
60189
|
ownedOrganizations?: OrganizationUpdateManyWithoutOwnerNestedInput
|
|
@@ -59303,6 +60231,15 @@ export namespace Prisma {
|
|
|
59303
60231
|
messageCount?: IntFieldUpdateOperationsInput | number
|
|
59304
60232
|
messageCountResetAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
59305
60233
|
adminGrantExpiresAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
60234
|
+
customerType?: EnumCustomerTypeFieldUpdateOperationsInput | $Enums.CustomerType
|
|
60235
|
+
companyName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
60236
|
+
companyNumber?: NullableStringFieldUpdateOperationsInput | string | null
|
|
60237
|
+
vatNumber?: NullableStringFieldUpdateOperationsInput | string | null
|
|
60238
|
+
taxNumber?: NullableStringFieldUpdateOperationsInput | string | null
|
|
60239
|
+
companyStreet?: NullableStringFieldUpdateOperationsInput | string | null
|
|
60240
|
+
companyCity?: NullableStringFieldUpdateOperationsInput | string | null
|
|
60241
|
+
companyPostalCode?: NullableStringFieldUpdateOperationsInput | string | null
|
|
60242
|
+
companyCountry?: NullableStringFieldUpdateOperationsInput | string | null
|
|
59306
60243
|
approvalRequest?: UserApprovalRequestUncheckedUpdateOneWithoutUserNestedInput
|
|
59307
60244
|
stripeCustomer?: StripeCustomerUncheckedUpdateOneWithoutUserNestedInput
|
|
59308
60245
|
ownedOrganizations?: OrganizationUncheckedUpdateManyWithoutOwnerNestedInput
|
|
@@ -59510,6 +60447,15 @@ export namespace Prisma {
|
|
|
59510
60447
|
messageCount?: number
|
|
59511
60448
|
messageCountResetAt?: Date | string | null
|
|
59512
60449
|
adminGrantExpiresAt?: Date | string | null
|
|
60450
|
+
customerType?: $Enums.CustomerType
|
|
60451
|
+
companyName?: string | null
|
|
60452
|
+
companyNumber?: string | null
|
|
60453
|
+
vatNumber?: string | null
|
|
60454
|
+
taxNumber?: string | null
|
|
60455
|
+
companyStreet?: string | null
|
|
60456
|
+
companyCity?: string | null
|
|
60457
|
+
companyPostalCode?: string | null
|
|
60458
|
+
companyCountry?: string | null
|
|
59513
60459
|
approvalRequest?: UserApprovalRequestCreateNestedOneWithoutUserInput
|
|
59514
60460
|
stripeCustomer?: StripeCustomerCreateNestedOneWithoutUserInput
|
|
59515
60461
|
ownedOrganizations?: OrganizationCreateNestedManyWithoutOwnerInput
|
|
@@ -59557,6 +60503,15 @@ export namespace Prisma {
|
|
|
59557
60503
|
messageCount?: number
|
|
59558
60504
|
messageCountResetAt?: Date | string | null
|
|
59559
60505
|
adminGrantExpiresAt?: Date | string | null
|
|
60506
|
+
customerType?: $Enums.CustomerType
|
|
60507
|
+
companyName?: string | null
|
|
60508
|
+
companyNumber?: string | null
|
|
60509
|
+
vatNumber?: string | null
|
|
60510
|
+
taxNumber?: string | null
|
|
60511
|
+
companyStreet?: string | null
|
|
60512
|
+
companyCity?: string | null
|
|
60513
|
+
companyPostalCode?: string | null
|
|
60514
|
+
companyCountry?: string | null
|
|
59560
60515
|
approvalRequest?: UserApprovalRequestUncheckedCreateNestedOneWithoutUserInput
|
|
59561
60516
|
stripeCustomer?: StripeCustomerUncheckedCreateNestedOneWithoutUserInput
|
|
59562
60517
|
ownedOrganizations?: OrganizationUncheckedCreateNestedManyWithoutOwnerInput
|
|
@@ -59671,6 +60626,15 @@ export namespace Prisma {
|
|
|
59671
60626
|
messageCount?: IntFieldUpdateOperationsInput | number
|
|
59672
60627
|
messageCountResetAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
59673
60628
|
adminGrantExpiresAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
60629
|
+
customerType?: EnumCustomerTypeFieldUpdateOperationsInput | $Enums.CustomerType
|
|
60630
|
+
companyName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
60631
|
+
companyNumber?: NullableStringFieldUpdateOperationsInput | string | null
|
|
60632
|
+
vatNumber?: NullableStringFieldUpdateOperationsInput | string | null
|
|
60633
|
+
taxNumber?: NullableStringFieldUpdateOperationsInput | string | null
|
|
60634
|
+
companyStreet?: NullableStringFieldUpdateOperationsInput | string | null
|
|
60635
|
+
companyCity?: NullableStringFieldUpdateOperationsInput | string | null
|
|
60636
|
+
companyPostalCode?: NullableStringFieldUpdateOperationsInput | string | null
|
|
60637
|
+
companyCountry?: NullableStringFieldUpdateOperationsInput | string | null
|
|
59674
60638
|
approvalRequest?: UserApprovalRequestUpdateOneWithoutUserNestedInput
|
|
59675
60639
|
stripeCustomer?: StripeCustomerUpdateOneWithoutUserNestedInput
|
|
59676
60640
|
ownedOrganizations?: OrganizationUpdateManyWithoutOwnerNestedInput
|
|
@@ -59718,6 +60682,15 @@ export namespace Prisma {
|
|
|
59718
60682
|
messageCount?: IntFieldUpdateOperationsInput | number
|
|
59719
60683
|
messageCountResetAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
59720
60684
|
adminGrantExpiresAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
60685
|
+
customerType?: EnumCustomerTypeFieldUpdateOperationsInput | $Enums.CustomerType
|
|
60686
|
+
companyName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
60687
|
+
companyNumber?: NullableStringFieldUpdateOperationsInput | string | null
|
|
60688
|
+
vatNumber?: NullableStringFieldUpdateOperationsInput | string | null
|
|
60689
|
+
taxNumber?: NullableStringFieldUpdateOperationsInput | string | null
|
|
60690
|
+
companyStreet?: NullableStringFieldUpdateOperationsInput | string | null
|
|
60691
|
+
companyCity?: NullableStringFieldUpdateOperationsInput | string | null
|
|
60692
|
+
companyPostalCode?: NullableStringFieldUpdateOperationsInput | string | null
|
|
60693
|
+
companyCountry?: NullableStringFieldUpdateOperationsInput | string | null
|
|
59721
60694
|
approvalRequest?: UserApprovalRequestUncheckedUpdateOneWithoutUserNestedInput
|
|
59722
60695
|
stripeCustomer?: StripeCustomerUncheckedUpdateOneWithoutUserNestedInput
|
|
59723
60696
|
ownedOrganizations?: OrganizationUncheckedUpdateManyWithoutOwnerNestedInput
|
|
@@ -59810,6 +60783,15 @@ export namespace Prisma {
|
|
|
59810
60783
|
messageCount?: number
|
|
59811
60784
|
messageCountResetAt?: Date | string | null
|
|
59812
60785
|
adminGrantExpiresAt?: Date | string | null
|
|
60786
|
+
customerType?: $Enums.CustomerType
|
|
60787
|
+
companyName?: string | null
|
|
60788
|
+
companyNumber?: string | null
|
|
60789
|
+
vatNumber?: string | null
|
|
60790
|
+
taxNumber?: string | null
|
|
60791
|
+
companyStreet?: string | null
|
|
60792
|
+
companyCity?: string | null
|
|
60793
|
+
companyPostalCode?: string | null
|
|
60794
|
+
companyCountry?: string | null
|
|
59813
60795
|
approvalRequest?: UserApprovalRequestCreateNestedOneWithoutUserInput
|
|
59814
60796
|
stripeCustomer?: StripeCustomerCreateNestedOneWithoutUserInput
|
|
59815
60797
|
ownedOrganizations?: OrganizationCreateNestedManyWithoutOwnerInput
|
|
@@ -59857,6 +60839,15 @@ export namespace Prisma {
|
|
|
59857
60839
|
messageCount?: number
|
|
59858
60840
|
messageCountResetAt?: Date | string | null
|
|
59859
60841
|
adminGrantExpiresAt?: Date | string | null
|
|
60842
|
+
customerType?: $Enums.CustomerType
|
|
60843
|
+
companyName?: string | null
|
|
60844
|
+
companyNumber?: string | null
|
|
60845
|
+
vatNumber?: string | null
|
|
60846
|
+
taxNumber?: string | null
|
|
60847
|
+
companyStreet?: string | null
|
|
60848
|
+
companyCity?: string | null
|
|
60849
|
+
companyPostalCode?: string | null
|
|
60850
|
+
companyCountry?: string | null
|
|
59860
60851
|
approvalRequest?: UserApprovalRequestUncheckedCreateNestedOneWithoutUserInput
|
|
59861
60852
|
stripeCustomer?: StripeCustomerUncheckedCreateNestedOneWithoutUserInput
|
|
59862
60853
|
ownedOrganizations?: OrganizationUncheckedCreateNestedManyWithoutOwnerInput
|
|
@@ -59971,6 +60962,15 @@ export namespace Prisma {
|
|
|
59971
60962
|
messageCount?: IntFieldUpdateOperationsInput | number
|
|
59972
60963
|
messageCountResetAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
59973
60964
|
adminGrantExpiresAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
60965
|
+
customerType?: EnumCustomerTypeFieldUpdateOperationsInput | $Enums.CustomerType
|
|
60966
|
+
companyName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
60967
|
+
companyNumber?: NullableStringFieldUpdateOperationsInput | string | null
|
|
60968
|
+
vatNumber?: NullableStringFieldUpdateOperationsInput | string | null
|
|
60969
|
+
taxNumber?: NullableStringFieldUpdateOperationsInput | string | null
|
|
60970
|
+
companyStreet?: NullableStringFieldUpdateOperationsInput | string | null
|
|
60971
|
+
companyCity?: NullableStringFieldUpdateOperationsInput | string | null
|
|
60972
|
+
companyPostalCode?: NullableStringFieldUpdateOperationsInput | string | null
|
|
60973
|
+
companyCountry?: NullableStringFieldUpdateOperationsInput | string | null
|
|
59974
60974
|
approvalRequest?: UserApprovalRequestUpdateOneWithoutUserNestedInput
|
|
59975
60975
|
stripeCustomer?: StripeCustomerUpdateOneWithoutUserNestedInput
|
|
59976
60976
|
ownedOrganizations?: OrganizationUpdateManyWithoutOwnerNestedInput
|
|
@@ -60018,6 +61018,15 @@ export namespace Prisma {
|
|
|
60018
61018
|
messageCount?: IntFieldUpdateOperationsInput | number
|
|
60019
61019
|
messageCountResetAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
60020
61020
|
adminGrantExpiresAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
61021
|
+
customerType?: EnumCustomerTypeFieldUpdateOperationsInput | $Enums.CustomerType
|
|
61022
|
+
companyName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
61023
|
+
companyNumber?: NullableStringFieldUpdateOperationsInput | string | null
|
|
61024
|
+
vatNumber?: NullableStringFieldUpdateOperationsInput | string | null
|
|
61025
|
+
taxNumber?: NullableStringFieldUpdateOperationsInput | string | null
|
|
61026
|
+
companyStreet?: NullableStringFieldUpdateOperationsInput | string | null
|
|
61027
|
+
companyCity?: NullableStringFieldUpdateOperationsInput | string | null
|
|
61028
|
+
companyPostalCode?: NullableStringFieldUpdateOperationsInput | string | null
|
|
61029
|
+
companyCountry?: NullableStringFieldUpdateOperationsInput | string | null
|
|
60021
61030
|
approvalRequest?: UserApprovalRequestUncheckedUpdateOneWithoutUserNestedInput
|
|
60022
61031
|
stripeCustomer?: StripeCustomerUncheckedUpdateOneWithoutUserNestedInput
|
|
60023
61032
|
ownedOrganizations?: OrganizationUncheckedUpdateManyWithoutOwnerNestedInput
|
|
@@ -60110,6 +61119,15 @@ export namespace Prisma {
|
|
|
60110
61119
|
messageCount?: number
|
|
60111
61120
|
messageCountResetAt?: Date | string | null
|
|
60112
61121
|
adminGrantExpiresAt?: Date | string | null
|
|
61122
|
+
customerType?: $Enums.CustomerType
|
|
61123
|
+
companyName?: string | null
|
|
61124
|
+
companyNumber?: string | null
|
|
61125
|
+
vatNumber?: string | null
|
|
61126
|
+
taxNumber?: string | null
|
|
61127
|
+
companyStreet?: string | null
|
|
61128
|
+
companyCity?: string | null
|
|
61129
|
+
companyPostalCode?: string | null
|
|
61130
|
+
companyCountry?: string | null
|
|
60113
61131
|
approvalRequest?: UserApprovalRequestCreateNestedOneWithoutUserInput
|
|
60114
61132
|
stripeCustomer?: StripeCustomerCreateNestedOneWithoutUserInput
|
|
60115
61133
|
ownedOrganizations?: OrganizationCreateNestedManyWithoutOwnerInput
|
|
@@ -60157,6 +61175,15 @@ export namespace Prisma {
|
|
|
60157
61175
|
messageCount?: number
|
|
60158
61176
|
messageCountResetAt?: Date | string | null
|
|
60159
61177
|
adminGrantExpiresAt?: Date | string | null
|
|
61178
|
+
customerType?: $Enums.CustomerType
|
|
61179
|
+
companyName?: string | null
|
|
61180
|
+
companyNumber?: string | null
|
|
61181
|
+
vatNumber?: string | null
|
|
61182
|
+
taxNumber?: string | null
|
|
61183
|
+
companyStreet?: string | null
|
|
61184
|
+
companyCity?: string | null
|
|
61185
|
+
companyPostalCode?: string | null
|
|
61186
|
+
companyCountry?: string | null
|
|
60160
61187
|
approvalRequest?: UserApprovalRequestUncheckedCreateNestedOneWithoutUserInput
|
|
60161
61188
|
stripeCustomer?: StripeCustomerUncheckedCreateNestedOneWithoutUserInput
|
|
60162
61189
|
ownedOrganizations?: OrganizationUncheckedCreateNestedManyWithoutOwnerInput
|
|
@@ -60268,6 +61295,15 @@ export namespace Prisma {
|
|
|
60268
61295
|
messageCount?: number
|
|
60269
61296
|
messageCountResetAt?: Date | string | null
|
|
60270
61297
|
adminGrantExpiresAt?: Date | string | null
|
|
61298
|
+
customerType?: $Enums.CustomerType
|
|
61299
|
+
companyName?: string | null
|
|
61300
|
+
companyNumber?: string | null
|
|
61301
|
+
vatNumber?: string | null
|
|
61302
|
+
taxNumber?: string | null
|
|
61303
|
+
companyStreet?: string | null
|
|
61304
|
+
companyCity?: string | null
|
|
61305
|
+
companyPostalCode?: string | null
|
|
61306
|
+
companyCountry?: string | null
|
|
60271
61307
|
approvalRequest?: UserApprovalRequestCreateNestedOneWithoutUserInput
|
|
60272
61308
|
stripeCustomer?: StripeCustomerCreateNestedOneWithoutUserInput
|
|
60273
61309
|
ownedOrganizations?: OrganizationCreateNestedManyWithoutOwnerInput
|
|
@@ -60315,6 +61351,15 @@ export namespace Prisma {
|
|
|
60315
61351
|
messageCount?: number
|
|
60316
61352
|
messageCountResetAt?: Date | string | null
|
|
60317
61353
|
adminGrantExpiresAt?: Date | string | null
|
|
61354
|
+
customerType?: $Enums.CustomerType
|
|
61355
|
+
companyName?: string | null
|
|
61356
|
+
companyNumber?: string | null
|
|
61357
|
+
vatNumber?: string | null
|
|
61358
|
+
taxNumber?: string | null
|
|
61359
|
+
companyStreet?: string | null
|
|
61360
|
+
companyCity?: string | null
|
|
61361
|
+
companyPostalCode?: string | null
|
|
61362
|
+
companyCountry?: string | null
|
|
60318
61363
|
approvalRequest?: UserApprovalRequestUncheckedCreateNestedOneWithoutUserInput
|
|
60319
61364
|
stripeCustomer?: StripeCustomerUncheckedCreateNestedOneWithoutUserInput
|
|
60320
61365
|
ownedOrganizations?: OrganizationUncheckedCreateNestedManyWithoutOwnerInput
|
|
@@ -60429,6 +61474,15 @@ export namespace Prisma {
|
|
|
60429
61474
|
messageCount?: IntFieldUpdateOperationsInput | number
|
|
60430
61475
|
messageCountResetAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
60431
61476
|
adminGrantExpiresAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
61477
|
+
customerType?: EnumCustomerTypeFieldUpdateOperationsInput | $Enums.CustomerType
|
|
61478
|
+
companyName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
61479
|
+
companyNumber?: NullableStringFieldUpdateOperationsInput | string | null
|
|
61480
|
+
vatNumber?: NullableStringFieldUpdateOperationsInput | string | null
|
|
61481
|
+
taxNumber?: NullableStringFieldUpdateOperationsInput | string | null
|
|
61482
|
+
companyStreet?: NullableStringFieldUpdateOperationsInput | string | null
|
|
61483
|
+
companyCity?: NullableStringFieldUpdateOperationsInput | string | null
|
|
61484
|
+
companyPostalCode?: NullableStringFieldUpdateOperationsInput | string | null
|
|
61485
|
+
companyCountry?: NullableStringFieldUpdateOperationsInput | string | null
|
|
60432
61486
|
approvalRequest?: UserApprovalRequestUpdateOneWithoutUserNestedInput
|
|
60433
61487
|
stripeCustomer?: StripeCustomerUpdateOneWithoutUserNestedInput
|
|
60434
61488
|
ownedOrganizations?: OrganizationUpdateManyWithoutOwnerNestedInput
|
|
@@ -60476,6 +61530,15 @@ export namespace Prisma {
|
|
|
60476
61530
|
messageCount?: IntFieldUpdateOperationsInput | number
|
|
60477
61531
|
messageCountResetAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
60478
61532
|
adminGrantExpiresAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
61533
|
+
customerType?: EnumCustomerTypeFieldUpdateOperationsInput | $Enums.CustomerType
|
|
61534
|
+
companyName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
61535
|
+
companyNumber?: NullableStringFieldUpdateOperationsInput | string | null
|
|
61536
|
+
vatNumber?: NullableStringFieldUpdateOperationsInput | string | null
|
|
61537
|
+
taxNumber?: NullableStringFieldUpdateOperationsInput | string | null
|
|
61538
|
+
companyStreet?: NullableStringFieldUpdateOperationsInput | string | null
|
|
61539
|
+
companyCity?: NullableStringFieldUpdateOperationsInput | string | null
|
|
61540
|
+
companyPostalCode?: NullableStringFieldUpdateOperationsInput | string | null
|
|
61541
|
+
companyCountry?: NullableStringFieldUpdateOperationsInput | string | null
|
|
60479
61542
|
approvalRequest?: UserApprovalRequestUncheckedUpdateOneWithoutUserNestedInput
|
|
60480
61543
|
stripeCustomer?: StripeCustomerUncheckedUpdateOneWithoutUserNestedInput
|
|
60481
61544
|
ownedOrganizations?: OrganizationUncheckedUpdateManyWithoutOwnerNestedInput
|
|
@@ -60599,6 +61662,15 @@ export namespace Prisma {
|
|
|
60599
61662
|
messageCount?: IntFieldUpdateOperationsInput | number
|
|
60600
61663
|
messageCountResetAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
60601
61664
|
adminGrantExpiresAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
61665
|
+
customerType?: EnumCustomerTypeFieldUpdateOperationsInput | $Enums.CustomerType
|
|
61666
|
+
companyName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
61667
|
+
companyNumber?: NullableStringFieldUpdateOperationsInput | string | null
|
|
61668
|
+
vatNumber?: NullableStringFieldUpdateOperationsInput | string | null
|
|
61669
|
+
taxNumber?: NullableStringFieldUpdateOperationsInput | string | null
|
|
61670
|
+
companyStreet?: NullableStringFieldUpdateOperationsInput | string | null
|
|
61671
|
+
companyCity?: NullableStringFieldUpdateOperationsInput | string | null
|
|
61672
|
+
companyPostalCode?: NullableStringFieldUpdateOperationsInput | string | null
|
|
61673
|
+
companyCountry?: NullableStringFieldUpdateOperationsInput | string | null
|
|
60602
61674
|
approvalRequest?: UserApprovalRequestUpdateOneWithoutUserNestedInput
|
|
60603
61675
|
stripeCustomer?: StripeCustomerUpdateOneWithoutUserNestedInput
|
|
60604
61676
|
ownedOrganizations?: OrganizationUpdateManyWithoutOwnerNestedInput
|
|
@@ -60646,6 +61718,15 @@ export namespace Prisma {
|
|
|
60646
61718
|
messageCount?: IntFieldUpdateOperationsInput | number
|
|
60647
61719
|
messageCountResetAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
60648
61720
|
adminGrantExpiresAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
61721
|
+
customerType?: EnumCustomerTypeFieldUpdateOperationsInput | $Enums.CustomerType
|
|
61722
|
+
companyName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
61723
|
+
companyNumber?: NullableStringFieldUpdateOperationsInput | string | null
|
|
61724
|
+
vatNumber?: NullableStringFieldUpdateOperationsInput | string | null
|
|
61725
|
+
taxNumber?: NullableStringFieldUpdateOperationsInput | string | null
|
|
61726
|
+
companyStreet?: NullableStringFieldUpdateOperationsInput | string | null
|
|
61727
|
+
companyCity?: NullableStringFieldUpdateOperationsInput | string | null
|
|
61728
|
+
companyPostalCode?: NullableStringFieldUpdateOperationsInput | string | null
|
|
61729
|
+
companyCountry?: NullableStringFieldUpdateOperationsInput | string | null
|
|
60649
61730
|
approvalRequest?: UserApprovalRequestUncheckedUpdateOneWithoutUserNestedInput
|
|
60650
61731
|
stripeCustomer?: StripeCustomerUncheckedUpdateOneWithoutUserNestedInput
|
|
60651
61732
|
ownedOrganizations?: OrganizationUncheckedUpdateManyWithoutOwnerNestedInput
|