@ampeco/public-api-mcp 3.248.1 → 3.250.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/dist/generated/build-stats.json +9 -9
- package/dist/generated/endpoints.json +437 -57
- package/dist/generated/response-schemas.json +1741 -482
- package/dist/generated/schemas.d.ts +132 -24
- package/dist/generated/schemas.d.ts.map +1 -1
- package/dist/generated/schemas.js +45 -12
- package/dist/generated/schemas.js.map +1 -1
- package/dist/generated/schemas.ts +50 -12
- package/package.json +1 -1
|
@@ -64,15 +64,15 @@ export declare const chargePointGetCompositeScheduleBody: z.ZodObject<{
|
|
|
64
64
|
evseNetworkId?: number | undefined;
|
|
65
65
|
}>;
|
|
66
66
|
export declare const chargePointGetDiagnosticsBody: z.ZodObject<{
|
|
67
|
-
location: z.ZodString
|
|
67
|
+
location: z.ZodOptional<z.ZodString>;
|
|
68
68
|
start: z.ZodOptional<z.ZodString>;
|
|
69
69
|
stop: z.ZodOptional<z.ZodString>;
|
|
70
70
|
}, "strip", z.ZodTypeAny, {
|
|
71
|
-
location
|
|
71
|
+
location?: string | undefined;
|
|
72
72
|
start?: string | undefined;
|
|
73
73
|
stop?: string | undefined;
|
|
74
74
|
}, {
|
|
75
|
-
location
|
|
75
|
+
location?: string | undefined;
|
|
76
76
|
start?: string | undefined;
|
|
77
77
|
stop?: string | undefined;
|
|
78
78
|
}>;
|
|
@@ -10342,6 +10342,74 @@ export declare const partnerContractPatchBody: z.ZodObject<{
|
|
|
10342
10342
|
perPeriod?: number | undefined;
|
|
10343
10343
|
} | undefined;
|
|
10344
10344
|
}>;
|
|
10345
|
+
export declare const partnerContractSettlementOverrideCreateBody: z.ZodObject<{
|
|
10346
|
+
name: z.ZodString;
|
|
10347
|
+
priority: z.ZodNumber;
|
|
10348
|
+
restriction: z.ZodObject<{
|
|
10349
|
+
type: z.ZodEnum<["users_of_the_partner", "user_groups", "ad_hoc_users", "users_of_specific_partners"]>;
|
|
10350
|
+
targetIds: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
|
|
10351
|
+
}, "strip", z.ZodTypeAny, {
|
|
10352
|
+
type: "users_of_the_partner" | "user_groups" | "ad_hoc_users" | "users_of_specific_partners";
|
|
10353
|
+
targetIds?: number[] | undefined;
|
|
10354
|
+
}, {
|
|
10355
|
+
type: "users_of_the_partner" | "user_groups" | "ad_hoc_users" | "users_of_specific_partners";
|
|
10356
|
+
targetIds?: number[] | undefined;
|
|
10357
|
+
}>;
|
|
10358
|
+
acPercent: z.ZodOptional<z.ZodNumber>;
|
|
10359
|
+
dcPercent: z.ZodOptional<z.ZodNumber>;
|
|
10360
|
+
}, "strip", z.ZodTypeAny, {
|
|
10361
|
+
name: string;
|
|
10362
|
+
priority: number;
|
|
10363
|
+
restriction: {
|
|
10364
|
+
type: "users_of_the_partner" | "user_groups" | "ad_hoc_users" | "users_of_specific_partners";
|
|
10365
|
+
targetIds?: number[] | undefined;
|
|
10366
|
+
};
|
|
10367
|
+
acPercent?: number | undefined;
|
|
10368
|
+
dcPercent?: number | undefined;
|
|
10369
|
+
}, {
|
|
10370
|
+
name: string;
|
|
10371
|
+
priority: number;
|
|
10372
|
+
restriction: {
|
|
10373
|
+
type: "users_of_the_partner" | "user_groups" | "ad_hoc_users" | "users_of_specific_partners";
|
|
10374
|
+
targetIds?: number[] | undefined;
|
|
10375
|
+
};
|
|
10376
|
+
acPercent?: number | undefined;
|
|
10377
|
+
dcPercent?: number | undefined;
|
|
10378
|
+
}>;
|
|
10379
|
+
export declare const partnerContractSettlementOverrideUpdateBody: z.ZodObject<{
|
|
10380
|
+
name: z.ZodOptional<z.ZodString>;
|
|
10381
|
+
priority: z.ZodOptional<z.ZodNumber>;
|
|
10382
|
+
restriction: z.ZodOptional<z.ZodObject<{
|
|
10383
|
+
type: z.ZodEnum<["users_of_the_partner", "user_groups", "ad_hoc_users", "users_of_specific_partners"]>;
|
|
10384
|
+
targetIds: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
|
|
10385
|
+
}, "strip", z.ZodTypeAny, {
|
|
10386
|
+
type: "users_of_the_partner" | "user_groups" | "ad_hoc_users" | "users_of_specific_partners";
|
|
10387
|
+
targetIds?: number[] | undefined;
|
|
10388
|
+
}, {
|
|
10389
|
+
type: "users_of_the_partner" | "user_groups" | "ad_hoc_users" | "users_of_specific_partners";
|
|
10390
|
+
targetIds?: number[] | undefined;
|
|
10391
|
+
}>>;
|
|
10392
|
+
acPercent: z.ZodOptional<z.ZodNumber>;
|
|
10393
|
+
dcPercent: z.ZodOptional<z.ZodNumber>;
|
|
10394
|
+
}, "strip", z.ZodTypeAny, {
|
|
10395
|
+
name?: string | undefined;
|
|
10396
|
+
priority?: number | undefined;
|
|
10397
|
+
restriction?: {
|
|
10398
|
+
type: "users_of_the_partner" | "user_groups" | "ad_hoc_users" | "users_of_specific_partners";
|
|
10399
|
+
targetIds?: number[] | undefined;
|
|
10400
|
+
} | undefined;
|
|
10401
|
+
acPercent?: number | undefined;
|
|
10402
|
+
dcPercent?: number | undefined;
|
|
10403
|
+
}, {
|
|
10404
|
+
name?: string | undefined;
|
|
10405
|
+
priority?: number | undefined;
|
|
10406
|
+
restriction?: {
|
|
10407
|
+
type: "users_of_the_partner" | "user_groups" | "ad_hoc_users" | "users_of_specific_partners";
|
|
10408
|
+
targetIds?: number[] | undefined;
|
|
10409
|
+
} | undefined;
|
|
10410
|
+
acPercent?: number | undefined;
|
|
10411
|
+
dcPercent?: number | undefined;
|
|
10412
|
+
}>;
|
|
10345
10413
|
export declare const partnerInviteAccessPolicyCreateBody: z.ZodObject<{
|
|
10346
10414
|
operatorId: z.ZodOptional<z.ZodNumber>;
|
|
10347
10415
|
name: z.ZodString;
|
|
@@ -12722,7 +12790,7 @@ export declare const partnerInviteCreateV2_0Body: z.ZodObject<{
|
|
|
12722
12790
|
partnerId: z.ZodNumber;
|
|
12723
12791
|
sendViaEmail: z.ZodOptional<z.ZodBoolean>;
|
|
12724
12792
|
email: z.ZodOptional<z.ZodString>;
|
|
12725
|
-
language: z.ZodOptional<z.ZodEnum<["en", "bg", "mk", "el", "zh-CN", "zh-HK", "zh-TW", "pt", "sl", "hr", "it", "de", "hu", "fi", "is", "sv-SE", "da-DK", "nb-NO", "tr-TR", "es-ES", "ar", "ary", "he", "ta", "ms", "cy", "sr", "fr", "fr-MA", "ro", "lt", "uk", "ru", "nl", "ca-ES", "id", "ar-EG", "pl", "lo", "th", "sq-XK", "ga-IE", "bs", "ja", "ko", "cs", "lv", "et", "az", "ka", "af", "hi", "de-CH", "fr-CH", "it-CH", "en-GB"]>>;
|
|
12793
|
+
language: z.ZodOptional<z.ZodEnum<["en", "bg", "mk", "el", "zh-CN", "zh-HK", "zh-TW", "pt", "sl", "hr", "it", "de", "hu", "fi", "is", "sv-SE", "da-DK", "nb-NO", "tr-TR", "es-ES", "ar", "ary", "he", "ta", "ms", "cy", "sr", "fr", "fr-MA", "ro", "lt", "uk", "ru", "nl", "ca-ES", "id", "ar-EG", "pl", "lo", "th", "sq-XK", "ga-IE", "bs", "ja", "ko-KR", "cs", "lv", "et", "az", "ka", "af", "hi", "de-CH", "fr-CH", "it-CH", "en-GB"]>>;
|
|
12726
12794
|
accessPolicyId: z.ZodOptional<z.ZodNumber>;
|
|
12727
12795
|
corporateBillingPolicyId: z.ZodOptional<z.ZodNumber>;
|
|
12728
12796
|
reimbursement: z.ZodOptional<z.ZodObject<{
|
|
@@ -12795,7 +12863,7 @@ export declare const partnerInviteCreateV2_0Body: z.ZodObject<{
|
|
|
12795
12863
|
}, "strip", z.ZodTypeAny, {
|
|
12796
12864
|
partnerId: number;
|
|
12797
12865
|
email?: string | undefined;
|
|
12798
|
-
language?: "is" | "lt" | "id" | "en" | "bg" | "mk" | "el" | "zh-CN" | "zh-HK" | "zh-TW" | "pt" | "sl" | "hr" | "it" | "de" | "hu" | "fi" | "sv-SE" | "da-DK" | "nb-NO" | "tr-TR" | "es-ES" | "ar" | "ary" | "he" | "ta" | "ms" | "cy" | "sr" | "fr" | "fr-MA" | "ro" | "uk" | "ru" | "nl" | "ca-ES" | "ar-EG" | "pl" | "lo" | "th" | "sq-XK" | "ga-IE" | "bs" | "ja" | "ko" | "cs" | "lv" | "et" | "az" | "ka" | "af" | "hi" | "de-CH" | "fr-CH" | "it-CH" | "en-GB" | undefined;
|
|
12866
|
+
language?: "is" | "lt" | "id" | "en" | "bg" | "mk" | "el" | "zh-CN" | "zh-HK" | "zh-TW" | "pt" | "sl" | "hr" | "it" | "de" | "hu" | "fi" | "sv-SE" | "da-DK" | "nb-NO" | "tr-TR" | "es-ES" | "ar" | "ary" | "he" | "ta" | "ms" | "cy" | "sr" | "fr" | "fr-MA" | "ro" | "uk" | "ru" | "nl" | "ca-ES" | "ar-EG" | "pl" | "lo" | "th" | "sq-XK" | "ga-IE" | "bs" | "ja" | "ko-KR" | "cs" | "lv" | "et" | "az" | "ka" | "af" | "hi" | "de-CH" | "fr-CH" | "it-CH" | "en-GB" | undefined;
|
|
12799
12867
|
sendViaEmail?: boolean | undefined;
|
|
12800
12868
|
accessPolicyId?: number | undefined;
|
|
12801
12869
|
corporateBillingPolicyId?: number | undefined;
|
|
@@ -12815,7 +12883,7 @@ export declare const partnerInviteCreateV2_0Body: z.ZodObject<{
|
|
|
12815
12883
|
}, {
|
|
12816
12884
|
partnerId: number;
|
|
12817
12885
|
email?: string | undefined;
|
|
12818
|
-
language?: "is" | "lt" | "id" | "en" | "bg" | "mk" | "el" | "zh-CN" | "zh-HK" | "zh-TW" | "pt" | "sl" | "hr" | "it" | "de" | "hu" | "fi" | "sv-SE" | "da-DK" | "nb-NO" | "tr-TR" | "es-ES" | "ar" | "ary" | "he" | "ta" | "ms" | "cy" | "sr" | "fr" | "fr-MA" | "ro" | "uk" | "ru" | "nl" | "ca-ES" | "ar-EG" | "pl" | "lo" | "th" | "sq-XK" | "ga-IE" | "bs" | "ja" | "ko" | "cs" | "lv" | "et" | "az" | "ka" | "af" | "hi" | "de-CH" | "fr-CH" | "it-CH" | "en-GB" | undefined;
|
|
12886
|
+
language?: "is" | "lt" | "id" | "en" | "bg" | "mk" | "el" | "zh-CN" | "zh-HK" | "zh-TW" | "pt" | "sl" | "hr" | "it" | "de" | "hu" | "fi" | "sv-SE" | "da-DK" | "nb-NO" | "tr-TR" | "es-ES" | "ar" | "ary" | "he" | "ta" | "ms" | "cy" | "sr" | "fr" | "fr-MA" | "ro" | "uk" | "ru" | "nl" | "ca-ES" | "ar-EG" | "pl" | "lo" | "th" | "sq-XK" | "ga-IE" | "bs" | "ja" | "ko-KR" | "cs" | "lv" | "et" | "az" | "ka" | "af" | "hi" | "de-CH" | "fr-CH" | "it-CH" | "en-GB" | undefined;
|
|
12819
12887
|
sendViaEmail?: boolean | undefined;
|
|
12820
12888
|
accessPolicyId?: number | undefined;
|
|
12821
12889
|
corporateBillingPolicyId?: number | undefined;
|
|
@@ -18387,20 +18455,23 @@ export declare const subscriptionPlanUpdateBody: z.ZodObject<{
|
|
|
18387
18455
|
}>;
|
|
18388
18456
|
export declare const tariffGroupCreateBody: z.ZodObject<{
|
|
18389
18457
|
operatorId: z.ZodOptional<z.ZodNumber>;
|
|
18390
|
-
name: z.ZodString;
|
|
18391
|
-
tariffIds: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
|
|
18392
|
-
partnerId: z.ZodOptional<z.ZodNumber>;
|
|
18393
|
-
offlineTariffId: z.ZodOptional<z.ZodNumber>;
|
|
18394
18458
|
display: z.ZodOptional<z.ZodObject<{
|
|
18395
18459
|
defaultPriceInformation: z.ZodOptional<z.ZodString>;
|
|
18396
18460
|
defaultPriceInformationOffline: z.ZodOptional<z.ZodString>;
|
|
18461
|
+
totalCostFallbackMessage: z.ZodOptional<z.ZodString>;
|
|
18397
18462
|
}, "strip", z.ZodTypeAny, {
|
|
18398
18463
|
defaultPriceInformation?: string | undefined;
|
|
18399
18464
|
defaultPriceInformationOffline?: string | undefined;
|
|
18465
|
+
totalCostFallbackMessage?: string | undefined;
|
|
18400
18466
|
}, {
|
|
18401
18467
|
defaultPriceInformation?: string | undefined;
|
|
18402
18468
|
defaultPriceInformationOffline?: string | undefined;
|
|
18469
|
+
totalCostFallbackMessage?: string | undefined;
|
|
18403
18470
|
}>>;
|
|
18471
|
+
name: z.ZodString;
|
|
18472
|
+
tariffIds: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
|
|
18473
|
+
partnerId: z.ZodOptional<z.ZodNumber>;
|
|
18474
|
+
offlineTariffId: z.ZodOptional<z.ZodNumber>;
|
|
18404
18475
|
lastUpdatedAt: z.ZodOptional<z.ZodString>;
|
|
18405
18476
|
}, "strip", z.ZodTypeAny, {
|
|
18406
18477
|
name: string;
|
|
@@ -18408,59 +18479,66 @@ export declare const tariffGroupCreateBody: z.ZodObject<{
|
|
|
18408
18479
|
operatorId?: number | undefined;
|
|
18409
18480
|
partnerId?: number | undefined;
|
|
18410
18481
|
tariffIds?: number[] | undefined;
|
|
18411
|
-
offlineTariffId?: number | undefined;
|
|
18412
18482
|
display?: {
|
|
18413
18483
|
defaultPriceInformation?: string | undefined;
|
|
18414
18484
|
defaultPriceInformationOffline?: string | undefined;
|
|
18485
|
+
totalCostFallbackMessage?: string | undefined;
|
|
18415
18486
|
} | undefined;
|
|
18487
|
+
offlineTariffId?: number | undefined;
|
|
18416
18488
|
}, {
|
|
18417
18489
|
name: string;
|
|
18418
18490
|
lastUpdatedAt?: string | undefined;
|
|
18419
18491
|
operatorId?: number | undefined;
|
|
18420
18492
|
partnerId?: number | undefined;
|
|
18421
18493
|
tariffIds?: number[] | undefined;
|
|
18422
|
-
offlineTariffId?: number | undefined;
|
|
18423
18494
|
display?: {
|
|
18424
18495
|
defaultPriceInformation?: string | undefined;
|
|
18425
18496
|
defaultPriceInformationOffline?: string | undefined;
|
|
18497
|
+
totalCostFallbackMessage?: string | undefined;
|
|
18426
18498
|
} | undefined;
|
|
18499
|
+
offlineTariffId?: number | undefined;
|
|
18427
18500
|
}>;
|
|
18428
18501
|
export declare const tariffGroupUpdateBody: z.ZodObject<{
|
|
18429
|
-
name: z.ZodString;
|
|
18430
|
-
tariffIds: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
|
|
18431
|
-
partnerId: z.ZodOptional<z.ZodNumber>;
|
|
18432
|
-
offlineTariffId: z.ZodOptional<z.ZodNumber>;
|
|
18433
18502
|
display: z.ZodOptional<z.ZodObject<{
|
|
18434
18503
|
defaultPriceInformation: z.ZodOptional<z.ZodString>;
|
|
18435
18504
|
defaultPriceInformationOffline: z.ZodOptional<z.ZodString>;
|
|
18505
|
+
totalCostFallbackMessage: z.ZodOptional<z.ZodString>;
|
|
18436
18506
|
}, "strip", z.ZodTypeAny, {
|
|
18437
18507
|
defaultPriceInformation?: string | undefined;
|
|
18438
18508
|
defaultPriceInformationOffline?: string | undefined;
|
|
18509
|
+
totalCostFallbackMessage?: string | undefined;
|
|
18439
18510
|
}, {
|
|
18440
18511
|
defaultPriceInformation?: string | undefined;
|
|
18441
18512
|
defaultPriceInformationOffline?: string | undefined;
|
|
18513
|
+
totalCostFallbackMessage?: string | undefined;
|
|
18442
18514
|
}>>;
|
|
18515
|
+
name: z.ZodString;
|
|
18516
|
+
tariffIds: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
|
|
18517
|
+
partnerId: z.ZodOptional<z.ZodNumber>;
|
|
18518
|
+
offlineTariffId: z.ZodOptional<z.ZodNumber>;
|
|
18443
18519
|
lastUpdatedAt: z.ZodOptional<z.ZodString>;
|
|
18444
18520
|
}, "strip", z.ZodTypeAny, {
|
|
18445
18521
|
name: string;
|
|
18446
18522
|
lastUpdatedAt?: string | undefined;
|
|
18447
18523
|
partnerId?: number | undefined;
|
|
18448
18524
|
tariffIds?: number[] | undefined;
|
|
18449
|
-
offlineTariffId?: number | undefined;
|
|
18450
18525
|
display?: {
|
|
18451
18526
|
defaultPriceInformation?: string | undefined;
|
|
18452
18527
|
defaultPriceInformationOffline?: string | undefined;
|
|
18528
|
+
totalCostFallbackMessage?: string | undefined;
|
|
18453
18529
|
} | undefined;
|
|
18530
|
+
offlineTariffId?: number | undefined;
|
|
18454
18531
|
}, {
|
|
18455
18532
|
name: string;
|
|
18456
18533
|
lastUpdatedAt?: string | undefined;
|
|
18457
18534
|
partnerId?: number | undefined;
|
|
18458
18535
|
tariffIds?: number[] | undefined;
|
|
18459
|
-
offlineTariffId?: number | undefined;
|
|
18460
18536
|
display?: {
|
|
18461
18537
|
defaultPriceInformation?: string | undefined;
|
|
18462
18538
|
defaultPriceInformationOffline?: string | undefined;
|
|
18539
|
+
totalCostFallbackMessage?: string | undefined;
|
|
18463
18540
|
} | undefined;
|
|
18541
|
+
offlineTariffId?: number | undefined;
|
|
18464
18542
|
}>;
|
|
18465
18543
|
export declare const tariffCreateBody: z.ZodObject<{
|
|
18466
18544
|
operatorId: z.ZodOptional<z.ZodNumber>;
|
|
@@ -19134,6 +19212,8 @@ export declare const tariffCreateBody: z.ZodObject<{
|
|
|
19134
19212
|
applyToAdHocOperatorIds: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
|
|
19135
19213
|
applyToUsersOfPartners: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
|
|
19136
19214
|
applyToUsersWithGroups: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
19215
|
+
applyToHomeChargingOwner: z.ZodOptional<z.ZodBoolean>;
|
|
19216
|
+
applyToHomeChargingSharedUsers: z.ZodOptional<z.ZodBoolean>;
|
|
19137
19217
|
applyToUserGroupIds: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
|
|
19138
19218
|
applyToUsersWithSubscriptions: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
|
|
19139
19219
|
applyToAuthorizationMethods: z.ZodOptional<z.ZodArray<z.ZodEnum<["id_tag", "mac_address", "user_device", "plug_and_charge", "plug_and_charge_iso15118"]>, "many">>;
|
|
@@ -19152,6 +19232,8 @@ export declare const tariffCreateBody: z.ZodObject<{
|
|
|
19152
19232
|
applyToAdHocOperatorIds?: number[] | undefined;
|
|
19153
19233
|
applyToUsersOfPartners?: number[] | undefined;
|
|
19154
19234
|
applyToUsersWithGroups?: string[] | undefined;
|
|
19235
|
+
applyToHomeChargingOwner?: boolean | undefined;
|
|
19236
|
+
applyToHomeChargingSharedUsers?: boolean | undefined;
|
|
19155
19237
|
applyToUserGroupIds?: number[] | undefined;
|
|
19156
19238
|
applyToUsersWithSubscriptions?: number[] | undefined;
|
|
19157
19239
|
applyToAuthorizationMethods?: ("mac_address" | "id_tag" | "user_device" | "plug_and_charge" | "plug_and_charge_iso15118")[] | undefined;
|
|
@@ -19168,6 +19250,8 @@ export declare const tariffCreateBody: z.ZodObject<{
|
|
|
19168
19250
|
applyToAdHocOperatorIds?: number[] | undefined;
|
|
19169
19251
|
applyToUsersOfPartners?: number[] | undefined;
|
|
19170
19252
|
applyToUsersWithGroups?: string[] | undefined;
|
|
19253
|
+
applyToHomeChargingOwner?: boolean | undefined;
|
|
19254
|
+
applyToHomeChargingSharedUsers?: boolean | undefined;
|
|
19171
19255
|
applyToUserGroupIds?: number[] | undefined;
|
|
19172
19256
|
applyToUsersWithSubscriptions?: number[] | undefined;
|
|
19173
19257
|
applyToAuthorizationMethods?: ("mac_address" | "id_tag" | "user_device" | "plug_and_charge" | "plug_and_charge_iso15118")[] | undefined;
|
|
@@ -19226,6 +19310,8 @@ export declare const tariffCreateBody: z.ZodObject<{
|
|
|
19226
19310
|
applyToAdHocOperatorIds?: number[] | undefined;
|
|
19227
19311
|
applyToUsersOfPartners?: number[] | undefined;
|
|
19228
19312
|
applyToUsersWithGroups?: string[] | undefined;
|
|
19313
|
+
applyToHomeChargingOwner?: boolean | undefined;
|
|
19314
|
+
applyToHomeChargingSharedUsers?: boolean | undefined;
|
|
19229
19315
|
applyToUserGroupIds?: number[] | undefined;
|
|
19230
19316
|
applyToUsersWithSubscriptions?: number[] | undefined;
|
|
19231
19317
|
applyToAuthorizationMethods?: ("mac_address" | "id_tag" | "user_device" | "plug_and_charge" | "plug_and_charge_iso15118")[] | undefined;
|
|
@@ -19413,6 +19499,8 @@ export declare const tariffCreateBody: z.ZodObject<{
|
|
|
19413
19499
|
applyToAdHocOperatorIds?: number[] | undefined;
|
|
19414
19500
|
applyToUsersOfPartners?: number[] | undefined;
|
|
19415
19501
|
applyToUsersWithGroups?: string[] | undefined;
|
|
19502
|
+
applyToHomeChargingOwner?: boolean | undefined;
|
|
19503
|
+
applyToHomeChargingSharedUsers?: boolean | undefined;
|
|
19416
19504
|
applyToUserGroupIds?: number[] | undefined;
|
|
19417
19505
|
applyToUsersWithSubscriptions?: number[] | undefined;
|
|
19418
19506
|
applyToAuthorizationMethods?: ("mac_address" | "id_tag" | "user_device" | "plug_and_charge" | "plug_and_charge_iso15118")[] | undefined;
|
|
@@ -20253,6 +20341,8 @@ export declare const tariffUpdateBody: z.ZodObject<{
|
|
|
20253
20341
|
applyToAdHocOperatorIds: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
|
|
20254
20342
|
applyToUsersOfPartners: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
|
|
20255
20343
|
applyToUsersWithGroups: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
20344
|
+
applyToHomeChargingOwner: z.ZodOptional<z.ZodBoolean>;
|
|
20345
|
+
applyToHomeChargingSharedUsers: z.ZodOptional<z.ZodBoolean>;
|
|
20256
20346
|
applyToUserGroupIds: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
|
|
20257
20347
|
applyToUsersWithSubscriptions: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
|
|
20258
20348
|
applyToAuthorizationMethods: z.ZodOptional<z.ZodArray<z.ZodEnum<["id_tag", "mac_address", "user_device", "plug_and_charge", "plug_and_charge_iso15118"]>, "many">>;
|
|
@@ -20271,6 +20361,8 @@ export declare const tariffUpdateBody: z.ZodObject<{
|
|
|
20271
20361
|
applyToAdHocOperatorIds?: number[] | undefined;
|
|
20272
20362
|
applyToUsersOfPartners?: number[] | undefined;
|
|
20273
20363
|
applyToUsersWithGroups?: string[] | undefined;
|
|
20364
|
+
applyToHomeChargingOwner?: boolean | undefined;
|
|
20365
|
+
applyToHomeChargingSharedUsers?: boolean | undefined;
|
|
20274
20366
|
applyToUserGroupIds?: number[] | undefined;
|
|
20275
20367
|
applyToUsersWithSubscriptions?: number[] | undefined;
|
|
20276
20368
|
applyToAuthorizationMethods?: ("mac_address" | "id_tag" | "user_device" | "plug_and_charge" | "plug_and_charge_iso15118")[] | undefined;
|
|
@@ -20287,6 +20379,8 @@ export declare const tariffUpdateBody: z.ZodObject<{
|
|
|
20287
20379
|
applyToAdHocOperatorIds?: number[] | undefined;
|
|
20288
20380
|
applyToUsersOfPartners?: number[] | undefined;
|
|
20289
20381
|
applyToUsersWithGroups?: string[] | undefined;
|
|
20382
|
+
applyToHomeChargingOwner?: boolean | undefined;
|
|
20383
|
+
applyToHomeChargingSharedUsers?: boolean | undefined;
|
|
20290
20384
|
applyToUserGroupIds?: number[] | undefined;
|
|
20291
20385
|
applyToUsersWithSubscriptions?: number[] | undefined;
|
|
20292
20386
|
applyToAuthorizationMethods?: ("mac_address" | "id_tag" | "user_device" | "plug_and_charge" | "plug_and_charge_iso15118")[] | undefined;
|
|
@@ -20344,6 +20438,8 @@ export declare const tariffUpdateBody: z.ZodObject<{
|
|
|
20344
20438
|
applyToAdHocOperatorIds?: number[] | undefined;
|
|
20345
20439
|
applyToUsersOfPartners?: number[] | undefined;
|
|
20346
20440
|
applyToUsersWithGroups?: string[] | undefined;
|
|
20441
|
+
applyToHomeChargingOwner?: boolean | undefined;
|
|
20442
|
+
applyToHomeChargingSharedUsers?: boolean | undefined;
|
|
20347
20443
|
applyToUserGroupIds?: number[] | undefined;
|
|
20348
20444
|
applyToUsersWithSubscriptions?: number[] | undefined;
|
|
20349
20445
|
applyToAuthorizationMethods?: ("mac_address" | "id_tag" | "user_device" | "plug_and_charge" | "plug_and_charge_iso15118")[] | undefined;
|
|
@@ -20530,6 +20626,8 @@ export declare const tariffUpdateBody: z.ZodObject<{
|
|
|
20530
20626
|
applyToAdHocOperatorIds?: number[] | undefined;
|
|
20531
20627
|
applyToUsersOfPartners?: number[] | undefined;
|
|
20532
20628
|
applyToUsersWithGroups?: string[] | undefined;
|
|
20629
|
+
applyToHomeChargingOwner?: boolean | undefined;
|
|
20630
|
+
applyToHomeChargingSharedUsers?: boolean | undefined;
|
|
20533
20631
|
applyToUserGroupIds?: number[] | undefined;
|
|
20534
20632
|
applyToUsersWithSubscriptions?: number[] | undefined;
|
|
20535
20633
|
applyToAuthorizationMethods?: ("mac_address" | "id_tag" | "user_device" | "plug_and_charge" | "plug_and_charge_iso15118")[] | undefined;
|
|
@@ -21370,6 +21468,8 @@ export declare const tariffPartialUpdateBody: z.ZodObject<{
|
|
|
21370
21468
|
applyToAdHocOperatorIds: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
|
|
21371
21469
|
applyToUsersOfPartners: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
|
|
21372
21470
|
applyToUsersWithGroups: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
21471
|
+
applyToHomeChargingOwner: z.ZodOptional<z.ZodBoolean>;
|
|
21472
|
+
applyToHomeChargingSharedUsers: z.ZodOptional<z.ZodBoolean>;
|
|
21373
21473
|
applyToUserGroupIds: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
|
|
21374
21474
|
applyToUsersWithSubscriptions: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
|
|
21375
21475
|
applyToAuthorizationMethods: z.ZodOptional<z.ZodArray<z.ZodEnum<["id_tag", "mac_address", "user_device", "plug_and_charge", "plug_and_charge_iso15118"]>, "many">>;
|
|
@@ -21388,6 +21488,8 @@ export declare const tariffPartialUpdateBody: z.ZodObject<{
|
|
|
21388
21488
|
applyToAdHocOperatorIds?: number[] | undefined;
|
|
21389
21489
|
applyToUsersOfPartners?: number[] | undefined;
|
|
21390
21490
|
applyToUsersWithGroups?: string[] | undefined;
|
|
21491
|
+
applyToHomeChargingOwner?: boolean | undefined;
|
|
21492
|
+
applyToHomeChargingSharedUsers?: boolean | undefined;
|
|
21391
21493
|
applyToUserGroupIds?: number[] | undefined;
|
|
21392
21494
|
applyToUsersWithSubscriptions?: number[] | undefined;
|
|
21393
21495
|
applyToAuthorizationMethods?: ("mac_address" | "id_tag" | "user_device" | "plug_and_charge" | "plug_and_charge_iso15118")[] | undefined;
|
|
@@ -21404,6 +21506,8 @@ export declare const tariffPartialUpdateBody: z.ZodObject<{
|
|
|
21404
21506
|
applyToAdHocOperatorIds?: number[] | undefined;
|
|
21405
21507
|
applyToUsersOfPartners?: number[] | undefined;
|
|
21406
21508
|
applyToUsersWithGroups?: string[] | undefined;
|
|
21509
|
+
applyToHomeChargingOwner?: boolean | undefined;
|
|
21510
|
+
applyToHomeChargingSharedUsers?: boolean | undefined;
|
|
21407
21511
|
applyToUserGroupIds?: number[] | undefined;
|
|
21408
21512
|
applyToUsersWithSubscriptions?: number[] | undefined;
|
|
21409
21513
|
applyToAuthorizationMethods?: ("mac_address" | "id_tag" | "user_device" | "plug_and_charge" | "plug_and_charge_iso15118")[] | undefined;
|
|
@@ -21459,6 +21563,8 @@ export declare const tariffPartialUpdateBody: z.ZodObject<{
|
|
|
21459
21563
|
applyToAdHocOperatorIds?: number[] | undefined;
|
|
21460
21564
|
applyToUsersOfPartners?: number[] | undefined;
|
|
21461
21565
|
applyToUsersWithGroups?: string[] | undefined;
|
|
21566
|
+
applyToHomeChargingOwner?: boolean | undefined;
|
|
21567
|
+
applyToHomeChargingSharedUsers?: boolean | undefined;
|
|
21462
21568
|
applyToUserGroupIds?: number[] | undefined;
|
|
21463
21569
|
applyToUsersWithSubscriptions?: number[] | undefined;
|
|
21464
21570
|
applyToAuthorizationMethods?: ("mac_address" | "id_tag" | "user_device" | "plug_and_charge" | "plug_and_charge_iso15118")[] | undefined;
|
|
@@ -21644,6 +21750,8 @@ export declare const tariffPartialUpdateBody: z.ZodObject<{
|
|
|
21644
21750
|
applyToAdHocOperatorIds?: number[] | undefined;
|
|
21645
21751
|
applyToUsersOfPartners?: number[] | undefined;
|
|
21646
21752
|
applyToUsersWithGroups?: string[] | undefined;
|
|
21753
|
+
applyToHomeChargingOwner?: boolean | undefined;
|
|
21754
|
+
applyToHomeChargingSharedUsers?: boolean | undefined;
|
|
21647
21755
|
applyToUserGroupIds?: number[] | undefined;
|
|
21648
21756
|
applyToUsersWithSubscriptions?: number[] | undefined;
|
|
21649
21757
|
applyToAuthorizationMethods?: ("mac_address" | "id_tag" | "user_device" | "plug_and_charge" | "plug_and_charge_iso15118")[] | undefined;
|
|
@@ -24722,7 +24830,7 @@ export declare const userCreateV1_1Body: z.ZodObject<{
|
|
|
24722
24830
|
company_postal_code: z.ZodOptional<z.ZodString>;
|
|
24723
24831
|
company_country: z.ZodOptional<z.ZodEnum<["AF", "AX", "AL", "DZ", "AS", "AD", "AO", "AI", "AQ", "AG", "AR", "AM", "AW", "AU", "AT", "AZ", "BS", "BH", "BD", "BB", "BY", "BE", "BZ", "BJ", "BM", "BT", "BO", "BQ", "BA", "BW", "BV", "BR", "IO", "BN", "BG", "BF", "BI", "KH", "CM", "CA", "CV", "KY", "CF", "TD", "CL", "CN", "CX", "CC", "CO", "KM", "CG", "CD", "CK", "CR", "CI", "HR", "CU", "CW", "CY", "CZ", "DK", "DJ", "DM", "DO", "EC", "EG", "SV", "GQ", "ER", "EE", "ET", "FK", "FO", "FJ", "FI", "FR", "GF", "PF", "TF", "GA", "GM", "GE", "DE", "GH", "GI", "GR", "GL", "GD", "GP", "GU", "GT", "GG", "GN", "GW", "GY", "HT", "HM", "VA", "HN", "HK", "HU", "IS", "IN", "ID", "IR", "IQ", "IE", "IM", "IL", "IT", "JM", "JP", "JE", "JO", "KZ", "KE", "KI", "KP", "KR", "XK", "KW", "KG", "LA", "LV", "LB", "LS", "LR", "LY", "LI", "LT", "LU", "MO", "MK", "MG", "MW", "MY", "MV", "ML", "MT", "MH", "MQ", "MR", "MU", "YT", "MX", "FM", "MD", "MC", "MN", "ME", "MS", "MA", "MZ", "MM", "NA", "NR", "NP", "NL", "NC", "NZ", "NI", "NE", "NG", "NU", "NF", "MP", "NO", "OM", "PK", "PW", "PS", "PA", "PG", "PY", "PE", "PH", "PN", "PL", "PT", "PR", "QA", "RE", "RO", "RU", "RW", "BL", "SH", "KN", "LC", "MF", "PM", "VC", "WS", "SM", "ST", "SA", "SN", "RS", "SC", "SL", "SG", "SX", "SK", "SI", "SB", "SO", "ZA", "GS", "SS", "ES", "LK", "SD", "SR", "SJ", "SZ", "SE", "CH", "SY", "TW", "TJ", "TZ", "TH", "TL", "TG", "TK", "TO", "TT", "TN", "TR", "TM", "TC", "TV", "UG", "UA", "AE", "GB", "US", "UM", "UY", "UZ", "VU", "VE", "VN", "VG", "VI", "WF", "EH", "YE", "ZM", "ZW"]>>;
|
|
24724
24832
|
company_receipts_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
24725
|
-
locale: z.ZodOptional<z.ZodEnum<["en", "bg", "mk", "el", "zh-CN", "zh-HK", "zh-TW", "pt", "sl", "hr", "it", "de", "hu", "fi", "is", "sv-SE", "da-DK", "nb-NO", "tr-TR", "es-ES", "ar", "ary", "he", "ta", "ms", "cy", "sr", "fr", "fr-MA", "ro", "lt", "uk", "ru", "nl", "ca-ES", "id", "ar-EG", "pl", "lo", "th", "sq-XK", "ga-IE", "bs", "ja", "ko", "cs", "lv", "et", "az", "ka"]>>;
|
|
24833
|
+
locale: z.ZodOptional<z.ZodEnum<["en", "bg", "mk", "el", "zh-CN", "zh-HK", "zh-TW", "pt", "sl", "hr", "it", "de", "hu", "fi", "is", "sv-SE", "da-DK", "nb-NO", "tr-TR", "es-ES", "ar", "ary", "he", "ta", "ms", "cy", "sr", "fr", "fr-MA", "ro", "lt", "uk", "ru", "nl", "ca-ES", "id", "ar-EG", "pl", "lo", "th", "sq-XK", "ga-IE", "bs", "ja", "ko-KR", "cs", "lv", "et", "az", "ka"]>>;
|
|
24726
24834
|
userGroupIds: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
|
|
24727
24835
|
externalId: z.ZodOptional<z.ZodString>;
|
|
24728
24836
|
options: z.ZodOptional<z.ZodObject<{
|
|
@@ -24766,7 +24874,7 @@ export declare const userCreateV1_1Body: z.ZodObject<{
|
|
|
24766
24874
|
externalId?: string | undefined;
|
|
24767
24875
|
operatorId?: number | undefined;
|
|
24768
24876
|
partnerId?: number | undefined;
|
|
24769
|
-
locale?: "is" | "lt" | "id" | "en" | "bg" | "mk" | "el" | "zh-CN" | "zh-HK" | "zh-TW" | "pt" | "sl" | "hr" | "it" | "de" | "hu" | "fi" | "sv-SE" | "da-DK" | "nb-NO" | "tr-TR" | "es-ES" | "ar" | "ary" | "he" | "ta" | "ms" | "cy" | "sr" | "fr" | "fr-MA" | "ro" | "uk" | "ru" | "nl" | "ca-ES" | "ar-EG" | "pl" | "lo" | "th" | "sq-XK" | "ga-IE" | "bs" | "ja" | "ko" | "cs" | "lv" | "et" | "az" | "ka" | undefined;
|
|
24877
|
+
locale?: "is" | "lt" | "id" | "en" | "bg" | "mk" | "el" | "zh-CN" | "zh-HK" | "zh-TW" | "pt" | "sl" | "hr" | "it" | "de" | "hu" | "fi" | "sv-SE" | "da-DK" | "nb-NO" | "tr-TR" | "es-ES" | "ar" | "ary" | "he" | "ta" | "ms" | "cy" | "sr" | "fr" | "fr-MA" | "ro" | "uk" | "ru" | "nl" | "ca-ES" | "ar-EG" | "pl" | "lo" | "th" | "sq-XK" | "ga-IE" | "bs" | "ja" | "ko-KR" | "cs" | "lv" | "et" | "az" | "ka" | undefined;
|
|
24770
24878
|
country?: "AF" | "AX" | "AL" | "DZ" | "AS" | "AD" | "AO" | "AI" | "AQ" | "AG" | "AR" | "AM" | "AW" | "AU" | "AT" | "AZ" | "BS" | "BH" | "BD" | "BB" | "BY" | "BE" | "BZ" | "BJ" | "BM" | "BT" | "BO" | "BQ" | "BA" | "BW" | "BV" | "BR" | "IO" | "BN" | "BG" | "BF" | "BI" | "KH" | "CM" | "CA" | "CV" | "KY" | "CF" | "TD" | "CL" | "CN" | "CX" | "CC" | "CO" | "KM" | "CG" | "CD" | "CK" | "CR" | "CI" | "HR" | "CU" | "CW" | "CY" | "CZ" | "DK" | "DJ" | "DM" | "DO" | "EC" | "EG" | "SV" | "GQ" | "ER" | "EE" | "ET" | "FK" | "FO" | "FJ" | "FI" | "FR" | "GF" | "PF" | "TF" | "GA" | "GM" | "GE" | "DE" | "GH" | "GI" | "GR" | "GL" | "GD" | "GP" | "GU" | "GT" | "GG" | "GN" | "GW" | "GY" | "HT" | "HM" | "VA" | "HN" | "HK" | "HU" | "IS" | "IN" | "ID" | "IR" | "IQ" | "IE" | "IM" | "IL" | "IT" | "JM" | "JP" | "JE" | "JO" | "KZ" | "KE" | "KI" | "KP" | "KR" | "XK" | "KW" | "KG" | "LA" | "LV" | "LB" | "LS" | "LR" | "LY" | "LI" | "LT" | "LU" | "MO" | "MK" | "MG" | "MW" | "MY" | "MV" | "ML" | "MT" | "MH" | "MQ" | "MR" | "MU" | "YT" | "MX" | "FM" | "MD" | "MC" | "MN" | "ME" | "MS" | "MA" | "MZ" | "MM" | "NA" | "NR" | "NP" | "NL" | "NC" | "NZ" | "NI" | "NE" | "NG" | "NU" | "NF" | "MP" | "NO" | "OM" | "PK" | "PW" | "PS" | "PA" | "PG" | "PY" | "PE" | "PH" | "PN" | "PL" | "PT" | "PR" | "QA" | "RE" | "RO" | "RU" | "RW" | "BL" | "SH" | "KN" | "LC" | "MF" | "PM" | "VC" | "WS" | "SM" | "ST" | "SA" | "SN" | "RS" | "SC" | "SL" | "SG" | "SX" | "SK" | "SI" | "SB" | "SO" | "ZA" | "GS" | "SS" | "ES" | "LK" | "SD" | "SR" | "SJ" | "SZ" | "SE" | "CH" | "SY" | "TW" | "TJ" | "TZ" | "TH" | "TL" | "TG" | "TK" | "TO" | "TT" | "TN" | "TR" | "TM" | "TC" | "TV" | "UG" | "UA" | "AE" | "GB" | "US" | "UM" | "UY" | "UZ" | "VU" | "VE" | "VN" | "VG" | "VI" | "WF" | "EH" | "YE" | "ZM" | "ZW" | undefined;
|
|
24771
24879
|
city?: string | undefined;
|
|
24772
24880
|
address?: string | undefined;
|
|
@@ -24808,7 +24916,7 @@ export declare const userCreateV1_1Body: z.ZodObject<{
|
|
|
24808
24916
|
externalId?: string | undefined;
|
|
24809
24917
|
operatorId?: number | undefined;
|
|
24810
24918
|
partnerId?: number | undefined;
|
|
24811
|
-
locale?: "is" | "lt" | "id" | "en" | "bg" | "mk" | "el" | "zh-CN" | "zh-HK" | "zh-TW" | "pt" | "sl" | "hr" | "it" | "de" | "hu" | "fi" | "sv-SE" | "da-DK" | "nb-NO" | "tr-TR" | "es-ES" | "ar" | "ary" | "he" | "ta" | "ms" | "cy" | "sr" | "fr" | "fr-MA" | "ro" | "uk" | "ru" | "nl" | "ca-ES" | "ar-EG" | "pl" | "lo" | "th" | "sq-XK" | "ga-IE" | "bs" | "ja" | "ko" | "cs" | "lv" | "et" | "az" | "ka" | undefined;
|
|
24919
|
+
locale?: "is" | "lt" | "id" | "en" | "bg" | "mk" | "el" | "zh-CN" | "zh-HK" | "zh-TW" | "pt" | "sl" | "hr" | "it" | "de" | "hu" | "fi" | "sv-SE" | "da-DK" | "nb-NO" | "tr-TR" | "es-ES" | "ar" | "ary" | "he" | "ta" | "ms" | "cy" | "sr" | "fr" | "fr-MA" | "ro" | "uk" | "ru" | "nl" | "ca-ES" | "ar-EG" | "pl" | "lo" | "th" | "sq-XK" | "ga-IE" | "bs" | "ja" | "ko-KR" | "cs" | "lv" | "et" | "az" | "ka" | undefined;
|
|
24812
24920
|
country?: "AF" | "AX" | "AL" | "DZ" | "AS" | "AD" | "AO" | "AI" | "AQ" | "AG" | "AR" | "AM" | "AW" | "AU" | "AT" | "AZ" | "BS" | "BH" | "BD" | "BB" | "BY" | "BE" | "BZ" | "BJ" | "BM" | "BT" | "BO" | "BQ" | "BA" | "BW" | "BV" | "BR" | "IO" | "BN" | "BG" | "BF" | "BI" | "KH" | "CM" | "CA" | "CV" | "KY" | "CF" | "TD" | "CL" | "CN" | "CX" | "CC" | "CO" | "KM" | "CG" | "CD" | "CK" | "CR" | "CI" | "HR" | "CU" | "CW" | "CY" | "CZ" | "DK" | "DJ" | "DM" | "DO" | "EC" | "EG" | "SV" | "GQ" | "ER" | "EE" | "ET" | "FK" | "FO" | "FJ" | "FI" | "FR" | "GF" | "PF" | "TF" | "GA" | "GM" | "GE" | "DE" | "GH" | "GI" | "GR" | "GL" | "GD" | "GP" | "GU" | "GT" | "GG" | "GN" | "GW" | "GY" | "HT" | "HM" | "VA" | "HN" | "HK" | "HU" | "IS" | "IN" | "ID" | "IR" | "IQ" | "IE" | "IM" | "IL" | "IT" | "JM" | "JP" | "JE" | "JO" | "KZ" | "KE" | "KI" | "KP" | "KR" | "XK" | "KW" | "KG" | "LA" | "LV" | "LB" | "LS" | "LR" | "LY" | "LI" | "LT" | "LU" | "MO" | "MK" | "MG" | "MW" | "MY" | "MV" | "ML" | "MT" | "MH" | "MQ" | "MR" | "MU" | "YT" | "MX" | "FM" | "MD" | "MC" | "MN" | "ME" | "MS" | "MA" | "MZ" | "MM" | "NA" | "NR" | "NP" | "NL" | "NC" | "NZ" | "NI" | "NE" | "NG" | "NU" | "NF" | "MP" | "NO" | "OM" | "PK" | "PW" | "PS" | "PA" | "PG" | "PY" | "PE" | "PH" | "PN" | "PL" | "PT" | "PR" | "QA" | "RE" | "RO" | "RU" | "RW" | "BL" | "SH" | "KN" | "LC" | "MF" | "PM" | "VC" | "WS" | "SM" | "ST" | "SA" | "SN" | "RS" | "SC" | "SL" | "SG" | "SX" | "SK" | "SI" | "SB" | "SO" | "ZA" | "GS" | "SS" | "ES" | "LK" | "SD" | "SR" | "SJ" | "SZ" | "SE" | "CH" | "SY" | "TW" | "TJ" | "TZ" | "TH" | "TL" | "TG" | "TK" | "TO" | "TT" | "TN" | "TR" | "TM" | "TC" | "TV" | "UG" | "UA" | "AE" | "GB" | "US" | "UM" | "UY" | "UZ" | "VU" | "VE" | "VN" | "VG" | "VI" | "WF" | "EH" | "YE" | "ZM" | "ZW" | undefined;
|
|
24813
24921
|
city?: string | undefined;
|
|
24814
24922
|
address?: string | undefined;
|
|
@@ -24864,7 +24972,7 @@ export declare const userUpdateV1_1Body: z.ZodObject<{
|
|
|
24864
24972
|
company_postal_code: z.ZodOptional<z.ZodString>;
|
|
24865
24973
|
company_country: z.ZodOptional<z.ZodEnum<["AF", "AX", "AL", "DZ", "AS", "AD", "AO", "AI", "AQ", "AG", "AR", "AM", "AW", "AU", "AT", "AZ", "BS", "BH", "BD", "BB", "BY", "BE", "BZ", "BJ", "BM", "BT", "BO", "BQ", "BA", "BW", "BV", "BR", "IO", "BN", "BG", "BF", "BI", "KH", "CM", "CA", "CV", "KY", "CF", "TD", "CL", "CN", "CX", "CC", "CO", "KM", "CG", "CD", "CK", "CR", "CI", "HR", "CU", "CW", "CY", "CZ", "DK", "DJ", "DM", "DO", "EC", "EG", "SV", "GQ", "ER", "EE", "ET", "FK", "FO", "FJ", "FI", "FR", "GF", "PF", "TF", "GA", "GM", "GE", "DE", "GH", "GI", "GR", "GL", "GD", "GP", "GU", "GT", "GG", "GN", "GW", "GY", "HT", "HM", "VA", "HN", "HK", "HU", "IS", "IN", "ID", "IR", "IQ", "IE", "IM", "IL", "IT", "JM", "JP", "JE", "JO", "KZ", "KE", "KI", "KP", "KR", "XK", "KW", "KG", "LA", "LV", "LB", "LS", "LR", "LY", "LI", "LT", "LU", "MO", "MK", "MG", "MW", "MY", "MV", "ML", "MT", "MH", "MQ", "MR", "MU", "YT", "MX", "FM", "MD", "MC", "MN", "ME", "MS", "MA", "MZ", "MM", "NA", "NR", "NP", "NL", "NC", "NZ", "NI", "NE", "NG", "NU", "NF", "MP", "NO", "OM", "PK", "PW", "PS", "PA", "PG", "PY", "PE", "PH", "PN", "PL", "PT", "PR", "QA", "RE", "RO", "RU", "RW", "BL", "SH", "KN", "LC", "MF", "PM", "VC", "WS", "SM", "ST", "SA", "SN", "RS", "SC", "SL", "SG", "SX", "SK", "SI", "SB", "SO", "ZA", "GS", "SS", "ES", "LK", "SD", "SR", "SJ", "SZ", "SE", "CH", "SY", "TW", "TJ", "TZ", "TH", "TL", "TG", "TK", "TO", "TT", "TN", "TR", "TM", "TC", "TV", "UG", "UA", "AE", "GB", "US", "UM", "UY", "UZ", "VU", "VE", "VN", "VG", "VI", "WF", "EH", "YE", "ZM", "ZW"]>>;
|
|
24866
24974
|
company_receipts_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
24867
|
-
locale: z.ZodOptional<z.ZodEnum<["en", "bg", "mk", "el", "zh-CN", "zh-HK", "zh-TW", "pt", "sl", "hr", "it", "de", "hu", "fi", "is", "sv-SE", "da-DK", "nb-NO", "tr-TR", "es-ES", "ar", "ary", "he", "ta", "ms", "cy", "sr", "fr", "fr-MA", "ro", "lt", "uk", "ru", "nl", "ca-ES", "id", "ar-EG", "pl", "lo", "th", "sq-XK", "ga-IE", "bs", "ja", "ko", "cs", "lv", "et", "az", "ka"]>>;
|
|
24975
|
+
locale: z.ZodOptional<z.ZodEnum<["en", "bg", "mk", "el", "zh-CN", "zh-HK", "zh-TW", "pt", "sl", "hr", "it", "de", "hu", "fi", "is", "sv-SE", "da-DK", "nb-NO", "tr-TR", "es-ES", "ar", "ary", "he", "ta", "ms", "cy", "sr", "fr", "fr-MA", "ro", "lt", "uk", "ru", "nl", "ca-ES", "id", "ar-EG", "pl", "lo", "th", "sq-XK", "ga-IE", "bs", "ja", "ko-KR", "cs", "lv", "et", "az", "ka"]>>;
|
|
24868
24976
|
userGroupIds: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
|
|
24869
24977
|
externalId: z.ZodOptional<z.ZodString>;
|
|
24870
24978
|
options: z.ZodOptional<z.ZodObject<{
|
|
@@ -24903,7 +25011,7 @@ export declare const userUpdateV1_1Body: z.ZodObject<{
|
|
|
24903
25011
|
email?: string | undefined;
|
|
24904
25012
|
lastUpdatedAt?: string | undefined;
|
|
24905
25013
|
externalId?: string | undefined;
|
|
24906
|
-
locale?: "is" | "lt" | "id" | "en" | "bg" | "mk" | "el" | "zh-CN" | "zh-HK" | "zh-TW" | "pt" | "sl" | "hr" | "it" | "de" | "hu" | "fi" | "sv-SE" | "da-DK" | "nb-NO" | "tr-TR" | "es-ES" | "ar" | "ary" | "he" | "ta" | "ms" | "cy" | "sr" | "fr" | "fr-MA" | "ro" | "uk" | "ru" | "nl" | "ca-ES" | "ar-EG" | "pl" | "lo" | "th" | "sq-XK" | "ga-IE" | "bs" | "ja" | "ko" | "cs" | "lv" | "et" | "az" | "ka" | undefined;
|
|
25014
|
+
locale?: "is" | "lt" | "id" | "en" | "bg" | "mk" | "el" | "zh-CN" | "zh-HK" | "zh-TW" | "pt" | "sl" | "hr" | "it" | "de" | "hu" | "fi" | "sv-SE" | "da-DK" | "nb-NO" | "tr-TR" | "es-ES" | "ar" | "ary" | "he" | "ta" | "ms" | "cy" | "sr" | "fr" | "fr-MA" | "ro" | "uk" | "ru" | "nl" | "ca-ES" | "ar-EG" | "pl" | "lo" | "th" | "sq-XK" | "ga-IE" | "bs" | "ja" | "ko-KR" | "cs" | "lv" | "et" | "az" | "ka" | undefined;
|
|
24907
25015
|
country?: "AF" | "AX" | "AL" | "DZ" | "AS" | "AD" | "AO" | "AI" | "AQ" | "AG" | "AR" | "AM" | "AW" | "AU" | "AT" | "AZ" | "BS" | "BH" | "BD" | "BB" | "BY" | "BE" | "BZ" | "BJ" | "BM" | "BT" | "BO" | "BQ" | "BA" | "BW" | "BV" | "BR" | "IO" | "BN" | "BG" | "BF" | "BI" | "KH" | "CM" | "CA" | "CV" | "KY" | "CF" | "TD" | "CL" | "CN" | "CX" | "CC" | "CO" | "KM" | "CG" | "CD" | "CK" | "CR" | "CI" | "HR" | "CU" | "CW" | "CY" | "CZ" | "DK" | "DJ" | "DM" | "DO" | "EC" | "EG" | "SV" | "GQ" | "ER" | "EE" | "ET" | "FK" | "FO" | "FJ" | "FI" | "FR" | "GF" | "PF" | "TF" | "GA" | "GM" | "GE" | "DE" | "GH" | "GI" | "GR" | "GL" | "GD" | "GP" | "GU" | "GT" | "GG" | "GN" | "GW" | "GY" | "HT" | "HM" | "VA" | "HN" | "HK" | "HU" | "IS" | "IN" | "ID" | "IR" | "IQ" | "IE" | "IM" | "IL" | "IT" | "JM" | "JP" | "JE" | "JO" | "KZ" | "KE" | "KI" | "KP" | "KR" | "XK" | "KW" | "KG" | "LA" | "LV" | "LB" | "LS" | "LR" | "LY" | "LI" | "LT" | "LU" | "MO" | "MK" | "MG" | "MW" | "MY" | "MV" | "ML" | "MT" | "MH" | "MQ" | "MR" | "MU" | "YT" | "MX" | "FM" | "MD" | "MC" | "MN" | "ME" | "MS" | "MA" | "MZ" | "MM" | "NA" | "NR" | "NP" | "NL" | "NC" | "NZ" | "NI" | "NE" | "NG" | "NU" | "NF" | "MP" | "NO" | "OM" | "PK" | "PW" | "PS" | "PA" | "PG" | "PY" | "PE" | "PH" | "PN" | "PL" | "PT" | "PR" | "QA" | "RE" | "RO" | "RU" | "RW" | "BL" | "SH" | "KN" | "LC" | "MF" | "PM" | "VC" | "WS" | "SM" | "ST" | "SA" | "SN" | "RS" | "SC" | "SL" | "SG" | "SX" | "SK" | "SI" | "SB" | "SO" | "ZA" | "GS" | "SS" | "ES" | "LK" | "SD" | "SR" | "SJ" | "SZ" | "SE" | "CH" | "SY" | "TW" | "TJ" | "TZ" | "TH" | "TL" | "TG" | "TK" | "TO" | "TT" | "TN" | "TR" | "TM" | "TC" | "TV" | "UG" | "UA" | "AE" | "GB" | "US" | "UM" | "UY" | "UZ" | "VU" | "VE" | "VN" | "VG" | "VI" | "WF" | "EH" | "YE" | "ZM" | "ZW" | undefined;
|
|
24908
25016
|
city?: string | undefined;
|
|
24909
25017
|
address?: string | undefined;
|
|
@@ -24942,7 +25050,7 @@ export declare const userUpdateV1_1Body: z.ZodObject<{
|
|
|
24942
25050
|
email?: string | undefined;
|
|
24943
25051
|
lastUpdatedAt?: string | undefined;
|
|
24944
25052
|
externalId?: string | undefined;
|
|
24945
|
-
locale?: "is" | "lt" | "id" | "en" | "bg" | "mk" | "el" | "zh-CN" | "zh-HK" | "zh-TW" | "pt" | "sl" | "hr" | "it" | "de" | "hu" | "fi" | "sv-SE" | "da-DK" | "nb-NO" | "tr-TR" | "es-ES" | "ar" | "ary" | "he" | "ta" | "ms" | "cy" | "sr" | "fr" | "fr-MA" | "ro" | "uk" | "ru" | "nl" | "ca-ES" | "ar-EG" | "pl" | "lo" | "th" | "sq-XK" | "ga-IE" | "bs" | "ja" | "ko" | "cs" | "lv" | "et" | "az" | "ka" | undefined;
|
|
25053
|
+
locale?: "is" | "lt" | "id" | "en" | "bg" | "mk" | "el" | "zh-CN" | "zh-HK" | "zh-TW" | "pt" | "sl" | "hr" | "it" | "de" | "hu" | "fi" | "sv-SE" | "da-DK" | "nb-NO" | "tr-TR" | "es-ES" | "ar" | "ary" | "he" | "ta" | "ms" | "cy" | "sr" | "fr" | "fr-MA" | "ro" | "uk" | "ru" | "nl" | "ca-ES" | "ar-EG" | "pl" | "lo" | "th" | "sq-XK" | "ga-IE" | "bs" | "ja" | "ko-KR" | "cs" | "lv" | "et" | "az" | "ka" | undefined;
|
|
24946
25054
|
country?: "AF" | "AX" | "AL" | "DZ" | "AS" | "AD" | "AO" | "AI" | "AQ" | "AG" | "AR" | "AM" | "AW" | "AU" | "AT" | "AZ" | "BS" | "BH" | "BD" | "BB" | "BY" | "BE" | "BZ" | "BJ" | "BM" | "BT" | "BO" | "BQ" | "BA" | "BW" | "BV" | "BR" | "IO" | "BN" | "BG" | "BF" | "BI" | "KH" | "CM" | "CA" | "CV" | "KY" | "CF" | "TD" | "CL" | "CN" | "CX" | "CC" | "CO" | "KM" | "CG" | "CD" | "CK" | "CR" | "CI" | "HR" | "CU" | "CW" | "CY" | "CZ" | "DK" | "DJ" | "DM" | "DO" | "EC" | "EG" | "SV" | "GQ" | "ER" | "EE" | "ET" | "FK" | "FO" | "FJ" | "FI" | "FR" | "GF" | "PF" | "TF" | "GA" | "GM" | "GE" | "DE" | "GH" | "GI" | "GR" | "GL" | "GD" | "GP" | "GU" | "GT" | "GG" | "GN" | "GW" | "GY" | "HT" | "HM" | "VA" | "HN" | "HK" | "HU" | "IS" | "IN" | "ID" | "IR" | "IQ" | "IE" | "IM" | "IL" | "IT" | "JM" | "JP" | "JE" | "JO" | "KZ" | "KE" | "KI" | "KP" | "KR" | "XK" | "KW" | "KG" | "LA" | "LV" | "LB" | "LS" | "LR" | "LY" | "LI" | "LT" | "LU" | "MO" | "MK" | "MG" | "MW" | "MY" | "MV" | "ML" | "MT" | "MH" | "MQ" | "MR" | "MU" | "YT" | "MX" | "FM" | "MD" | "MC" | "MN" | "ME" | "MS" | "MA" | "MZ" | "MM" | "NA" | "NR" | "NP" | "NL" | "NC" | "NZ" | "NI" | "NE" | "NG" | "NU" | "NF" | "MP" | "NO" | "OM" | "PK" | "PW" | "PS" | "PA" | "PG" | "PY" | "PE" | "PH" | "PN" | "PL" | "PT" | "PR" | "QA" | "RE" | "RO" | "RU" | "RW" | "BL" | "SH" | "KN" | "LC" | "MF" | "PM" | "VC" | "WS" | "SM" | "ST" | "SA" | "SN" | "RS" | "SC" | "SL" | "SG" | "SX" | "SK" | "SI" | "SB" | "SO" | "ZA" | "GS" | "SS" | "ES" | "LK" | "SD" | "SR" | "SJ" | "SZ" | "SE" | "CH" | "SY" | "TW" | "TJ" | "TZ" | "TH" | "TL" | "TG" | "TK" | "TO" | "TT" | "TN" | "TR" | "TM" | "TC" | "TV" | "UG" | "UA" | "AE" | "GB" | "US" | "UM" | "UY" | "UZ" | "VU" | "VE" | "VN" | "VG" | "VI" | "WF" | "EH" | "YE" | "ZM" | "ZW" | undefined;
|
|
24947
25055
|
city?: string | undefined;
|
|
24948
25056
|
address?: string | undefined;
|