@adaptware/eagles-db 0.1.70 → 0.1.71
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/client/edge.js +4 -3
- package/client/index-browser.js +1 -0
- package/client/index.d.ts +105 -1
- package/client/index.js +4 -3
- package/client/package.json +1 -1
- package/client/schema.prisma +10 -9
- package/client/wasm.js +1 -0
- package/package.json +1 -1
- package/prisma/schema/organisation.prisma +10 -9
package/client/index.d.ts
CHANGED
|
@@ -44031,6 +44031,7 @@ export namespace Prisma {
|
|
|
44031
44031
|
phone: number
|
|
44032
44032
|
address: number
|
|
44033
44033
|
company_values: number
|
|
44034
|
+
allowed_email_domains: number
|
|
44034
44035
|
created_at: number
|
|
44035
44036
|
updated_at: number
|
|
44036
44037
|
created_by: number
|
|
@@ -44088,6 +44089,7 @@ export namespace Prisma {
|
|
|
44088
44089
|
phone?: true
|
|
44089
44090
|
address?: true
|
|
44090
44091
|
company_values?: true
|
|
44092
|
+
allowed_email_domains?: true
|
|
44091
44093
|
created_at?: true
|
|
44092
44094
|
updated_at?: true
|
|
44093
44095
|
created_by?: true
|
|
@@ -44180,6 +44182,7 @@ export namespace Prisma {
|
|
|
44180
44182
|
phone: string
|
|
44181
44183
|
address: string
|
|
44182
44184
|
company_values: JsonValue[]
|
|
44185
|
+
allowed_email_domains: string[]
|
|
44183
44186
|
created_at: Date
|
|
44184
44187
|
updated_at: Date
|
|
44185
44188
|
created_by: string
|
|
@@ -44216,6 +44219,7 @@ export namespace Prisma {
|
|
|
44216
44219
|
phone?: boolean
|
|
44217
44220
|
address?: boolean
|
|
44218
44221
|
company_values?: boolean
|
|
44222
|
+
allowed_email_domains?: boolean
|
|
44219
44223
|
created_at?: boolean
|
|
44220
44224
|
updated_at?: boolean
|
|
44221
44225
|
created_by?: boolean
|
|
@@ -44254,6 +44258,7 @@ export namespace Prisma {
|
|
|
44254
44258
|
phone?: boolean
|
|
44255
44259
|
address?: boolean
|
|
44256
44260
|
company_values?: boolean
|
|
44261
|
+
allowed_email_domains?: boolean
|
|
44257
44262
|
created_at?: boolean
|
|
44258
44263
|
updated_at?: boolean
|
|
44259
44264
|
created_by?: boolean
|
|
@@ -44273,6 +44278,7 @@ export namespace Prisma {
|
|
|
44273
44278
|
phone?: boolean
|
|
44274
44279
|
address?: boolean
|
|
44275
44280
|
company_values?: boolean
|
|
44281
|
+
allowed_email_domains?: boolean
|
|
44276
44282
|
created_at?: boolean
|
|
44277
44283
|
updated_at?: boolean
|
|
44278
44284
|
created_by?: boolean
|
|
@@ -44292,6 +44298,7 @@ export namespace Prisma {
|
|
|
44292
44298
|
phone?: boolean
|
|
44293
44299
|
address?: boolean
|
|
44294
44300
|
company_values?: boolean
|
|
44301
|
+
allowed_email_domains?: boolean
|
|
44295
44302
|
created_at?: boolean
|
|
44296
44303
|
updated_at?: boolean
|
|
44297
44304
|
created_by?: boolean
|
|
@@ -44301,7 +44308,7 @@ export namespace Prisma {
|
|
|
44301
44308
|
logo?: boolean
|
|
44302
44309
|
}
|
|
44303
44310
|
|
|
44304
|
-
export type OrganisationOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "name" | "industry" | "about" | "website" | "size" | "phone" | "address" | "company_values" | "created_at" | "updated_at" | "created_by" | "updated_by" | "is_active" | "alias" | "logo", ExtArgs["result"]["organisation"]>
|
|
44311
|
+
export type OrganisationOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "name" | "industry" | "about" | "website" | "size" | "phone" | "address" | "company_values" | "allowed_email_domains" | "created_at" | "updated_at" | "created_by" | "updated_by" | "is_active" | "alias" | "logo", ExtArgs["result"]["organisation"]>
|
|
44305
44312
|
export type OrganisationInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
44306
44313
|
interviewers?: boolean | Organisation$interviewersArgs<ExtArgs>
|
|
44307
44314
|
applications?: boolean | Organisation$applicationsArgs<ExtArgs>
|
|
@@ -44358,6 +44365,7 @@ export namespace Prisma {
|
|
|
44358
44365
|
phone: string
|
|
44359
44366
|
address: string
|
|
44360
44367
|
company_values: Prisma.JsonValue[]
|
|
44368
|
+
allowed_email_domains: string[]
|
|
44361
44369
|
created_at: Date
|
|
44362
44370
|
updated_at: Date
|
|
44363
44371
|
created_by: string
|
|
@@ -44815,6 +44823,7 @@ export namespace Prisma {
|
|
|
44815
44823
|
readonly phone: FieldRef<"Organisation", 'String'>
|
|
44816
44824
|
readonly address: FieldRef<"Organisation", 'String'>
|
|
44817
44825
|
readonly company_values: FieldRef<"Organisation", 'Json[]'>
|
|
44826
|
+
readonly allowed_email_domains: FieldRef<"Organisation", 'String[]'>
|
|
44818
44827
|
readonly created_at: FieldRef<"Organisation", 'DateTime'>
|
|
44819
44828
|
readonly updated_at: FieldRef<"Organisation", 'DateTime'>
|
|
44820
44829
|
readonly created_by: FieldRef<"Organisation", 'String'>
|
|
@@ -58336,6 +58345,7 @@ export namespace Prisma {
|
|
|
58336
58345
|
phone: 'phone',
|
|
58337
58346
|
address: 'address',
|
|
58338
58347
|
company_values: 'company_values',
|
|
58348
|
+
allowed_email_domains: 'allowed_email_domains',
|
|
58339
58349
|
created_at: 'created_at',
|
|
58340
58350
|
updated_at: 'updated_at',
|
|
58341
58351
|
created_by: 'created_by',
|
|
@@ -62576,6 +62586,7 @@ export namespace Prisma {
|
|
|
62576
62586
|
phone?: StringFilter<"Organisation"> | string
|
|
62577
62587
|
address?: StringFilter<"Organisation"> | string
|
|
62578
62588
|
company_values?: JsonNullableListFilter<"Organisation">
|
|
62589
|
+
allowed_email_domains?: StringNullableListFilter<"Organisation">
|
|
62579
62590
|
created_at?: DateTimeFilter<"Organisation"> | Date | string
|
|
62580
62591
|
updated_at?: DateTimeFilter<"Organisation"> | Date | string
|
|
62581
62592
|
created_by?: StringFilter<"Organisation"> | string
|
|
@@ -62613,6 +62624,7 @@ export namespace Prisma {
|
|
|
62613
62624
|
phone?: SortOrder
|
|
62614
62625
|
address?: SortOrder
|
|
62615
62626
|
company_values?: SortOrder
|
|
62627
|
+
allowed_email_domains?: SortOrder
|
|
62616
62628
|
created_at?: SortOrder
|
|
62617
62629
|
updated_at?: SortOrder
|
|
62618
62630
|
created_by?: SortOrder
|
|
@@ -62654,6 +62666,7 @@ export namespace Prisma {
|
|
|
62654
62666
|
phone?: StringFilter<"Organisation"> | string
|
|
62655
62667
|
address?: StringFilter<"Organisation"> | string
|
|
62656
62668
|
company_values?: JsonNullableListFilter<"Organisation">
|
|
62669
|
+
allowed_email_domains?: StringNullableListFilter<"Organisation">
|
|
62657
62670
|
created_at?: DateTimeFilter<"Organisation"> | Date | string
|
|
62658
62671
|
updated_at?: DateTimeFilter<"Organisation"> | Date | string
|
|
62659
62672
|
created_by?: StringFilter<"Organisation"> | string
|
|
@@ -62690,6 +62703,7 @@ export namespace Prisma {
|
|
|
62690
62703
|
phone?: SortOrder
|
|
62691
62704
|
address?: SortOrder
|
|
62692
62705
|
company_values?: SortOrder
|
|
62706
|
+
allowed_email_domains?: SortOrder
|
|
62693
62707
|
created_at?: SortOrder
|
|
62694
62708
|
updated_at?: SortOrder
|
|
62695
62709
|
created_by?: SortOrder
|
|
@@ -62715,6 +62729,7 @@ export namespace Prisma {
|
|
|
62715
62729
|
phone?: StringWithAggregatesFilter<"Organisation"> | string
|
|
62716
62730
|
address?: StringWithAggregatesFilter<"Organisation"> | string
|
|
62717
62731
|
company_values?: JsonNullableListFilter<"Organisation">
|
|
62732
|
+
allowed_email_domains?: StringNullableListFilter<"Organisation">
|
|
62718
62733
|
created_at?: DateTimeWithAggregatesFilter<"Organisation"> | Date | string
|
|
62719
62734
|
updated_at?: DateTimeWithAggregatesFilter<"Organisation"> | Date | string
|
|
62720
62735
|
created_by?: StringWithAggregatesFilter<"Organisation"> | string
|
|
@@ -67686,6 +67701,7 @@ export namespace Prisma {
|
|
|
67686
67701
|
phone: string
|
|
67687
67702
|
address: string
|
|
67688
67703
|
company_values?: OrganisationCreatecompany_valuesInput | InputJsonValue[]
|
|
67704
|
+
allowed_email_domains?: OrganisationCreateallowed_email_domainsInput | string[]
|
|
67689
67705
|
created_at?: Date | string
|
|
67690
67706
|
updated_at?: Date | string
|
|
67691
67707
|
created_by: string
|
|
@@ -67723,6 +67739,7 @@ export namespace Prisma {
|
|
|
67723
67739
|
phone: string
|
|
67724
67740
|
address: string
|
|
67725
67741
|
company_values?: OrganisationCreatecompany_valuesInput | InputJsonValue[]
|
|
67742
|
+
allowed_email_domains?: OrganisationCreateallowed_email_domainsInput | string[]
|
|
67726
67743
|
created_at?: Date | string
|
|
67727
67744
|
updated_at?: Date | string
|
|
67728
67745
|
created_by: string
|
|
@@ -67760,6 +67777,7 @@ export namespace Prisma {
|
|
|
67760
67777
|
phone?: StringFieldUpdateOperationsInput | string
|
|
67761
67778
|
address?: StringFieldUpdateOperationsInput | string
|
|
67762
67779
|
company_values?: OrganisationUpdatecompany_valuesInput | InputJsonValue[]
|
|
67780
|
+
allowed_email_domains?: OrganisationUpdateallowed_email_domainsInput | string[]
|
|
67763
67781
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
67764
67782
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
67765
67783
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -67797,6 +67815,7 @@ export namespace Prisma {
|
|
|
67797
67815
|
phone?: StringFieldUpdateOperationsInput | string
|
|
67798
67816
|
address?: StringFieldUpdateOperationsInput | string
|
|
67799
67817
|
company_values?: OrganisationUpdatecompany_valuesInput | InputJsonValue[]
|
|
67818
|
+
allowed_email_domains?: OrganisationUpdateallowed_email_domainsInput | string[]
|
|
67800
67819
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
67801
67820
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
67802
67821
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -67834,6 +67853,7 @@ export namespace Prisma {
|
|
|
67834
67853
|
phone: string
|
|
67835
67854
|
address: string
|
|
67836
67855
|
company_values?: OrganisationCreatecompany_valuesInput | InputJsonValue[]
|
|
67856
|
+
allowed_email_domains?: OrganisationCreateallowed_email_domainsInput | string[]
|
|
67837
67857
|
created_at?: Date | string
|
|
67838
67858
|
updated_at?: Date | string
|
|
67839
67859
|
created_by: string
|
|
@@ -67853,6 +67873,7 @@ export namespace Prisma {
|
|
|
67853
67873
|
phone?: StringFieldUpdateOperationsInput | string
|
|
67854
67874
|
address?: StringFieldUpdateOperationsInput | string
|
|
67855
67875
|
company_values?: OrganisationUpdatecompany_valuesInput | InputJsonValue[]
|
|
67876
|
+
allowed_email_domains?: OrganisationUpdateallowed_email_domainsInput | string[]
|
|
67856
67877
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
67857
67878
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
67858
67879
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -67872,6 +67893,7 @@ export namespace Prisma {
|
|
|
67872
67893
|
phone?: StringFieldUpdateOperationsInput | string
|
|
67873
67894
|
address?: StringFieldUpdateOperationsInput | string
|
|
67874
67895
|
company_values?: OrganisationUpdatecompany_valuesInput | InputJsonValue[]
|
|
67896
|
+
allowed_email_domains?: OrganisationUpdateallowed_email_domainsInput | string[]
|
|
67875
67897
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
67876
67898
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
67877
67899
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -72128,6 +72150,7 @@ export namespace Prisma {
|
|
|
72128
72150
|
phone?: SortOrder
|
|
72129
72151
|
address?: SortOrder
|
|
72130
72152
|
company_values?: SortOrder
|
|
72153
|
+
allowed_email_domains?: SortOrder
|
|
72131
72154
|
created_at?: SortOrder
|
|
72132
72155
|
updated_at?: SortOrder
|
|
72133
72156
|
created_by?: SortOrder
|
|
@@ -75897,6 +75920,10 @@ export namespace Prisma {
|
|
|
75897
75920
|
set: InputJsonValue[]
|
|
75898
75921
|
}
|
|
75899
75922
|
|
|
75923
|
+
export type OrganisationCreateallowed_email_domainsInput = {
|
|
75924
|
+
set: string[]
|
|
75925
|
+
}
|
|
75926
|
+
|
|
75900
75927
|
export type UserCreateNestedManyWithoutOrganisationInput = {
|
|
75901
75928
|
create?: XOR<UserCreateWithoutOrganisationInput, UserUncheckedCreateWithoutOrganisationInput> | UserCreateWithoutOrganisationInput[] | UserUncheckedCreateWithoutOrganisationInput[]
|
|
75902
75929
|
connectOrCreate?: UserCreateOrConnectWithoutOrganisationInput | UserCreateOrConnectWithoutOrganisationInput[]
|
|
@@ -76158,6 +76185,11 @@ export namespace Prisma {
|
|
|
76158
76185
|
push?: InputJsonValue | InputJsonValue[]
|
|
76159
76186
|
}
|
|
76160
76187
|
|
|
76188
|
+
export type OrganisationUpdateallowed_email_domainsInput = {
|
|
76189
|
+
set?: string[]
|
|
76190
|
+
push?: string | string[]
|
|
76191
|
+
}
|
|
76192
|
+
|
|
76161
76193
|
export type UserUpdateManyWithoutOrganisationNestedInput = {
|
|
76162
76194
|
create?: XOR<UserCreateWithoutOrganisationInput, UserUncheckedCreateWithoutOrganisationInput> | UserCreateWithoutOrganisationInput[] | UserUncheckedCreateWithoutOrganisationInput[]
|
|
76163
76195
|
connectOrCreate?: UserCreateOrConnectWithoutOrganisationInput | UserCreateOrConnectWithoutOrganisationInput[]
|
|
@@ -79774,6 +79806,7 @@ export namespace Prisma {
|
|
|
79774
79806
|
phone: string
|
|
79775
79807
|
address: string
|
|
79776
79808
|
company_values?: OrganisationCreatecompany_valuesInput | InputJsonValue[]
|
|
79809
|
+
allowed_email_domains?: OrganisationCreateallowed_email_domainsInput | string[]
|
|
79777
79810
|
created_at?: Date | string
|
|
79778
79811
|
updated_at?: Date | string
|
|
79779
79812
|
created_by: string
|
|
@@ -79810,6 +79843,7 @@ export namespace Prisma {
|
|
|
79810
79843
|
phone: string
|
|
79811
79844
|
address: string
|
|
79812
79845
|
company_values?: OrganisationCreatecompany_valuesInput | InputJsonValue[]
|
|
79846
|
+
allowed_email_domains?: OrganisationCreateallowed_email_domainsInput | string[]
|
|
79813
79847
|
created_at?: Date | string
|
|
79814
79848
|
updated_at?: Date | string
|
|
79815
79849
|
created_by: string
|
|
@@ -80021,6 +80055,7 @@ export namespace Prisma {
|
|
|
80021
80055
|
phone?: StringFieldUpdateOperationsInput | string
|
|
80022
80056
|
address?: StringFieldUpdateOperationsInput | string
|
|
80023
80057
|
company_values?: OrganisationUpdatecompany_valuesInput | InputJsonValue[]
|
|
80058
|
+
allowed_email_domains?: OrganisationUpdateallowed_email_domainsInput | string[]
|
|
80024
80059
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
80025
80060
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
80026
80061
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -80057,6 +80092,7 @@ export namespace Prisma {
|
|
|
80057
80092
|
phone?: StringFieldUpdateOperationsInput | string
|
|
80058
80093
|
address?: StringFieldUpdateOperationsInput | string
|
|
80059
80094
|
company_values?: OrganisationUpdatecompany_valuesInput | InputJsonValue[]
|
|
80095
|
+
allowed_email_domains?: OrganisationUpdateallowed_email_domainsInput | string[]
|
|
80060
80096
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
80061
80097
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
80062
80098
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -80307,6 +80343,7 @@ export namespace Prisma {
|
|
|
80307
80343
|
phone: string
|
|
80308
80344
|
address: string
|
|
80309
80345
|
company_values?: OrganisationCreatecompany_valuesInput | InputJsonValue[]
|
|
80346
|
+
allowed_email_domains?: OrganisationCreateallowed_email_domainsInput | string[]
|
|
80310
80347
|
created_at?: Date | string
|
|
80311
80348
|
updated_at?: Date | string
|
|
80312
80349
|
created_by: string
|
|
@@ -80343,6 +80380,7 @@ export namespace Prisma {
|
|
|
80343
80380
|
phone: string
|
|
80344
80381
|
address: string
|
|
80345
80382
|
company_values?: OrganisationCreatecompany_valuesInput | InputJsonValue[]
|
|
80383
|
+
allowed_email_domains?: OrganisationCreateallowed_email_domainsInput | string[]
|
|
80346
80384
|
created_at?: Date | string
|
|
80347
80385
|
updated_at?: Date | string
|
|
80348
80386
|
created_by: string
|
|
@@ -80528,6 +80566,7 @@ export namespace Prisma {
|
|
|
80528
80566
|
phone?: StringFieldUpdateOperationsInput | string
|
|
80529
80567
|
address?: StringFieldUpdateOperationsInput | string
|
|
80530
80568
|
company_values?: OrganisationUpdatecompany_valuesInput | InputJsonValue[]
|
|
80569
|
+
allowed_email_domains?: OrganisationUpdateallowed_email_domainsInput | string[]
|
|
80531
80570
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
80532
80571
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
80533
80572
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -80564,6 +80603,7 @@ export namespace Prisma {
|
|
|
80564
80603
|
phone?: StringFieldUpdateOperationsInput | string
|
|
80565
80604
|
address?: StringFieldUpdateOperationsInput | string
|
|
80566
80605
|
company_values?: OrganisationUpdatecompany_valuesInput | InputJsonValue[]
|
|
80606
|
+
allowed_email_domains?: OrganisationUpdateallowed_email_domainsInput | string[]
|
|
80567
80607
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
80568
80608
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
80569
80609
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -81154,6 +81194,7 @@ export namespace Prisma {
|
|
|
81154
81194
|
phone: string
|
|
81155
81195
|
address: string
|
|
81156
81196
|
company_values?: OrganisationCreatecompany_valuesInput | InputJsonValue[]
|
|
81197
|
+
allowed_email_domains?: OrganisationCreateallowed_email_domainsInput | string[]
|
|
81157
81198
|
created_at?: Date | string
|
|
81158
81199
|
updated_at?: Date | string
|
|
81159
81200
|
created_by: string
|
|
@@ -81190,6 +81231,7 @@ export namespace Prisma {
|
|
|
81190
81231
|
phone: string
|
|
81191
81232
|
address: string
|
|
81192
81233
|
company_values?: OrganisationCreatecompany_valuesInput | InputJsonValue[]
|
|
81234
|
+
allowed_email_domains?: OrganisationCreateallowed_email_domainsInput | string[]
|
|
81193
81235
|
created_at?: Date | string
|
|
81194
81236
|
updated_at?: Date | string
|
|
81195
81237
|
created_by: string
|
|
@@ -81891,6 +81933,7 @@ export namespace Prisma {
|
|
|
81891
81933
|
phone?: StringFieldUpdateOperationsInput | string
|
|
81892
81934
|
address?: StringFieldUpdateOperationsInput | string
|
|
81893
81935
|
company_values?: OrganisationUpdatecompany_valuesInput | InputJsonValue[]
|
|
81936
|
+
allowed_email_domains?: OrganisationUpdateallowed_email_domainsInput | string[]
|
|
81894
81937
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
81895
81938
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
81896
81939
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -81927,6 +81970,7 @@ export namespace Prisma {
|
|
|
81927
81970
|
phone?: StringFieldUpdateOperationsInput | string
|
|
81928
81971
|
address?: StringFieldUpdateOperationsInput | string
|
|
81929
81972
|
company_values?: OrganisationUpdatecompany_valuesInput | InputJsonValue[]
|
|
81973
|
+
allowed_email_domains?: OrganisationUpdateallowed_email_domainsInput | string[]
|
|
81930
81974
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
81931
81975
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
81932
81976
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -82559,6 +82603,7 @@ export namespace Prisma {
|
|
|
82559
82603
|
phone: string
|
|
82560
82604
|
address: string
|
|
82561
82605
|
company_values?: OrganisationCreatecompany_valuesInput | InputJsonValue[]
|
|
82606
|
+
allowed_email_domains?: OrganisationCreateallowed_email_domainsInput | string[]
|
|
82562
82607
|
created_at?: Date | string
|
|
82563
82608
|
updated_at?: Date | string
|
|
82564
82609
|
created_by: string
|
|
@@ -82595,6 +82640,7 @@ export namespace Prisma {
|
|
|
82595
82640
|
phone: string
|
|
82596
82641
|
address: string
|
|
82597
82642
|
company_values?: OrganisationCreatecompany_valuesInput | InputJsonValue[]
|
|
82643
|
+
allowed_email_domains?: OrganisationCreateallowed_email_domainsInput | string[]
|
|
82598
82644
|
created_at?: Date | string
|
|
82599
82645
|
updated_at?: Date | string
|
|
82600
82646
|
created_by: string
|
|
@@ -82861,6 +82907,7 @@ export namespace Prisma {
|
|
|
82861
82907
|
phone?: StringFieldUpdateOperationsInput | string
|
|
82862
82908
|
address?: StringFieldUpdateOperationsInput | string
|
|
82863
82909
|
company_values?: OrganisationUpdatecompany_valuesInput | InputJsonValue[]
|
|
82910
|
+
allowed_email_domains?: OrganisationUpdateallowed_email_domainsInput | string[]
|
|
82864
82911
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
82865
82912
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
82866
82913
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -82897,6 +82944,7 @@ export namespace Prisma {
|
|
|
82897
82944
|
phone?: StringFieldUpdateOperationsInput | string
|
|
82898
82945
|
address?: StringFieldUpdateOperationsInput | string
|
|
82899
82946
|
company_values?: OrganisationUpdatecompany_valuesInput | InputJsonValue[]
|
|
82947
|
+
allowed_email_domains?: OrganisationUpdateallowed_email_domainsInput | string[]
|
|
82900
82948
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
82901
82949
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
82902
82950
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -83290,6 +83338,7 @@ export namespace Prisma {
|
|
|
83290
83338
|
phone: string
|
|
83291
83339
|
address: string
|
|
83292
83340
|
company_values?: OrganisationCreatecompany_valuesInput | InputJsonValue[]
|
|
83341
|
+
allowed_email_domains?: OrganisationCreateallowed_email_domainsInput | string[]
|
|
83293
83342
|
created_at?: Date | string
|
|
83294
83343
|
updated_at?: Date | string
|
|
83295
83344
|
created_by: string
|
|
@@ -83326,6 +83375,7 @@ export namespace Prisma {
|
|
|
83326
83375
|
phone: string
|
|
83327
83376
|
address: string
|
|
83328
83377
|
company_values?: OrganisationCreatecompany_valuesInput | InputJsonValue[]
|
|
83378
|
+
allowed_email_domains?: OrganisationCreateallowed_email_domainsInput | string[]
|
|
83329
83379
|
created_at?: Date | string
|
|
83330
83380
|
updated_at?: Date | string
|
|
83331
83381
|
created_by: string
|
|
@@ -83954,6 +84004,7 @@ export namespace Prisma {
|
|
|
83954
84004
|
phone?: StringFieldUpdateOperationsInput | string
|
|
83955
84005
|
address?: StringFieldUpdateOperationsInput | string
|
|
83956
84006
|
company_values?: OrganisationUpdatecompany_valuesInput | InputJsonValue[]
|
|
84007
|
+
allowed_email_domains?: OrganisationUpdateallowed_email_domainsInput | string[]
|
|
83957
84008
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
83958
84009
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
83959
84010
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -83990,6 +84041,7 @@ export namespace Prisma {
|
|
|
83990
84041
|
phone?: StringFieldUpdateOperationsInput | string
|
|
83991
84042
|
address?: StringFieldUpdateOperationsInput | string
|
|
83992
84043
|
company_values?: OrganisationUpdatecompany_valuesInput | InputJsonValue[]
|
|
84044
|
+
allowed_email_domains?: OrganisationUpdateallowed_email_domainsInput | string[]
|
|
83993
84045
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
83994
84046
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
83995
84047
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -84238,6 +84290,7 @@ export namespace Prisma {
|
|
|
84238
84290
|
phone: string
|
|
84239
84291
|
address: string
|
|
84240
84292
|
company_values?: OrganisationCreatecompany_valuesInput | InputJsonValue[]
|
|
84293
|
+
allowed_email_domains?: OrganisationCreateallowed_email_domainsInput | string[]
|
|
84241
84294
|
created_at?: Date | string
|
|
84242
84295
|
updated_at?: Date | string
|
|
84243
84296
|
created_by: string
|
|
@@ -84274,6 +84327,7 @@ export namespace Prisma {
|
|
|
84274
84327
|
phone: string
|
|
84275
84328
|
address: string
|
|
84276
84329
|
company_values?: OrganisationCreatecompany_valuesInput | InputJsonValue[]
|
|
84330
|
+
allowed_email_domains?: OrganisationCreateallowed_email_domainsInput | string[]
|
|
84277
84331
|
created_at?: Date | string
|
|
84278
84332
|
updated_at?: Date | string
|
|
84279
84333
|
created_by: string
|
|
@@ -84494,6 +84548,7 @@ export namespace Prisma {
|
|
|
84494
84548
|
phone?: StringFieldUpdateOperationsInput | string
|
|
84495
84549
|
address?: StringFieldUpdateOperationsInput | string
|
|
84496
84550
|
company_values?: OrganisationUpdatecompany_valuesInput | InputJsonValue[]
|
|
84551
|
+
allowed_email_domains?: OrganisationUpdateallowed_email_domainsInput | string[]
|
|
84497
84552
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
84498
84553
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
84499
84554
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -84530,6 +84585,7 @@ export namespace Prisma {
|
|
|
84530
84585
|
phone?: StringFieldUpdateOperationsInput | string
|
|
84531
84586
|
address?: StringFieldUpdateOperationsInput | string
|
|
84532
84587
|
company_values?: OrganisationUpdatecompany_valuesInput | InputJsonValue[]
|
|
84588
|
+
allowed_email_domains?: OrganisationUpdateallowed_email_domainsInput | string[]
|
|
84533
84589
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
84534
84590
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
84535
84591
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -85173,6 +85229,7 @@ export namespace Prisma {
|
|
|
85173
85229
|
phone: string
|
|
85174
85230
|
address: string
|
|
85175
85231
|
company_values?: OrganisationCreatecompany_valuesInput | InputJsonValue[]
|
|
85232
|
+
allowed_email_domains?: OrganisationCreateallowed_email_domainsInput | string[]
|
|
85176
85233
|
created_at?: Date | string
|
|
85177
85234
|
updated_at?: Date | string
|
|
85178
85235
|
created_by: string
|
|
@@ -85209,6 +85266,7 @@ export namespace Prisma {
|
|
|
85209
85266
|
phone: string
|
|
85210
85267
|
address: string
|
|
85211
85268
|
company_values?: OrganisationCreatecompany_valuesInput | InputJsonValue[]
|
|
85269
|
+
allowed_email_domains?: OrganisationCreateallowed_email_domainsInput | string[]
|
|
85212
85270
|
created_at?: Date | string
|
|
85213
85271
|
updated_at?: Date | string
|
|
85214
85272
|
created_by: string
|
|
@@ -85765,6 +85823,7 @@ export namespace Prisma {
|
|
|
85765
85823
|
phone?: StringFieldUpdateOperationsInput | string
|
|
85766
85824
|
address?: StringFieldUpdateOperationsInput | string
|
|
85767
85825
|
company_values?: OrganisationUpdatecompany_valuesInput | InputJsonValue[]
|
|
85826
|
+
allowed_email_domains?: OrganisationUpdateallowed_email_domainsInput | string[]
|
|
85768
85827
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
85769
85828
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
85770
85829
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -85801,6 +85860,7 @@ export namespace Prisma {
|
|
|
85801
85860
|
phone?: StringFieldUpdateOperationsInput | string
|
|
85802
85861
|
address?: StringFieldUpdateOperationsInput | string
|
|
85803
85862
|
company_values?: OrganisationUpdatecompany_valuesInput | InputJsonValue[]
|
|
85863
|
+
allowed_email_domains?: OrganisationUpdateallowed_email_domainsInput | string[]
|
|
85804
85864
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
85805
85865
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
85806
85866
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -86054,6 +86114,7 @@ export namespace Prisma {
|
|
|
86054
86114
|
phone: string
|
|
86055
86115
|
address: string
|
|
86056
86116
|
company_values?: OrganisationCreatecompany_valuesInput | InputJsonValue[]
|
|
86117
|
+
allowed_email_domains?: OrganisationCreateallowed_email_domainsInput | string[]
|
|
86057
86118
|
created_at?: Date | string
|
|
86058
86119
|
updated_at?: Date | string
|
|
86059
86120
|
created_by: string
|
|
@@ -86090,6 +86151,7 @@ export namespace Prisma {
|
|
|
86090
86151
|
phone: string
|
|
86091
86152
|
address: string
|
|
86092
86153
|
company_values?: OrganisationCreatecompany_valuesInput | InputJsonValue[]
|
|
86154
|
+
allowed_email_domains?: OrganisationCreateallowed_email_domainsInput | string[]
|
|
86093
86155
|
created_at?: Date | string
|
|
86094
86156
|
updated_at?: Date | string
|
|
86095
86157
|
created_by: string
|
|
@@ -86337,6 +86399,7 @@ export namespace Prisma {
|
|
|
86337
86399
|
phone?: StringFieldUpdateOperationsInput | string
|
|
86338
86400
|
address?: StringFieldUpdateOperationsInput | string
|
|
86339
86401
|
company_values?: OrganisationUpdatecompany_valuesInput | InputJsonValue[]
|
|
86402
|
+
allowed_email_domains?: OrganisationUpdateallowed_email_domainsInput | string[]
|
|
86340
86403
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
86341
86404
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
86342
86405
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -86373,6 +86436,7 @@ export namespace Prisma {
|
|
|
86373
86436
|
phone?: StringFieldUpdateOperationsInput | string
|
|
86374
86437
|
address?: StringFieldUpdateOperationsInput | string
|
|
86375
86438
|
company_values?: OrganisationUpdatecompany_valuesInput | InputJsonValue[]
|
|
86439
|
+
allowed_email_domains?: OrganisationUpdateallowed_email_domainsInput | string[]
|
|
86376
86440
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
86377
86441
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
86378
86442
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -88159,6 +88223,7 @@ export namespace Prisma {
|
|
|
88159
88223
|
phone: string
|
|
88160
88224
|
address: string
|
|
88161
88225
|
company_values?: OrganisationCreatecompany_valuesInput | InputJsonValue[]
|
|
88226
|
+
allowed_email_domains?: OrganisationCreateallowed_email_domainsInput | string[]
|
|
88162
88227
|
created_at?: Date | string
|
|
88163
88228
|
updated_at?: Date | string
|
|
88164
88229
|
created_by: string
|
|
@@ -88195,6 +88260,7 @@ export namespace Prisma {
|
|
|
88195
88260
|
phone: string
|
|
88196
88261
|
address: string
|
|
88197
88262
|
company_values?: OrganisationCreatecompany_valuesInput | InputJsonValue[]
|
|
88263
|
+
allowed_email_domains?: OrganisationCreateallowed_email_domainsInput | string[]
|
|
88198
88264
|
created_at?: Date | string
|
|
88199
88265
|
updated_at?: Date | string
|
|
88200
88266
|
created_by: string
|
|
@@ -88547,6 +88613,7 @@ export namespace Prisma {
|
|
|
88547
88613
|
phone?: StringFieldUpdateOperationsInput | string
|
|
88548
88614
|
address?: StringFieldUpdateOperationsInput | string
|
|
88549
88615
|
company_values?: OrganisationUpdatecompany_valuesInput | InputJsonValue[]
|
|
88616
|
+
allowed_email_domains?: OrganisationUpdateallowed_email_domainsInput | string[]
|
|
88550
88617
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
88551
88618
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
88552
88619
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -88583,6 +88650,7 @@ export namespace Prisma {
|
|
|
88583
88650
|
phone?: StringFieldUpdateOperationsInput | string
|
|
88584
88651
|
address?: StringFieldUpdateOperationsInput | string
|
|
88585
88652
|
company_values?: OrganisationUpdatecompany_valuesInput | InputJsonValue[]
|
|
88653
|
+
allowed_email_domains?: OrganisationUpdateallowed_email_domainsInput | string[]
|
|
88586
88654
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
88587
88655
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
88588
88656
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -89203,6 +89271,7 @@ export namespace Prisma {
|
|
|
89203
89271
|
phone: string
|
|
89204
89272
|
address: string
|
|
89205
89273
|
company_values?: OrganisationCreatecompany_valuesInput | InputJsonValue[]
|
|
89274
|
+
allowed_email_domains?: OrganisationCreateallowed_email_domainsInput | string[]
|
|
89206
89275
|
created_at?: Date | string
|
|
89207
89276
|
updated_at?: Date | string
|
|
89208
89277
|
created_by: string
|
|
@@ -89239,6 +89308,7 @@ export namespace Prisma {
|
|
|
89239
89308
|
phone: string
|
|
89240
89309
|
address: string
|
|
89241
89310
|
company_values?: OrganisationCreatecompany_valuesInput | InputJsonValue[]
|
|
89311
|
+
allowed_email_domains?: OrganisationCreateallowed_email_domainsInput | string[]
|
|
89242
89312
|
created_at?: Date | string
|
|
89243
89313
|
updated_at?: Date | string
|
|
89244
89314
|
created_by: string
|
|
@@ -89291,6 +89361,7 @@ export namespace Prisma {
|
|
|
89291
89361
|
phone?: StringFieldUpdateOperationsInput | string
|
|
89292
89362
|
address?: StringFieldUpdateOperationsInput | string
|
|
89293
89363
|
company_values?: OrganisationUpdatecompany_valuesInput | InputJsonValue[]
|
|
89364
|
+
allowed_email_domains?: OrganisationUpdateallowed_email_domainsInput | string[]
|
|
89294
89365
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
89295
89366
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
89296
89367
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -89327,6 +89398,7 @@ export namespace Prisma {
|
|
|
89327
89398
|
phone?: StringFieldUpdateOperationsInput | string
|
|
89328
89399
|
address?: StringFieldUpdateOperationsInput | string
|
|
89329
89400
|
company_values?: OrganisationUpdatecompany_valuesInput | InputJsonValue[]
|
|
89401
|
+
allowed_email_domains?: OrganisationUpdateallowed_email_domainsInput | string[]
|
|
89330
89402
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
89331
89403
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
89332
89404
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -89519,6 +89591,7 @@ export namespace Prisma {
|
|
|
89519
89591
|
phone: string
|
|
89520
89592
|
address: string
|
|
89521
89593
|
company_values?: OrganisationCreatecompany_valuesInput | InputJsonValue[]
|
|
89594
|
+
allowed_email_domains?: OrganisationCreateallowed_email_domainsInput | string[]
|
|
89522
89595
|
created_at?: Date | string
|
|
89523
89596
|
updated_at?: Date | string
|
|
89524
89597
|
created_by: string
|
|
@@ -89555,6 +89628,7 @@ export namespace Prisma {
|
|
|
89555
89628
|
phone: string
|
|
89556
89629
|
address: string
|
|
89557
89630
|
company_values?: OrganisationCreatecompany_valuesInput | InputJsonValue[]
|
|
89631
|
+
allowed_email_domains?: OrganisationCreateallowed_email_domainsInput | string[]
|
|
89558
89632
|
created_at?: Date | string
|
|
89559
89633
|
updated_at?: Date | string
|
|
89560
89634
|
created_by: string
|
|
@@ -89607,6 +89681,7 @@ export namespace Prisma {
|
|
|
89607
89681
|
phone?: StringFieldUpdateOperationsInput | string
|
|
89608
89682
|
address?: StringFieldUpdateOperationsInput | string
|
|
89609
89683
|
company_values?: OrganisationUpdatecompany_valuesInput | InputJsonValue[]
|
|
89684
|
+
allowed_email_domains?: OrganisationUpdateallowed_email_domainsInput | string[]
|
|
89610
89685
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
89611
89686
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
89612
89687
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -89643,6 +89718,7 @@ export namespace Prisma {
|
|
|
89643
89718
|
phone?: StringFieldUpdateOperationsInput | string
|
|
89644
89719
|
address?: StringFieldUpdateOperationsInput | string
|
|
89645
89720
|
company_values?: OrganisationUpdatecompany_valuesInput | InputJsonValue[]
|
|
89721
|
+
allowed_email_domains?: OrganisationUpdateallowed_email_domainsInput | string[]
|
|
89646
89722
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
89647
89723
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
89648
89724
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -89933,6 +90009,7 @@ export namespace Prisma {
|
|
|
89933
90009
|
phone: string
|
|
89934
90010
|
address: string
|
|
89935
90011
|
company_values?: OrganisationCreatecompany_valuesInput | InputJsonValue[]
|
|
90012
|
+
allowed_email_domains?: OrganisationCreateallowed_email_domainsInput | string[]
|
|
89936
90013
|
created_at?: Date | string
|
|
89937
90014
|
updated_at?: Date | string
|
|
89938
90015
|
created_by: string
|
|
@@ -89969,6 +90046,7 @@ export namespace Prisma {
|
|
|
89969
90046
|
phone: string
|
|
89970
90047
|
address: string
|
|
89971
90048
|
company_values?: OrganisationCreatecompany_valuesInput | InputJsonValue[]
|
|
90049
|
+
allowed_email_domains?: OrganisationCreateallowed_email_domainsInput | string[]
|
|
89972
90050
|
created_at?: Date | string
|
|
89973
90051
|
updated_at?: Date | string
|
|
89974
90052
|
created_by: string
|
|
@@ -90772,6 +90850,7 @@ export namespace Prisma {
|
|
|
90772
90850
|
phone?: StringFieldUpdateOperationsInput | string
|
|
90773
90851
|
address?: StringFieldUpdateOperationsInput | string
|
|
90774
90852
|
company_values?: OrganisationUpdatecompany_valuesInput | InputJsonValue[]
|
|
90853
|
+
allowed_email_domains?: OrganisationUpdateallowed_email_domainsInput | string[]
|
|
90775
90854
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
90776
90855
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
90777
90856
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -90808,6 +90887,7 @@ export namespace Prisma {
|
|
|
90808
90887
|
phone?: StringFieldUpdateOperationsInput | string
|
|
90809
90888
|
address?: StringFieldUpdateOperationsInput | string
|
|
90810
90889
|
company_values?: OrganisationUpdatecompany_valuesInput | InputJsonValue[]
|
|
90890
|
+
allowed_email_domains?: OrganisationUpdateallowed_email_domainsInput | string[]
|
|
90811
90891
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
90812
90892
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
90813
90893
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -91590,6 +91670,7 @@ export namespace Prisma {
|
|
|
91590
91670
|
phone: string
|
|
91591
91671
|
address: string
|
|
91592
91672
|
company_values?: OrganisationCreatecompany_valuesInput | InputJsonValue[]
|
|
91673
|
+
allowed_email_domains?: OrganisationCreateallowed_email_domainsInput | string[]
|
|
91593
91674
|
created_at?: Date | string
|
|
91594
91675
|
updated_at?: Date | string
|
|
91595
91676
|
created_by: string
|
|
@@ -91626,6 +91707,7 @@ export namespace Prisma {
|
|
|
91626
91707
|
phone: string
|
|
91627
91708
|
address: string
|
|
91628
91709
|
company_values?: OrganisationCreatecompany_valuesInput | InputJsonValue[]
|
|
91710
|
+
allowed_email_domains?: OrganisationCreateallowed_email_domainsInput | string[]
|
|
91629
91711
|
created_at?: Date | string
|
|
91630
91712
|
updated_at?: Date | string
|
|
91631
91713
|
created_by: string
|
|
@@ -92712,6 +92794,7 @@ export namespace Prisma {
|
|
|
92712
92794
|
phone?: StringFieldUpdateOperationsInput | string
|
|
92713
92795
|
address?: StringFieldUpdateOperationsInput | string
|
|
92714
92796
|
company_values?: OrganisationUpdatecompany_valuesInput | InputJsonValue[]
|
|
92797
|
+
allowed_email_domains?: OrganisationUpdateallowed_email_domainsInput | string[]
|
|
92715
92798
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
92716
92799
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
92717
92800
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -92748,6 +92831,7 @@ export namespace Prisma {
|
|
|
92748
92831
|
phone?: StringFieldUpdateOperationsInput | string
|
|
92749
92832
|
address?: StringFieldUpdateOperationsInput | string
|
|
92750
92833
|
company_values?: OrganisationUpdatecompany_valuesInput | InputJsonValue[]
|
|
92834
|
+
allowed_email_domains?: OrganisationUpdateallowed_email_domainsInput | string[]
|
|
92751
92835
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
92752
92836
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
92753
92837
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -93454,6 +93538,7 @@ export namespace Prisma {
|
|
|
93454
93538
|
phone: string
|
|
93455
93539
|
address: string
|
|
93456
93540
|
company_values?: OrganisationCreatecompany_valuesInput | InputJsonValue[]
|
|
93541
|
+
allowed_email_domains?: OrganisationCreateallowed_email_domainsInput | string[]
|
|
93457
93542
|
created_at?: Date | string
|
|
93458
93543
|
updated_at?: Date | string
|
|
93459
93544
|
created_by: string
|
|
@@ -93490,6 +93575,7 @@ export namespace Prisma {
|
|
|
93490
93575
|
phone: string
|
|
93491
93576
|
address: string
|
|
93492
93577
|
company_values?: OrganisationCreatecompany_valuesInput | InputJsonValue[]
|
|
93578
|
+
allowed_email_domains?: OrganisationCreateallowed_email_domainsInput | string[]
|
|
93493
93579
|
created_at?: Date | string
|
|
93494
93580
|
updated_at?: Date | string
|
|
93495
93581
|
created_by: string
|
|
@@ -94003,6 +94089,7 @@ export namespace Prisma {
|
|
|
94003
94089
|
phone?: StringFieldUpdateOperationsInput | string
|
|
94004
94090
|
address?: StringFieldUpdateOperationsInput | string
|
|
94005
94091
|
company_values?: OrganisationUpdatecompany_valuesInput | InputJsonValue[]
|
|
94092
|
+
allowed_email_domains?: OrganisationUpdateallowed_email_domainsInput | string[]
|
|
94006
94093
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
94007
94094
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
94008
94095
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -94039,6 +94126,7 @@ export namespace Prisma {
|
|
|
94039
94126
|
phone?: StringFieldUpdateOperationsInput | string
|
|
94040
94127
|
address?: StringFieldUpdateOperationsInput | string
|
|
94041
94128
|
company_values?: OrganisationUpdatecompany_valuesInput | InputJsonValue[]
|
|
94129
|
+
allowed_email_domains?: OrganisationUpdateallowed_email_domainsInput | string[]
|
|
94042
94130
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
94043
94131
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
94044
94132
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -95511,6 +95599,7 @@ export namespace Prisma {
|
|
|
95511
95599
|
phone: string
|
|
95512
95600
|
address: string
|
|
95513
95601
|
company_values?: OrganisationCreatecompany_valuesInput | InputJsonValue[]
|
|
95602
|
+
allowed_email_domains?: OrganisationCreateallowed_email_domainsInput | string[]
|
|
95514
95603
|
created_at?: Date | string
|
|
95515
95604
|
updated_at?: Date | string
|
|
95516
95605
|
created_by: string
|
|
@@ -95547,6 +95636,7 @@ export namespace Prisma {
|
|
|
95547
95636
|
phone: string
|
|
95548
95637
|
address: string
|
|
95549
95638
|
company_values?: OrganisationCreatecompany_valuesInput | InputJsonValue[]
|
|
95639
|
+
allowed_email_domains?: OrganisationCreateallowed_email_domainsInput | string[]
|
|
95550
95640
|
created_at?: Date | string
|
|
95551
95641
|
updated_at?: Date | string
|
|
95552
95642
|
created_by: string
|
|
@@ -96167,6 +96257,7 @@ export namespace Prisma {
|
|
|
96167
96257
|
phone?: StringFieldUpdateOperationsInput | string
|
|
96168
96258
|
address?: StringFieldUpdateOperationsInput | string
|
|
96169
96259
|
company_values?: OrganisationUpdatecompany_valuesInput | InputJsonValue[]
|
|
96260
|
+
allowed_email_domains?: OrganisationUpdateallowed_email_domainsInput | string[]
|
|
96170
96261
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
96171
96262
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
96172
96263
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -96203,6 +96294,7 @@ export namespace Prisma {
|
|
|
96203
96294
|
phone?: StringFieldUpdateOperationsInput | string
|
|
96204
96295
|
address?: StringFieldUpdateOperationsInput | string
|
|
96205
96296
|
company_values?: OrganisationUpdatecompany_valuesInput | InputJsonValue[]
|
|
96297
|
+
allowed_email_domains?: OrganisationUpdateallowed_email_domainsInput | string[]
|
|
96206
96298
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
96207
96299
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
96208
96300
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -99016,6 +99108,7 @@ export namespace Prisma {
|
|
|
99016
99108
|
phone: string
|
|
99017
99109
|
address: string
|
|
99018
99110
|
company_values?: OrganisationCreatecompany_valuesInput | InputJsonValue[]
|
|
99111
|
+
allowed_email_domains?: OrganisationCreateallowed_email_domainsInput | string[]
|
|
99019
99112
|
created_at?: Date | string
|
|
99020
99113
|
updated_at?: Date | string
|
|
99021
99114
|
created_by: string
|
|
@@ -99052,6 +99145,7 @@ export namespace Prisma {
|
|
|
99052
99145
|
phone: string
|
|
99053
99146
|
address: string
|
|
99054
99147
|
company_values?: OrganisationCreatecompany_valuesInput | InputJsonValue[]
|
|
99148
|
+
allowed_email_domains?: OrganisationCreateallowed_email_domainsInput | string[]
|
|
99055
99149
|
created_at?: Date | string
|
|
99056
99150
|
updated_at?: Date | string
|
|
99057
99151
|
created_by: string
|
|
@@ -99693,6 +99787,7 @@ export namespace Prisma {
|
|
|
99693
99787
|
phone?: StringFieldUpdateOperationsInput | string
|
|
99694
99788
|
address?: StringFieldUpdateOperationsInput | string
|
|
99695
99789
|
company_values?: OrganisationUpdatecompany_valuesInput | InputJsonValue[]
|
|
99790
|
+
allowed_email_domains?: OrganisationUpdateallowed_email_domainsInput | string[]
|
|
99696
99791
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
99697
99792
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
99698
99793
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -99729,6 +99824,7 @@ export namespace Prisma {
|
|
|
99729
99824
|
phone?: StringFieldUpdateOperationsInput | string
|
|
99730
99825
|
address?: StringFieldUpdateOperationsInput | string
|
|
99731
99826
|
company_values?: OrganisationUpdatecompany_valuesInput | InputJsonValue[]
|
|
99827
|
+
allowed_email_domains?: OrganisationUpdateallowed_email_domainsInput | string[]
|
|
99732
99828
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
99733
99829
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
99734
99830
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -100223,6 +100319,7 @@ export namespace Prisma {
|
|
|
100223
100319
|
phone: string
|
|
100224
100320
|
address: string
|
|
100225
100321
|
company_values?: OrganisationCreatecompany_valuesInput | InputJsonValue[]
|
|
100322
|
+
allowed_email_domains?: OrganisationCreateallowed_email_domainsInput | string[]
|
|
100226
100323
|
created_at?: Date | string
|
|
100227
100324
|
updated_at?: Date | string
|
|
100228
100325
|
created_by: string
|
|
@@ -100259,6 +100356,7 @@ export namespace Prisma {
|
|
|
100259
100356
|
phone: string
|
|
100260
100357
|
address: string
|
|
100261
100358
|
company_values?: OrganisationCreatecompany_valuesInput | InputJsonValue[]
|
|
100359
|
+
allowed_email_domains?: OrganisationCreateallowed_email_domainsInput | string[]
|
|
100262
100360
|
created_at?: Date | string
|
|
100263
100361
|
updated_at?: Date | string
|
|
100264
100362
|
created_by: string
|
|
@@ -100418,6 +100516,7 @@ export namespace Prisma {
|
|
|
100418
100516
|
phone?: StringFieldUpdateOperationsInput | string
|
|
100419
100517
|
address?: StringFieldUpdateOperationsInput | string
|
|
100420
100518
|
company_values?: OrganisationUpdatecompany_valuesInput | InputJsonValue[]
|
|
100519
|
+
allowed_email_domains?: OrganisationUpdateallowed_email_domainsInput | string[]
|
|
100421
100520
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
100422
100521
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
100423
100522
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -100454,6 +100553,7 @@ export namespace Prisma {
|
|
|
100454
100553
|
phone?: StringFieldUpdateOperationsInput | string
|
|
100455
100554
|
address?: StringFieldUpdateOperationsInput | string
|
|
100456
100555
|
company_values?: OrganisationUpdatecompany_valuesInput | InputJsonValue[]
|
|
100556
|
+
allowed_email_domains?: OrganisationUpdateallowed_email_domainsInput | string[]
|
|
100457
100557
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
100458
100558
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
100459
100559
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -100952,6 +101052,7 @@ export namespace Prisma {
|
|
|
100952
101052
|
phone: string
|
|
100953
101053
|
address: string
|
|
100954
101054
|
company_values?: OrganisationCreatecompany_valuesInput | InputJsonValue[]
|
|
101055
|
+
allowed_email_domains?: OrganisationCreateallowed_email_domainsInput | string[]
|
|
100955
101056
|
created_at?: Date | string
|
|
100956
101057
|
updated_at?: Date | string
|
|
100957
101058
|
created_by: string
|
|
@@ -100988,6 +101089,7 @@ export namespace Prisma {
|
|
|
100988
101089
|
phone: string
|
|
100989
101090
|
address: string
|
|
100990
101091
|
company_values?: OrganisationCreatecompany_valuesInput | InputJsonValue[]
|
|
101092
|
+
allowed_email_domains?: OrganisationCreateallowed_email_domainsInput | string[]
|
|
100991
101093
|
created_at?: Date | string
|
|
100992
101094
|
updated_at?: Date | string
|
|
100993
101095
|
created_by: string
|
|
@@ -102605,6 +102707,7 @@ export namespace Prisma {
|
|
|
102605
102707
|
phone?: StringFieldUpdateOperationsInput | string
|
|
102606
102708
|
address?: StringFieldUpdateOperationsInput | string
|
|
102607
102709
|
company_values?: OrganisationUpdatecompany_valuesInput | InputJsonValue[]
|
|
102710
|
+
allowed_email_domains?: OrganisationUpdateallowed_email_domainsInput | string[]
|
|
102608
102711
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
102609
102712
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
102610
102713
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -102641,6 +102744,7 @@ export namespace Prisma {
|
|
|
102641
102744
|
phone?: StringFieldUpdateOperationsInput | string
|
|
102642
102745
|
address?: StringFieldUpdateOperationsInput | string
|
|
102643
102746
|
company_values?: OrganisationUpdatecompany_valuesInput | InputJsonValue[]
|
|
102747
|
+
allowed_email_domains?: OrganisationUpdateallowed_email_domainsInput | string[]
|
|
102644
102748
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
102645
102749
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
102646
102750
|
created_by?: StringFieldUpdateOperationsInput | string
|