@seamapi/types 1.725.0 → 1.726.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/connect.cjs +458 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +480 -3
- package/dist/index.cjs +458 -0
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/customer/business-vertical.d.ts +1 -1
- package/lib/seam/connect/models/customer/business-vertical.js +1 -0
- package/lib/seam/connect/models/customer/business-vertical.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +408 -0
- package/lib/seam/connect/openapi.js +458 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +72 -3
- package/package.json +2 -2
- package/src/lib/seam/connect/models/customer/business-vertical.ts +1 -0
- package/src/lib/seam/connect/openapi.ts +500 -0
- package/src/lib/seam/connect/route-types.ts +79 -0
package/dist/connect.d.cts
CHANGED
|
@@ -113035,6 +113035,113 @@ declare const _default: {
|
|
|
113035
113035
|
'x-undocumented': string;
|
|
113036
113036
|
};
|
|
113037
113037
|
};
|
|
113038
|
+
'/seam/customer/v1/settings/business_verticals/list': {
|
|
113039
|
+
get: {
|
|
113040
|
+
description: string;
|
|
113041
|
+
operationId: string;
|
|
113042
|
+
parameters: never[];
|
|
113043
|
+
responses: {
|
|
113044
|
+
200: {
|
|
113045
|
+
content: {
|
|
113046
|
+
'application/json': {
|
|
113047
|
+
schema: {
|
|
113048
|
+
properties: {
|
|
113049
|
+
business_verticals: {
|
|
113050
|
+
items: {
|
|
113051
|
+
description: string;
|
|
113052
|
+
enum: string[];
|
|
113053
|
+
type: string;
|
|
113054
|
+
};
|
|
113055
|
+
type: string;
|
|
113056
|
+
};
|
|
113057
|
+
ok: {
|
|
113058
|
+
type: string;
|
|
113059
|
+
};
|
|
113060
|
+
};
|
|
113061
|
+
required: string[];
|
|
113062
|
+
type: string;
|
|
113063
|
+
};
|
|
113064
|
+
};
|
|
113065
|
+
};
|
|
113066
|
+
description: string;
|
|
113067
|
+
};
|
|
113068
|
+
400: {
|
|
113069
|
+
description: string;
|
|
113070
|
+
};
|
|
113071
|
+
401: {
|
|
113072
|
+
description: string;
|
|
113073
|
+
};
|
|
113074
|
+
};
|
|
113075
|
+
security: {
|
|
113076
|
+
console_session_with_workspace: never[];
|
|
113077
|
+
}[];
|
|
113078
|
+
summary: string;
|
|
113079
|
+
tags: never[];
|
|
113080
|
+
'x-fern-sdk-group-name': string[];
|
|
113081
|
+
'x-fern-sdk-method-name': string;
|
|
113082
|
+
'x-fern-sdk-return-value': string;
|
|
113083
|
+
'x-response-key': string;
|
|
113084
|
+
'x-title': string;
|
|
113085
|
+
'x-undocumented': string;
|
|
113086
|
+
};
|
|
113087
|
+
post: {
|
|
113088
|
+
description: string;
|
|
113089
|
+
operationId: string;
|
|
113090
|
+
requestBody: {
|
|
113091
|
+
content: {
|
|
113092
|
+
'application/json': {
|
|
113093
|
+
schema: {
|
|
113094
|
+
properties: {};
|
|
113095
|
+
type: string;
|
|
113096
|
+
};
|
|
113097
|
+
};
|
|
113098
|
+
};
|
|
113099
|
+
};
|
|
113100
|
+
responses: {
|
|
113101
|
+
200: {
|
|
113102
|
+
content: {
|
|
113103
|
+
'application/json': {
|
|
113104
|
+
schema: {
|
|
113105
|
+
properties: {
|
|
113106
|
+
business_verticals: {
|
|
113107
|
+
items: {
|
|
113108
|
+
description: string;
|
|
113109
|
+
enum: string[];
|
|
113110
|
+
type: string;
|
|
113111
|
+
};
|
|
113112
|
+
type: string;
|
|
113113
|
+
};
|
|
113114
|
+
ok: {
|
|
113115
|
+
type: string;
|
|
113116
|
+
};
|
|
113117
|
+
};
|
|
113118
|
+
required: string[];
|
|
113119
|
+
type: string;
|
|
113120
|
+
};
|
|
113121
|
+
};
|
|
113122
|
+
};
|
|
113123
|
+
description: string;
|
|
113124
|
+
};
|
|
113125
|
+
400: {
|
|
113126
|
+
description: string;
|
|
113127
|
+
};
|
|
113128
|
+
401: {
|
|
113129
|
+
description: string;
|
|
113130
|
+
};
|
|
113131
|
+
};
|
|
113132
|
+
security: {
|
|
113133
|
+
console_session_with_workspace: never[];
|
|
113134
|
+
}[];
|
|
113135
|
+
summary: string;
|
|
113136
|
+
tags: never[];
|
|
113137
|
+
'x-fern-sdk-group-name': string[];
|
|
113138
|
+
'x-fern-sdk-method-name': string;
|
|
113139
|
+
'x-fern-sdk-return-value': string;
|
|
113140
|
+
'x-response-key': string;
|
|
113141
|
+
'x-title': string;
|
|
113142
|
+
'x-undocumented': string;
|
|
113143
|
+
};
|
|
113144
|
+
};
|
|
113038
113145
|
'/seam/customer/v1/settings/get': {
|
|
113039
113146
|
get: {
|
|
113040
113147
|
description: string;
|
|
@@ -113269,6 +113376,307 @@ declare const _default: {
|
|
|
113269
113376
|
'x-undocumented': string;
|
|
113270
113377
|
};
|
|
113271
113378
|
};
|
|
113379
|
+
'/seam/customer/v1/settings/vertical_resource_aliases/get': {
|
|
113380
|
+
get: {
|
|
113381
|
+
description: string;
|
|
113382
|
+
operationId: string;
|
|
113383
|
+
parameters: never[];
|
|
113384
|
+
responses: {
|
|
113385
|
+
200: {
|
|
113386
|
+
content: {
|
|
113387
|
+
'application/json': {
|
|
113388
|
+
schema: {
|
|
113389
|
+
properties: {
|
|
113390
|
+
ok: {
|
|
113391
|
+
type: string;
|
|
113392
|
+
};
|
|
113393
|
+
vertical_resource_aliases: {
|
|
113394
|
+
properties: {
|
|
113395
|
+
access_grant: {
|
|
113396
|
+
description: string;
|
|
113397
|
+
properties: {
|
|
113398
|
+
collection_key: {
|
|
113399
|
+
description: string;
|
|
113400
|
+
type: string;
|
|
113401
|
+
};
|
|
113402
|
+
collection_label: {
|
|
113403
|
+
description: string;
|
|
113404
|
+
type: string;
|
|
113405
|
+
};
|
|
113406
|
+
resource_key: {
|
|
113407
|
+
description: string;
|
|
113408
|
+
type: string;
|
|
113409
|
+
};
|
|
113410
|
+
resource_label: {
|
|
113411
|
+
description: string;
|
|
113412
|
+
type: string;
|
|
113413
|
+
};
|
|
113414
|
+
};
|
|
113415
|
+
required: string[];
|
|
113416
|
+
type: string;
|
|
113417
|
+
};
|
|
113418
|
+
additional_spaces: {
|
|
113419
|
+
description: string;
|
|
113420
|
+
items: {
|
|
113421
|
+
properties: {
|
|
113422
|
+
collection_key: {
|
|
113423
|
+
description: string;
|
|
113424
|
+
type: string;
|
|
113425
|
+
};
|
|
113426
|
+
collection_label: {
|
|
113427
|
+
description: string;
|
|
113428
|
+
type: string;
|
|
113429
|
+
};
|
|
113430
|
+
resource_key: {
|
|
113431
|
+
description: string;
|
|
113432
|
+
type: string;
|
|
113433
|
+
};
|
|
113434
|
+
resource_label: {
|
|
113435
|
+
description: string;
|
|
113436
|
+
type: string;
|
|
113437
|
+
};
|
|
113438
|
+
};
|
|
113439
|
+
required: string[];
|
|
113440
|
+
type: string;
|
|
113441
|
+
};
|
|
113442
|
+
type: string;
|
|
113443
|
+
};
|
|
113444
|
+
space: {
|
|
113445
|
+
description: string;
|
|
113446
|
+
properties: {
|
|
113447
|
+
collection_key: {
|
|
113448
|
+
description: string;
|
|
113449
|
+
type: string;
|
|
113450
|
+
};
|
|
113451
|
+
collection_label: {
|
|
113452
|
+
description: string;
|
|
113453
|
+
type: string;
|
|
113454
|
+
};
|
|
113455
|
+
resource_key: {
|
|
113456
|
+
description: string;
|
|
113457
|
+
type: string;
|
|
113458
|
+
};
|
|
113459
|
+
resource_label: {
|
|
113460
|
+
description: string;
|
|
113461
|
+
type: string;
|
|
113462
|
+
};
|
|
113463
|
+
};
|
|
113464
|
+
required: string[];
|
|
113465
|
+
type: string;
|
|
113466
|
+
};
|
|
113467
|
+
user_identity: {
|
|
113468
|
+
description: string;
|
|
113469
|
+
properties: {
|
|
113470
|
+
collection_key: {
|
|
113471
|
+
description: string;
|
|
113472
|
+
type: string;
|
|
113473
|
+
};
|
|
113474
|
+
collection_label: {
|
|
113475
|
+
description: string;
|
|
113476
|
+
type: string;
|
|
113477
|
+
};
|
|
113478
|
+
resource_key: {
|
|
113479
|
+
description: string;
|
|
113480
|
+
type: string;
|
|
113481
|
+
};
|
|
113482
|
+
resource_label: {
|
|
113483
|
+
description: string;
|
|
113484
|
+
type: string;
|
|
113485
|
+
};
|
|
113486
|
+
};
|
|
113487
|
+
required: string[];
|
|
113488
|
+
type: string;
|
|
113489
|
+
};
|
|
113490
|
+
};
|
|
113491
|
+
required: string[];
|
|
113492
|
+
type: string;
|
|
113493
|
+
};
|
|
113494
|
+
};
|
|
113495
|
+
required: string[];
|
|
113496
|
+
type: string;
|
|
113497
|
+
};
|
|
113498
|
+
};
|
|
113499
|
+
};
|
|
113500
|
+
description: string;
|
|
113501
|
+
};
|
|
113502
|
+
400: {
|
|
113503
|
+
description: string;
|
|
113504
|
+
};
|
|
113505
|
+
401: {
|
|
113506
|
+
description: string;
|
|
113507
|
+
};
|
|
113508
|
+
};
|
|
113509
|
+
security: ({
|
|
113510
|
+
console_session_with_workspace: never[];
|
|
113511
|
+
client_session_with_customer?: never;
|
|
113512
|
+
} | {
|
|
113513
|
+
client_session_with_customer: never[];
|
|
113514
|
+
console_session_with_workspace?: never;
|
|
113515
|
+
})[];
|
|
113516
|
+
summary: string;
|
|
113517
|
+
tags: never[];
|
|
113518
|
+
'x-fern-sdk-group-name': string[];
|
|
113519
|
+
'x-fern-sdk-method-name': string;
|
|
113520
|
+
'x-fern-sdk-return-value': string;
|
|
113521
|
+
'x-response-key': string;
|
|
113522
|
+
'x-title': string;
|
|
113523
|
+
'x-undocumented': string;
|
|
113524
|
+
};
|
|
113525
|
+
post: {
|
|
113526
|
+
description: string;
|
|
113527
|
+
operationId: string;
|
|
113528
|
+
requestBody: {
|
|
113529
|
+
content: {
|
|
113530
|
+
'application/json': {
|
|
113531
|
+
schema: {
|
|
113532
|
+
properties: {};
|
|
113533
|
+
type: string;
|
|
113534
|
+
};
|
|
113535
|
+
};
|
|
113536
|
+
};
|
|
113537
|
+
};
|
|
113538
|
+
responses: {
|
|
113539
|
+
200: {
|
|
113540
|
+
content: {
|
|
113541
|
+
'application/json': {
|
|
113542
|
+
schema: {
|
|
113543
|
+
properties: {
|
|
113544
|
+
ok: {
|
|
113545
|
+
type: string;
|
|
113546
|
+
};
|
|
113547
|
+
vertical_resource_aliases: {
|
|
113548
|
+
properties: {
|
|
113549
|
+
access_grant: {
|
|
113550
|
+
description: string;
|
|
113551
|
+
properties: {
|
|
113552
|
+
collection_key: {
|
|
113553
|
+
description: string;
|
|
113554
|
+
type: string;
|
|
113555
|
+
};
|
|
113556
|
+
collection_label: {
|
|
113557
|
+
description: string;
|
|
113558
|
+
type: string;
|
|
113559
|
+
};
|
|
113560
|
+
resource_key: {
|
|
113561
|
+
description: string;
|
|
113562
|
+
type: string;
|
|
113563
|
+
};
|
|
113564
|
+
resource_label: {
|
|
113565
|
+
description: string;
|
|
113566
|
+
type: string;
|
|
113567
|
+
};
|
|
113568
|
+
};
|
|
113569
|
+
required: string[];
|
|
113570
|
+
type: string;
|
|
113571
|
+
};
|
|
113572
|
+
additional_spaces: {
|
|
113573
|
+
description: string;
|
|
113574
|
+
items: {
|
|
113575
|
+
properties: {
|
|
113576
|
+
collection_key: {
|
|
113577
|
+
description: string;
|
|
113578
|
+
type: string;
|
|
113579
|
+
};
|
|
113580
|
+
collection_label: {
|
|
113581
|
+
description: string;
|
|
113582
|
+
type: string;
|
|
113583
|
+
};
|
|
113584
|
+
resource_key: {
|
|
113585
|
+
description: string;
|
|
113586
|
+
type: string;
|
|
113587
|
+
};
|
|
113588
|
+
resource_label: {
|
|
113589
|
+
description: string;
|
|
113590
|
+
type: string;
|
|
113591
|
+
};
|
|
113592
|
+
};
|
|
113593
|
+
required: string[];
|
|
113594
|
+
type: string;
|
|
113595
|
+
};
|
|
113596
|
+
type: string;
|
|
113597
|
+
};
|
|
113598
|
+
space: {
|
|
113599
|
+
description: string;
|
|
113600
|
+
properties: {
|
|
113601
|
+
collection_key: {
|
|
113602
|
+
description: string;
|
|
113603
|
+
type: string;
|
|
113604
|
+
};
|
|
113605
|
+
collection_label: {
|
|
113606
|
+
description: string;
|
|
113607
|
+
type: string;
|
|
113608
|
+
};
|
|
113609
|
+
resource_key: {
|
|
113610
|
+
description: string;
|
|
113611
|
+
type: string;
|
|
113612
|
+
};
|
|
113613
|
+
resource_label: {
|
|
113614
|
+
description: string;
|
|
113615
|
+
type: string;
|
|
113616
|
+
};
|
|
113617
|
+
};
|
|
113618
|
+
required: string[];
|
|
113619
|
+
type: string;
|
|
113620
|
+
};
|
|
113621
|
+
user_identity: {
|
|
113622
|
+
description: string;
|
|
113623
|
+
properties: {
|
|
113624
|
+
collection_key: {
|
|
113625
|
+
description: string;
|
|
113626
|
+
type: string;
|
|
113627
|
+
};
|
|
113628
|
+
collection_label: {
|
|
113629
|
+
description: string;
|
|
113630
|
+
type: string;
|
|
113631
|
+
};
|
|
113632
|
+
resource_key: {
|
|
113633
|
+
description: string;
|
|
113634
|
+
type: string;
|
|
113635
|
+
};
|
|
113636
|
+
resource_label: {
|
|
113637
|
+
description: string;
|
|
113638
|
+
type: string;
|
|
113639
|
+
};
|
|
113640
|
+
};
|
|
113641
|
+
required: string[];
|
|
113642
|
+
type: string;
|
|
113643
|
+
};
|
|
113644
|
+
};
|
|
113645
|
+
required: string[];
|
|
113646
|
+
type: string;
|
|
113647
|
+
};
|
|
113648
|
+
};
|
|
113649
|
+
required: string[];
|
|
113650
|
+
type: string;
|
|
113651
|
+
};
|
|
113652
|
+
};
|
|
113653
|
+
};
|
|
113654
|
+
description: string;
|
|
113655
|
+
};
|
|
113656
|
+
400: {
|
|
113657
|
+
description: string;
|
|
113658
|
+
};
|
|
113659
|
+
401: {
|
|
113660
|
+
description: string;
|
|
113661
|
+
};
|
|
113662
|
+
};
|
|
113663
|
+
security: ({
|
|
113664
|
+
console_session_with_workspace: never[];
|
|
113665
|
+
client_session_with_customer?: never;
|
|
113666
|
+
} | {
|
|
113667
|
+
client_session_with_customer: never[];
|
|
113668
|
+
console_session_with_workspace?: never;
|
|
113669
|
+
})[];
|
|
113670
|
+
summary: string;
|
|
113671
|
+
tags: never[];
|
|
113672
|
+
'x-fern-sdk-group-name': string[];
|
|
113673
|
+
'x-fern-sdk-method-name': string;
|
|
113674
|
+
'x-fern-sdk-return-value': string;
|
|
113675
|
+
'x-response-key': string;
|
|
113676
|
+
'x-title': string;
|
|
113677
|
+
'x-undocumented': string;
|
|
113678
|
+
};
|
|
113679
|
+
};
|
|
113272
113680
|
'/seam/customer/v1/spaces/create': {
|
|
113273
113681
|
post: {
|
|
113274
113682
|
description: string;
|
|
@@ -187553,7 +187961,7 @@ type Routes = {
|
|
|
187553
187961
|
resource_key: string;
|
|
187554
187962
|
} | undefined;
|
|
187555
187963
|
/** Business vertical of the customer portal. */
|
|
187556
|
-
business_vertical?: ('short_term_rental' | 'hospitality' | 'multi_family' | 'gym_management' | 'property_tours') | undefined;
|
|
187964
|
+
business_vertical?: ('neutral' | 'short_term_rental' | 'hospitality' | 'multi_family' | 'gym_management' | 'property_tours') | undefined;
|
|
187557
187965
|
};
|
|
187558
187966
|
};
|
|
187559
187967
|
maxDuration: undefined;
|
|
@@ -187670,6 +188078,18 @@ type Routes = {
|
|
|
187670
188078
|
};
|
|
187671
188079
|
maxDuration: undefined;
|
|
187672
188080
|
};
|
|
188081
|
+
'/seam/customer/v1/settings/business_verticals/list': {
|
|
188082
|
+
route: '/seam/customer/v1/settings/business_verticals/list';
|
|
188083
|
+
method: 'GET' | 'POST';
|
|
188084
|
+
queryParams: {};
|
|
188085
|
+
jsonBody: {};
|
|
188086
|
+
commonParams: {};
|
|
188087
|
+
formData: {};
|
|
188088
|
+
jsonResponse: {
|
|
188089
|
+
business_verticals: ('neutral' | 'short_term_rental' | 'hospitality' | 'multi_family' | 'gym_management' | 'property_tours')[];
|
|
188090
|
+
};
|
|
188091
|
+
maxDuration: undefined;
|
|
188092
|
+
};
|
|
187673
188093
|
'/seam/customer/v1/settings/get': {
|
|
187674
188094
|
route: '/seam/customer/v1/settings/get';
|
|
187675
188095
|
method: 'GET' | 'POST';
|
|
@@ -187679,7 +188099,7 @@ type Routes = {
|
|
|
187679
188099
|
formData: {};
|
|
187680
188100
|
jsonResponse: {
|
|
187681
188101
|
/** Business vertical of the customer portal. */
|
|
187682
|
-
business_vertical?: ('short_term_rental' | 'hospitality' | 'multi_family' | 'gym_management' | 'property_tours') | undefined;
|
|
188102
|
+
business_vertical?: ('neutral' | 'short_term_rental' | 'hospitality' | 'multi_family' | 'gym_management' | 'property_tours') | undefined;
|
|
187683
188103
|
slug?: (string | null) | undefined;
|
|
187684
188104
|
};
|
|
187685
188105
|
maxDuration: undefined;
|
|
@@ -187690,7 +188110,7 @@ type Routes = {
|
|
|
187690
188110
|
queryParams: {};
|
|
187691
188111
|
jsonBody: {
|
|
187692
188112
|
/** Business vertical to set on the workspace. */
|
|
187693
|
-
business_vertical?: ('short_term_rental' | 'hospitality' | 'multi_family' | 'gym_management' | 'property_tours') | undefined;
|
|
188113
|
+
business_vertical?: ('neutral' | 'short_term_rental' | 'hospitality' | 'multi_family' | 'gym_management' | 'property_tours') | undefined;
|
|
187694
188114
|
/** Slug to set on the workspace. */
|
|
187695
188115
|
slug?: (string | null) | undefined;
|
|
187696
188116
|
};
|
|
@@ -187699,6 +188119,63 @@ type Routes = {
|
|
|
187699
188119
|
jsonResponse: {};
|
|
187700
188120
|
maxDuration: undefined;
|
|
187701
188121
|
};
|
|
188122
|
+
'/seam/customer/v1/settings/vertical_resource_aliases/get': {
|
|
188123
|
+
route: '/seam/customer/v1/settings/vertical_resource_aliases/get';
|
|
188124
|
+
method: 'GET' | 'POST';
|
|
188125
|
+
queryParams: {};
|
|
188126
|
+
jsonBody: {};
|
|
188127
|
+
commonParams: {};
|
|
188128
|
+
formData: {};
|
|
188129
|
+
jsonResponse: {
|
|
188130
|
+
vertical_resource_aliases: {
|
|
188131
|
+
/** Primary space alias for this vertical. */
|
|
188132
|
+
space: {
|
|
188133
|
+
/** The key alias for a single resource. */
|
|
188134
|
+
resource_key: string;
|
|
188135
|
+
/** Human-readable label for a single resource. */
|
|
188136
|
+
resource_label: string;
|
|
188137
|
+
/** The key alias for a collection of resources. */
|
|
188138
|
+
collection_key: string;
|
|
188139
|
+
/** Human-readable label for a collection of resources. */
|
|
188140
|
+
collection_label: string;
|
|
188141
|
+
};
|
|
188142
|
+
/** Additional space aliases relevant to this vertical. */
|
|
188143
|
+
additional_spaces: {
|
|
188144
|
+
/** The key alias for a single resource. */
|
|
188145
|
+
resource_key: string;
|
|
188146
|
+
/** Human-readable label for a single resource. */
|
|
188147
|
+
resource_label: string;
|
|
188148
|
+
/** The key alias for a collection of resources. */
|
|
188149
|
+
collection_key: string;
|
|
188150
|
+
/** Human-readable label for a collection of resources. */
|
|
188151
|
+
collection_label: string;
|
|
188152
|
+
}[];
|
|
188153
|
+
/** Primary user identity alias for this vertical. */
|
|
188154
|
+
user_identity: {
|
|
188155
|
+
/** The key alias for a single resource. */
|
|
188156
|
+
resource_key: string;
|
|
188157
|
+
/** Human-readable label for a single resource. */
|
|
188158
|
+
resource_label: string;
|
|
188159
|
+
/** The key alias for a collection of resources. */
|
|
188160
|
+
collection_key: string;
|
|
188161
|
+
/** Human-readable label for a collection of resources. */
|
|
188162
|
+
collection_label: string;
|
|
188163
|
+
};
|
|
188164
|
+
/** Primary access grant alias for this vertical. */
|
|
188165
|
+
access_grant: {
|
|
188166
|
+
/** The key alias for a single resource. */
|
|
188167
|
+
resource_key: string;
|
|
188168
|
+
/** Human-readable label for a single resource. */
|
|
188169
|
+
resource_label: string;
|
|
188170
|
+
/** The key alias for a collection of resources. */
|
|
188171
|
+
collection_key: string;
|
|
188172
|
+
/** Human-readable label for a collection of resources. */
|
|
188173
|
+
collection_label: string;
|
|
188174
|
+
};
|
|
188175
|
+
};
|
|
188176
|
+
};
|
|
188177
|
+
maxDuration: undefined;
|
|
188178
|
+
};
|
|
187702
188179
|
'/seam/customer/v1/spaces/create': {
|
|
187703
188180
|
route: '/seam/customer/v1/spaces/create';
|
|
187704
188181
|
method: 'POST';
|