@gooday_corp/gooday-api-client 1.3.14 → 1.3.15

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.
Files changed (2) hide show
  1. package/api.ts +96 -0
  2. package/package.json +1 -1
package/api.ts CHANGED
@@ -424,6 +424,30 @@ export interface BlockoutEntity {
424
424
  * @memberof BlockoutEntity
425
425
  */
426
426
  'pattern'?: string;
427
+ /**
428
+ *
429
+ * @type {string}
430
+ * @memberof BlockoutEntity
431
+ */
432
+ 'byDay'?: string;
433
+ /**
434
+ *
435
+ * @type {string}
436
+ * @memberof BlockoutEntity
437
+ */
438
+ 'byMonthDay'?: string;
439
+ /**
440
+ *
441
+ * @type {string}
442
+ * @memberof BlockoutEntity
443
+ */
444
+ 'byMonth'?: string;
445
+ /**
446
+ *
447
+ * @type {string}
448
+ * @memberof BlockoutEntity
449
+ */
450
+ 'repeatBy'?: string;
427
451
  /**
428
452
  * Event id
429
453
  * @type {string}
@@ -514,6 +538,12 @@ export interface BlockoutPayloadDTO {
514
538
  * @memberof BlockoutPayloadDTO
515
539
  */
516
540
  'byMonth'?: string;
541
+ /**
542
+ *
543
+ * @type {string}
544
+ * @memberof BlockoutPayloadDTO
545
+ */
546
+ 'repeatBy'?: string;
517
547
  /**
518
548
  * Name of block
519
549
  * @type {string}
@@ -3105,6 +3135,12 @@ export interface CreateEventPayloadDTO {
3105
3135
  * @memberof CreateEventPayloadDTO
3106
3136
  */
3107
3137
  'byMonth'?: string;
3138
+ /**
3139
+ *
3140
+ * @type {string}
3141
+ * @memberof CreateEventPayloadDTO
3142
+ */
3143
+ 'repeatBy'?: string;
3108
3144
  /**
3109
3145
  * The unique identifier of the customer
3110
3146
  * @type {string}
@@ -5455,6 +5491,30 @@ export interface PrepaidServiceEntity {
5455
5491
  * @memberof PrepaidServiceEntity
5456
5492
  */
5457
5493
  'pattern'?: string;
5494
+ /**
5495
+ *
5496
+ * @type {string}
5497
+ * @memberof PrepaidServiceEntity
5498
+ */
5499
+ 'byDay'?: string;
5500
+ /**
5501
+ *
5502
+ * @type {string}
5503
+ * @memberof PrepaidServiceEntity
5504
+ */
5505
+ 'byMonthDay'?: string;
5506
+ /**
5507
+ *
5508
+ * @type {string}
5509
+ * @memberof PrepaidServiceEntity
5510
+ */
5511
+ 'byMonth'?: string;
5512
+ /**
5513
+ *
5514
+ * @type {string}
5515
+ * @memberof PrepaidServiceEntity
5516
+ */
5517
+ 'repeatBy'?: string;
5458
5518
  /**
5459
5519
  * Tag id
5460
5520
  * @type {string}
@@ -5672,6 +5732,12 @@ export interface PrepaidServicePayloadDTO {
5672
5732
  * @memberof PrepaidServicePayloadDTO
5673
5733
  */
5674
5734
  'byMonth'?: string;
5735
+ /**
5736
+ *
5737
+ * @type {string}
5738
+ * @memberof PrepaidServicePayloadDTO
5739
+ */
5740
+ 'repeatBy'?: string;
5675
5741
  /**
5676
5742
  * Service name
5677
5743
  * @type {string}
@@ -7770,6 +7836,30 @@ export interface WhatsOnEntity {
7770
7836
  * @memberof WhatsOnEntity
7771
7837
  */
7772
7838
  'pattern'?: string;
7839
+ /**
7840
+ *
7841
+ * @type {string}
7842
+ * @memberof WhatsOnEntity
7843
+ */
7844
+ 'byDay'?: string;
7845
+ /**
7846
+ *
7847
+ * @type {string}
7848
+ * @memberof WhatsOnEntity
7849
+ */
7850
+ 'byMonthDay'?: string;
7851
+ /**
7852
+ *
7853
+ * @type {string}
7854
+ * @memberof WhatsOnEntity
7855
+ */
7856
+ 'byMonth'?: string;
7857
+ /**
7858
+ *
7859
+ * @type {string}
7860
+ * @memberof WhatsOnEntity
7861
+ */
7862
+ 'repeatBy'?: string;
7773
7863
  /**
7774
7864
  * Event id
7775
7865
  * @type {string}
@@ -8140,6 +8230,12 @@ export interface WhatsOnPayloadDTO {
8140
8230
  * @memberof WhatsOnPayloadDTO
8141
8231
  */
8142
8232
  'byMonth'?: string;
8233
+ /**
8234
+ *
8235
+ * @type {string}
8236
+ * @memberof WhatsOnPayloadDTO
8237
+ */
8238
+ 'repeatBy'?: string;
8143
8239
  /**
8144
8240
  * Event name
8145
8241
  * @type {string}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gooday_corp/gooday-api-client",
3
- "version": "1.3.14",
3
+ "version": "1.3.15",
4
4
  "description": "API client for Gooday",
5
5
  "main": "index.ts",
6
6
  "scripts": {},