@dodayslabs/ts-sdk 0.5.0 → 0.6.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.
|
@@ -20,7 +20,7 @@ export interface PostBookingRequestEmergency {
|
|
|
20
20
|
* @type {string}
|
|
21
21
|
* @memberof PostBookingRequestEmergency
|
|
22
22
|
*/
|
|
23
|
-
|
|
23
|
+
name?: string;
|
|
24
24
|
/**
|
|
25
25
|
*
|
|
26
26
|
* @type {string}
|
|
@@ -28,25 +28,6 @@ export interface PostBookingRequestEmergency {
|
|
|
28
28
|
*/
|
|
29
29
|
telephone?: string;
|
|
30
30
|
}
|
|
31
|
-
/**
|
|
32
|
-
* @export
|
|
33
|
-
*/
|
|
34
|
-
export declare const PostBookingRequestEmergencyTypeEnum: {
|
|
35
|
-
readonly Friend: "friend";
|
|
36
|
-
readonly WordOfMouth: "wordOfMouth";
|
|
37
|
-
readonly SearchEngine: "searchEngine";
|
|
38
|
-
readonly Facebook: "facebook";
|
|
39
|
-
readonly Twitter: "twitter";
|
|
40
|
-
readonly Instagram: "instagram";
|
|
41
|
-
readonly ClubHub: "clubHub";
|
|
42
|
-
readonly WhatsOn4Kids: "whatsOn4Kids";
|
|
43
|
-
readonly Netmums: "netmums";
|
|
44
|
-
readonly Leaflet: "leaflet";
|
|
45
|
-
readonly TvRadio: "tvRadio";
|
|
46
|
-
readonly Event: "event";
|
|
47
|
-
readonly Other: "other";
|
|
48
|
-
};
|
|
49
|
-
export type PostBookingRequestEmergencyTypeEnum = typeof PostBookingRequestEmergencyTypeEnum[keyof typeof PostBookingRequestEmergencyTypeEnum];
|
|
50
31
|
/**
|
|
51
32
|
* Check if a given object implements the PostBookingRequestEmergency interface.
|
|
52
33
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"PostBookingRequestEmergency.d.ts","sourceRoot":"","sources":["../../src/models/PostBookingRequestEmergency.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAGH;;;;GAIG;AACH,MAAM,WAAW,2BAA2B;IACxC;;;;OAIG;IACH,IAAI,CAAC,EAAE,
|
|
1
|
+
{"version":3,"file":"PostBookingRequestEmergency.d.ts","sourceRoot":"","sources":["../../src/models/PostBookingRequestEmergency.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAGH;;;;GAIG;AACH,MAAM,WAAW,2BAA2B;IACxC;;;;OAIG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IACd;;;;OAIG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;CACtB;AAED;;GAEG;AACH,wBAAgB,qCAAqC,CAAC,KAAK,EAAE,MAAM,GAAG,KAAK,IAAI,2BAA2B,CAEzG;AAED,wBAAgB,mCAAmC,CAAC,IAAI,EAAE,GAAG,GAAG,2BAA2B,CAE1F;AAED,wBAAgB,wCAAwC,CAAC,IAAI,EAAE,GAAG,EAAE,mBAAmB,EAAE,OAAO,GAAG,2BAA2B,CAS7H;AAED,wBAAgB,iCAAiC,CAAC,IAAI,EAAE,GAAG,GAAG,2BAA2B,CAExF;AAED,wBAAgB,sCAAsC,CAAC,KAAK,CAAC,EAAE,2BAA2B,GAAG,IAAI,EAAE,mBAAmB,GAAE,OAAe,GAAG,GAAG,CAU5I"}
|
|
@@ -11,24 +11,6 @@
|
|
|
11
11
|
* https://openapi-generator.tech
|
|
12
12
|
* Do not edit the class manually.
|
|
13
13
|
*/
|
|
14
|
-
/**
|
|
15
|
-
* @export
|
|
16
|
-
*/
|
|
17
|
-
export const PostBookingRequestEmergencyTypeEnum = {
|
|
18
|
-
Friend: 'friend',
|
|
19
|
-
WordOfMouth: 'wordOfMouth',
|
|
20
|
-
SearchEngine: 'searchEngine',
|
|
21
|
-
Facebook: 'facebook',
|
|
22
|
-
Twitter: 'twitter',
|
|
23
|
-
Instagram: 'instagram',
|
|
24
|
-
ClubHub: 'clubHub',
|
|
25
|
-
WhatsOn4Kids: 'whatsOn4Kids',
|
|
26
|
-
Netmums: 'netmums',
|
|
27
|
-
Leaflet: 'leaflet',
|
|
28
|
-
TvRadio: 'tvRadio',
|
|
29
|
-
Event: 'event',
|
|
30
|
-
Other: 'other'
|
|
31
|
-
};
|
|
32
14
|
/**
|
|
33
15
|
* Check if a given object implements the PostBookingRequestEmergency interface.
|
|
34
16
|
*/
|
|
@@ -43,7 +25,7 @@ export function PostBookingRequestEmergencyFromJSONTyped(json, ignoreDiscriminat
|
|
|
43
25
|
return json;
|
|
44
26
|
}
|
|
45
27
|
return {
|
|
46
|
-
'
|
|
28
|
+
'name': json['name'] == null ? undefined : json['name'],
|
|
47
29
|
'telephone': json['telephone'] == null ? undefined : json['telephone'],
|
|
48
30
|
};
|
|
49
31
|
}
|
|
@@ -55,7 +37,7 @@ export function PostBookingRequestEmergencyToJSONTyped(value, ignoreDiscriminato
|
|
|
55
37
|
return value;
|
|
56
38
|
}
|
|
57
39
|
return {
|
|
58
|
-
'
|
|
40
|
+
'name': value['name'],
|
|
59
41
|
'telephone': value['telephone'],
|
|
60
42
|
};
|
|
61
43
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"PostBookingRequestEmergency.js","sourceRoot":"","sources":["../../src/models/PostBookingRequestEmergency.ts"],"names":[],"mappings":"AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG;
|
|
1
|
+
{"version":3,"file":"PostBookingRequestEmergency.js","sourceRoot":"","sources":["../../src/models/PostBookingRequestEmergency.ts"],"names":[],"mappings":"AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG;AAuBH;;GAEG;AACH,MAAM,UAAU,qCAAqC,CAAC,KAAa;IAC/D,OAAO,IAAI,CAAC;AAChB,CAAC;AAED,MAAM,UAAU,mCAAmC,CAAC,IAAS;IACzD,OAAO,wCAAwC,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;AACjE,CAAC;AAED,MAAM,UAAU,wCAAwC,CAAC,IAAS,EAAE,mBAA4B;IAC5F,IAAI,IAAI,IAAI,IAAI,EAAE,CAAC;QACf,OAAO,IAAI,CAAC;IAChB,CAAC;IACD,OAAO;QAEH,MAAM,EAAE,IAAI,CAAC,MAAM,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC;QACvD,WAAW,EAAE,IAAI,CAAC,WAAW,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC;KACzE,CAAC;AACN,CAAC;AAED,MAAM,UAAU,iCAAiC,CAAC,IAAS;IACvD,OAAO,sCAAsC,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;AAC/D,CAAC;AAED,MAAM,UAAU,sCAAsC,CAAC,KAA0C,EAAE,sBAA+B,KAAK;IACnI,IAAI,KAAK,IAAI,IAAI,EAAE,CAAC;QAChB,OAAO,KAAK,CAAC;IACjB,CAAC;IAED,OAAO;QAEH,MAAM,EAAE,KAAK,CAAC,MAAM,CAAC;QACrB,WAAW,EAAE,KAAK,CAAC,WAAW,CAAC;KAClC,CAAC;AACN,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dodayslabs/ts-sdk",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.6.0",
|
|
4
4
|
"license": "See LICENSE",
|
|
5
5
|
"author": "Sam Bindoff",
|
|
6
6
|
"description": "Official DoDays TypeScript SDK",
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"typescript"
|
|
12
12
|
],
|
|
13
13
|
"devDependencies": {
|
|
14
|
-
"@openapitools/openapi-generator-cli": "^2.
|
|
14
|
+
"@openapitools/openapi-generator-cli": "^2.30.2",
|
|
15
15
|
"typescript": "^5.9.3"
|
|
16
16
|
},
|
|
17
17
|
"scripts": {
|