@ogcio/building-blocks-sdk 0.2.95 → 0.2.96
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/.azure/pipeline.yaml +1 -2
- package/.gitleaksignore +6 -6
- package/.release-please-manifest.json +1 -1
- package/CHANGELOG.md +8 -0
- package/dist/client/clients/journey/index.d.ts +8 -0
- package/dist/client/clients/journey/index.d.ts.map +1 -1
- package/dist/client/clients/journey/schema.d.ts +4 -0
- package/dist/client/clients/journey/schema.d.ts.map +1 -1
- package/dist/client/clients/payments/index.d.ts +2 -2
- package/dist/client/clients/payments/index.d.ts.map +1 -1
- package/dist/client/clients/payments/schema.d.ts +13 -5
- package/dist/client/clients/payments/schema.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/client/clients/journey/open-api-definition.json +32 -0
- package/src/client/clients/journey/schema.ts +4 -0
- package/src/client/clients/payments/schema.ts +13 -5
|
@@ -8047,6 +8047,22 @@
|
|
|
8047
8047
|
"name": "from",
|
|
8048
8048
|
"required": false
|
|
8049
8049
|
},
|
|
8050
|
+
{
|
|
8051
|
+
"schema": {
|
|
8052
|
+
"type": "string"
|
|
8053
|
+
},
|
|
8054
|
+
"in": "query",
|
|
8055
|
+
"name": "submissionFrom",
|
|
8056
|
+
"required": false
|
|
8057
|
+
},
|
|
8058
|
+
{
|
|
8059
|
+
"schema": {
|
|
8060
|
+
"type": "string"
|
|
8061
|
+
},
|
|
8062
|
+
"in": "query",
|
|
8063
|
+
"name": "submissionTo",
|
|
8064
|
+
"required": false
|
|
8065
|
+
},
|
|
8050
8066
|
{
|
|
8051
8067
|
"schema": {
|
|
8052
8068
|
"anyOf": [
|
|
@@ -8447,6 +8463,22 @@
|
|
|
8447
8463
|
"name": "from",
|
|
8448
8464
|
"required": false
|
|
8449
8465
|
},
|
|
8466
|
+
{
|
|
8467
|
+
"schema": {
|
|
8468
|
+
"type": "string"
|
|
8469
|
+
},
|
|
8470
|
+
"in": "query",
|
|
8471
|
+
"name": "submissionFrom",
|
|
8472
|
+
"required": false
|
|
8473
|
+
},
|
|
8474
|
+
{
|
|
8475
|
+
"schema": {
|
|
8476
|
+
"type": "string"
|
|
8477
|
+
},
|
|
8478
|
+
"in": "query",
|
|
8479
|
+
"name": "submissionTo",
|
|
8480
|
+
"required": false
|
|
8481
|
+
},
|
|
8450
8482
|
{
|
|
8451
8483
|
"schema": {
|
|
8452
8484
|
"anyOf": [
|
|
@@ -3024,6 +3024,8 @@ export interface operations {
|
|
|
3024
3024
|
search?: string;
|
|
3025
3025
|
to?: string;
|
|
3026
3026
|
from?: string;
|
|
3027
|
+
submissionFrom?: string;
|
|
3028
|
+
submissionTo?: string;
|
|
3027
3029
|
tags?: string[] | string;
|
|
3028
3030
|
};
|
|
3029
3031
|
header?: never;
|
|
@@ -3125,6 +3127,8 @@ export interface operations {
|
|
|
3125
3127
|
search?: string;
|
|
3126
3128
|
to?: string;
|
|
3127
3129
|
from?: string;
|
|
3130
|
+
submissionFrom?: string;
|
|
3131
|
+
submissionTo?: string;
|
|
3128
3132
|
tags?: string[] | string;
|
|
3129
3133
|
};
|
|
3130
3134
|
header?: never;
|
|
@@ -1507,7 +1507,12 @@ export interface operations {
|
|
|
1507
1507
|
redirectUrl: string | null;
|
|
1508
1508
|
allowAmountOverride: boolean;
|
|
1509
1509
|
allowCustomAmount: boolean;
|
|
1510
|
-
|
|
1510
|
+
/**
|
|
1511
|
+
* @default [
|
|
1512
|
+
* "email_otp"
|
|
1513
|
+
* ]
|
|
1514
|
+
*/
|
|
1515
|
+
allowedAuthMethods?: ("email_otp" | "social:mygovid")[];
|
|
1511
1516
|
providers: string[];
|
|
1512
1517
|
status: "active" | "inactive" | "draft";
|
|
1513
1518
|
};
|
|
@@ -1910,7 +1915,10 @@ export interface operations {
|
|
|
1910
1915
|
* "status": "active",
|
|
1911
1916
|
* "redirectUrl": "https://example.com/payment-success",
|
|
1912
1917
|
* "allowAmountOverride": false,
|
|
1913
|
-
* "allowCustomAmount": false
|
|
1918
|
+
* "allowCustomAmount": false,
|
|
1919
|
+
* "allowedAuthMethods": [
|
|
1920
|
+
* "email_otp"
|
|
1921
|
+
* ]
|
|
1914
1922
|
* }
|
|
1915
1923
|
*/
|
|
1916
1924
|
data: {
|
|
@@ -2973,6 +2981,7 @@ export interface operations {
|
|
|
2973
2981
|
"application/json": {
|
|
2974
2982
|
examples?: Record<string, never>[];
|
|
2975
2983
|
type?: string;
|
|
2984
|
+
required?: string[];
|
|
2976
2985
|
properties?: {
|
|
2977
2986
|
userId?: {
|
|
2978
2987
|
type?: string;
|
|
@@ -2985,6 +2994,7 @@ export interface operations {
|
|
|
2985
2994
|
};
|
|
2986
2995
|
paymentRequestTitle?: {
|
|
2987
2996
|
type?: string;
|
|
2997
|
+
required?: string[];
|
|
2988
2998
|
properties?: {
|
|
2989
2999
|
en?: {
|
|
2990
3000
|
type?: string;
|
|
@@ -2993,7 +3003,6 @@ export interface operations {
|
|
|
2993
3003
|
type?: string;
|
|
2994
3004
|
};
|
|
2995
3005
|
};
|
|
2996
|
-
required?: string[];
|
|
2997
3006
|
};
|
|
2998
3007
|
amount?: {
|
|
2999
3008
|
minimum?: number;
|
|
@@ -3025,7 +3034,6 @@ export interface operations {
|
|
|
3025
3034
|
type?: string;
|
|
3026
3035
|
};
|
|
3027
3036
|
};
|
|
3028
|
-
required?: string[];
|
|
3029
3037
|
};
|
|
3030
3038
|
};
|
|
3031
3039
|
};
|
|
@@ -4034,7 +4042,7 @@ export interface operations {
|
|
|
4034
4042
|
path?: never;
|
|
4035
4043
|
cookie?: never;
|
|
4036
4044
|
};
|
|
4037
|
-
requestBody
|
|
4045
|
+
requestBody: {
|
|
4038
4046
|
content: {
|
|
4039
4047
|
"application/json": Record<string, never>;
|
|
4040
4048
|
};
|